Last active
August 14, 2020 19:04
-
-
Save alex-oliveira/937c6e87f0050970321f8dae3ccd54f1 to your computer and use it in GitHub Desktop.
slax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt update | |
fdisk /dev/sda | |
p | |
n | |
p | |
- | |
- | |
- | |
p | |
a | |
p | |
w | |
mkfs.ext4 /dev/sda1 | |
mkdir /mnt/myslax | |
mount /dev/sda1 /mnt/myslax | |
cp -R -p -v /media/sr0/slax /mnt/myslax | |
cd /mnt/myslax/slax/boot | |
./bootinst.sh | |
shutdown -h now | |
FONTE: https://www.youtube.com/watch?v=Vec6EIXEs0A |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://itsfoss.com/free-up-space-ubuntu-linux/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt update | |
apt install default-jre | |
java -version | |
apt install default-jdk | |
javac -version | |
apt install google-chrome-stable | |
FONTE: ttps://www.digitalocean.com/community/tutorials/como-instalar-o-java-com-apt-no-ubuntu-18-04-pt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment