-
-
Save danielpereirabp/3299878d4b467866e98a to your computer and use it in GitHub Desktop.
Create a Swap File
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
sudo dpkg-reconfigure tzdata | |
sudo apt-get update | |
sudo apt-get install ntp | |
free | |
sudo fallocate -l 4G /swapfile | |
sudo chmod 600 /swapfile | |
sudo mkswap /swapfile | |
sudo swapon /swapfile | |
sudo sh -c 'echo "/swapfile none swap sw 0 0" >> /etc/fstab' | |
free | |
sudo npm install -g npm | |
sudo npm install -g bower | |
sudo npm install -g gulp | |
npm cache clean | |
npm install | |
sudo apt-get install libnotify-bin | |
bower install | |
gulp --production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment