ubuntu Update Firefox on Ubuntu There is an easy way to update Firefox and there is a little bit more complex way to do it. We'll cover both of them. Easy way to update Firefox sudo apt-get update sudo apt-get install firefox And voila! You are done. Easy, wasn't it? If it wasn't that and
database Migrating Database from Heroku to Ubuntu You created your own server, and now you would like to move all of your apps on Heroku to your custom server, right? If so, the first thing to do is to move your database from Heroku to a new server. Here are the steps that explain how to do
ubuntu Server Firewall Configuration There are two ways in which you can think about server firewall security. The easy way or the hard way. The easy way would be to start thinking before something bad has happened to your server. We are sure that you can figure it out on your own what the
nodejs Install NodeJS on Ubuntu Installing NodeJS on Ubuntu machine takes a few easy steps: sudo apt-get install python-software-properties python g++ make sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs Node Package Manager (npm) is installed along the way.
install Install Ruby on Rails on Ubuntu Instructions on how to install Ruby on Rails on Ubuntu are pretty easy. You can copy paste following code and save it in the script and execute it. This way it will install everything in one go. Full installation of Ruby on Ubuntu usually takes around 10-15 minutes. If you
ubuntu Ubuntu Run Script on Start up In order to run a custom script on startup on Linux/Ubuntu system, you can follow these steps: Create custom file e.g. startup_script in your home folder: vim startup_script Then edit script and enter following: cd /home/SOME_USER/projects/YOUR_AWESOME_FOLDER/; bundle exec rails s