Saturday, April 10, 2010

mount boot unknown filesystem type 'ext2'

Problem :


When I execute : mount /boot/, I have the following :
mount: unknown filesystem type 'ext2'

In my /etc/fstab, I have  :
 /dev/sda1               /boot           ext2            defaults        1 2


Solution :


Add a journal to /dev/sda1 :

tune2fs -O has_journal /dev/sda1

Then modify ext2 en ext3 in /etc/fstab.

 /dev/sda1               /boot           ext3            defaults        1 2

So, now you can make a mount : mount /boot




Link : Solution

Saturday, April 3, 2010

Install Google Chrome on Ubuntu 9.10

I've found a post about installing Chrome on Ubuntu.I test it and it works ! So I put it here :


November 2nd, 2009
This post was written when Chrome was still not available for Linux. Chromium was the only option then. Now that Google Chrome is available, just go to Google's website and download the browser directly.






Add to your sources list.
$ sudo gedit /etc/apt/sources.list
deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
You may substitute jaunty, intrepid, hoary for other distributions.

Add the GPG keys.(all in one line)
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xfbef0d696de1c72ba5a835fe5a9bf3bb4e5e17b5

Run an update.
sudo apt-get update

Finally, install Google Chrome.
sudo apt-get install chromium-browser

Tuesday, March 30, 2010

Kde : PackageKit and Proxy

If use PackageKit and you have a proxy, you have to modify a config file :

sudo vi /etc/PackageKit/PackageKit.conf
ProxyHTTP=proxy.XXX:8080

That's all ! Now you can use PackageKit with a proxy.


Saturday, March 27, 2010

Ubuntu : Installation firefox and proxy

Install of firefox under ubuntu is easy.You just have to do :

sudo apt-get install firefox
 
Note : You have to be careful when you write you proxy in the firefox configuration screen.Don't write the http or else it doesn't works !

Tuesday, March 23, 2010

Kubuntu 9.1

Bonjour à tous !

En ce moment au travail, j'utilise Kubuntu 9.1.Par conséquent, je mettrai quelques articles sur les problème que je rencontre dans la rubrique Ubuntu.

Saturday, March 20, 2010

KDE best shortcuts : Grid View

I learn KDE4 shortcuts and I found one very very cool : It 's the grid view : CTRL + F8, CTRL + F9, CTRL + F10.With theses shortcuts, you can see all you desktop in on view, all you windows in one view !
So try it now !

Saturday, March 13, 2010

Su command permission denied

If you write su with the good password on your terminal and you have always the error "permission denied".It's probably because you user have not the group wheel.
So the only thing you have to do is :

gpassw -a user wheel

Why ?

The wheel group is a group which limits the number of people who are able to su to root. This usually consists of a group named “wheel” and a set of users that are permitted to use the utility ’su’ in order to change to root.