FilthyShrooms@lemmy.world to linuxmemes@lemmy.world · 19 hours agoJust installed mint yesterday, I get it nowlemmy.worldimagemessage-square93fedilinkarrow-up1703arrow-down119file-text
arrow-up1684arrow-down1imageJust installed mint yesterday, I get it nowlemmy.worldFilthyShrooms@lemmy.world to linuxmemes@lemmy.world · 19 hours agomessage-square93fedilinkfile-text
I thought it’d be a pain but installing programs through the terminal is actually so nice, I never would have expected it
minus-squareTimeNaan@lemmy.worldlinkfedilinkarrow-up5·7 hours agoWith .tar.gz software usually the steps are: Extract the archive Find a file with the .sh extention - that’s the shell script. It will most likely be named something like install.sh Make it executable - by right clicking and enabling it in the properties or by opening a terminal in this folder and using a command: chmod +x install.sh Run the installer in the terminal: ./install.sh It might ask you to run it as root and quit. In that case put a sudo before the command above and it will ask you for your password sudo ./install.sh And tbat’s it, installation should begin. Follow the instructions in your terminal.
With .tar.gz software usually the steps are:
chmod +x install.sh
It might ask you to run it as root and quit. In that case put a sudo before the command above and it will ask you for your password
sudo ./install.sh
And tbat’s it, installation should begin. Follow the instructions in your terminal.