B4J Question Need link for B4JPackager11.jar

warayTek

Member
Licensed User
Hi, I'm trying to build an app and I need to have the B4JPackager11.jar as a requirement to distribute it in linux.

Thanks in advance.
 

MarcoRome

Expert
Licensed User
Longtime User
See
 
Upvote 0

warayTek

Member
Licensed User
Hi, I'm still new to linux.
I have done so far:
1. Copy the build folder to /home/usr
2. Create nameprogram.desktop in the /home/usr (paralllels)
3. Create install_trading.sh in the /home/usr (parallels)

I attempt to execute the commands for testing in the terminal...but I have the following error.
I just follow the names of the folders and I will change it later.

B4X:
parallels@parallels-Parallels-Virtual-Platform:~$ zip app_devil_trading.zip nameprogram.desktop
updating: nameprogram.desktop (deflated 24%)
parallels@parallels-Parallels-Virtual-Platform:~$ cp install_trading.sh Software_DevilApp
cp: cannot stat 'install_trading.sh': No such file or directory
parallels@parallels-Parallels-Virtual-Platform:~$ ^C
install_trading.sh file
B4X:
#Install
echo "To install, enter the password"
sudo mkdir /parallels/TESTLINUX2
sudo unzip -o app_devil_trading.zip /parallels/TESTLINUX2
unzip -o app_devil_trading.zip "nameprogram.desktop" -d $HOME/parallels nameprogram.desktop
clear
#Delete install files
echo "Installation complete"
echo "1. Select the testlinux_trading_desktop file and click right mouse"
echo "2. Select Allow execution"
echo "Good job"
echo "We remain at your disposal"
echo "Email: @"
read text
cd ..
rm -r Software_DevilApp
 
Last edited:
Upvote 0
Top