Google Translate

English French German Spain Italian Dutch Russian Portuguese Japanese Korean Arabic Chinese Simplified by : BTF, ed. by JRD (me!)
Visualizzazione post con etichetta install. Mostra tutti i post
Visualizzazione post con etichetta install. Mostra tutti i post

venerdì 16 dicembre 2011

Install Google Chrome on Ubuntu

Installing the Google Chrome browser on a Ubuntu linux OS is not exactly straightforward, simply because not all of the required dependencies are met. So here is a good way to get it done (I'm using Ubuntu 11.10 Oneiric Ocelot Server x64 with desktop installed):

1. Download the correct version for your system from https://www.google.com/chrome/
2. Using synaptic to install it won't work, so press CTRL+ALT+T to open up a terminal. Navigate to your downloads folder (usually something like "cd Downloads", or if you're not in your home folder "cd  ~/Downloads".
3. Install using: "sudo dpkg -i name_of_the_package.deb" and press ENTER. The package is usually named along the lines of "google-chrome-stable-current....deb". You could just type the first few letters like "goog" then press TAB, and terminal will complete the name for you. If it doesn't find a correspondence, then type "ls" and press ENTER to see the downloaded files in the folder. After you give the "sudo dpkg" command, you will be prompted for your password, type it in and press ENTER.
4. The installation won't complete because of the missing dependencies. So now you just do "sudo apt-get -f install", and the missing dependencies will be automatically installed for you and probably the google chrome package will complete installation too. There you go!
Now just type in "exit" and press ENTER to go back to your desktop.

In a nutshell, after you've downloaded your file, open a command line with CTRL+ALT+T, and:

----------------------------------------
username@ubuntu:~$ cd Downloads
username@ubuntu:~/Downloads$  sudo dpkg -i google-chrome-stable-current_amd64.deb
username@ubuntu:~/Downloads$  sudo apt-get -f install
---------------------------------------

and that should be it! 

martedì 12 luglio 2011

Installing packages in mingw

So I don't really understand completely the difference between cygwin, mingw and the likes yet... But I'm fiddling around trying to install node.js in a Windows environment which brought me to mingw.
So I'm installing packages on mingw from the mingw command prompt using "mingw-get install nnn". I'm looking at a list of suggested packages from here: http://sourceforge.net/project/shownotes.php?release_id=540763. Some packages are installed fine, others give errors "unknown package". Well doing a "mingw-get update" I noticed that a number of packages were tied to msys. So I tried something new: "mingw-get install msys-nnn". Guess what. It worked!