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
#!/bin/bash | |
# Or add `vm.overcommit_memory=1` in `/etc/sysctl.conf` and call `sudo sysctl -p` | |
sudo sysctl vm.overcommit_memory=1 | |
# Or add `echo never > /sys/kernel/mm/transparent_hugepage/enabled` in `/etc/rc.local` | |
sudo echo never > /sys/kernel/mm/transparent_hugepage/enabled |
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
#!/bin/bash | |
umount /media/cdrom | |
mount -o exec /media/cdrom | |
cd /media/cdrom | |
./install | |
shutdown now |
NewerOlder