So, I have a device running stripped down Ubuntu and I wanna get tic80 on it, I have a copy on a flash drive but idk how to install it. The machine is pretty much CLI only
Barzaria ( @Barzaria@lemmy.dbzer0.com ) English9•11 months agoHey man, we’re living parallel lives. I literally just did this yesterday. The command you’re looking for is gdebi. Try gdebi (name of the package’s file, uncompressed to a .deb) if you downloaded the .Deb from the website. tic80 will now be a usable command. To uninstall the tic80 command / program you can use apt uninstall tic80. It worked with and without sudo.
nezach ( @nezach@discuss.tchncs.de ) 5•11 months agoDid you try
sudo dpkg -i path/to/tic80-v1.1-linux.deb
Will try, once I find the filepath
Yuki ( @Yuki@kutsuya.dev ) 3•11 months agoIf the device has network access, then you can just wget it and install it.
Its not on apt, I tried that
Successful_Try543 ( @Successful_Try543@feddit.de ) 3•11 months agoSo, as I understand you, you’ve got a copy of
tic80-v1.1-linux.deb
on a USB stick and want to install this.After you’ve mounted the USB-drive,
cd
to the directory where the downloaded deb-package is located. Then runsudo dpkg -i tic80-v1.1-linux.deb sudo apt -f install
to install the package and missing dependencies.