minus-squareTimeNaan@lemmy.worldtolinuxmemes@lemmy.world•Just installed mint yesterday, I get it nowlinkfedilinkarrow-up11·1 day 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. linkfedilink
minus-squareTimeNaan@lemmy.worldtoSelfhosted@lemmy.world•Ideas for Hosting on a 2009 Netbook?linkfedilinkEnglisharrow-up2·16 days agoIs that an issue when using Borg for backups? Doesn’t it checksum everything at each operation? linkfedilink
minus-squareTimeNaan@lemmy.worldtoSelfhosted@lemmy.world•Ideas for Hosting on a 2009 Netbook?linkfedilinkEnglisharrow-up11·16 days agoBackup server linkfedilink
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.