Nope, I'm using 5.04 - "The Hoary Hedgehog" Release.How do I upgrade?
alun@ubuntu:~$ sudo apt-get upgrade dist-upgradePassword:Reading package lists... DoneBuilding dependency tree... Done0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Another annoyance, I've managed to install FireFox 1.5 but how the fuck do I alter the launcher on Gnome?KDE and even Xfce were easy I just right clicked on the them and changed the path to the executable, this works on the quick launch on the top panel but it dosen't work on the Applications pulldown menu, they should make this behaviour consistant.
EDIT:How do I get root in Nautilus?
# /etc/fstab: static file system information.## proc /proc proc defaults 0 0/dev/hda1 / ext3 defaults,errors=remount-ro 0 1/dev/hda5 none swap sw 0 0/dev/hdc /media/cdrom0 udf,iso9660 ro,user,noauto 0 0/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0/dev/hda4 /mnt/windows ntfs defaults 0 0
I want to set my NTFS partition mermissions to allow the user read only access.Here's the contents of my fstabCode: [Select]# /etc/fstab: static file system information.## proc /proc proc defaults 0 0/dev/hda1 / ext3 defaults,errors=remount-ro 0 1/dev/hda5 none swap sw 0 0/dev/hdc /media/cdrom0 udf,iso9660 ro,user,noauto 0 0/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0/dev/hda4 /mnt/windows ntfs defaults 0 0Currently only root and read it, how do I change this to allow anyone read access?
3. The way piratepenguin has suggested you change permissions on your drive works, but it is not the most correct way to do it.
4. I learned a new technique the other day. At the prompt type:su -enter your password, and then press enter.Now you can launch apps from the command line as root, without causing the system to freak out. For instance, you could run 'gedit /etc/fstab' and be able to save your changes. Normally, simply doing 'su' alone with this command will cause a lot of memory leaks and maybe even some minor subsystem crashes. This might help you do whatever you need to do as root to nautilus.
piratepenguin@pcdeclan:~$ suPassword:root@pcdeclan:/home/piratepenguin# echo $USERpiratepenguinroot@pcdeclan:/home/piratepenguin# exitexitpiratepenguin@pcdeclan:~$ su -Password:root@pcdeclan:~# echo $USERrootroot@pcdeclan:~#
piratepenguin@pcdeclan:~$ su -Password:root@pcdeclan:~# echo $DISPLAYroot@pcdeclan:~# DISPLAY=:0.0 gedit /etc/fstabXlib: connection to ":0.0" refused by serverXlib: No protocol specified(gedit:2294): Gtk-WARNING **: cannot open display:root@pcdeclan:~# exitlogoutpiratepenguin@pcdeclan:~$ xhost +access control disabled, clients can connect from any hostpiratepenguin@pcdeclan:~$ su -Password:root@pcdeclan:~# cat /etc/fstab# file system mount-point type options dump fsck# order/dev/hda5 swap swap pri=1 0 0/dev/hda3 / ext3 defaults 0 0/dev/hda7 /home ext3 defaults 0 0/dev/hda8 /boot ext3 defaults,noauto 0 0/dev/hda2 /mnt/gnu_hurd ext2 defaults,noauto 0 0/dev/hda4 /mnt/reiser4 reiser4 defaults,noauto 0 0/dev/hdc /media/hdc iso9660 defaults,noauto,user,ro 0 0/dev/hdd /media/hdd iso9660 defaults,noauto,user,ro 0 0/dev/fd0 /media/floppy auto defaults,noauto,user 0 0/dev/sda1 /media/external_hd vfat defaults,noauto,user 0 0proc /proc proc defaults 0 0sysfs /sys sysfs defaults 0 0devpts /dev/pts devpts gid=4,mode=620 0 0shm /dev/shm tmpfs defaults 0 0root@pcdeclan:~# DISPLAY=:0.0 gedit /etc/fstabroot@pcdeclan:~# cat /etc/fstab# file system mount-point type options dump fsck# order/dev/hda5 swap swap pri=1 0 0/dev/hda3 / ext3 defaults 0 0/dev/hda7 /home ext3 defaults 0 0/dev/hda8 /boot ext3 defaults,noauto 0 0/dev/hda2 /mnt/gnu_hurd ext2 defaults,noauto 0 0/dev/hda4 /mnt/reiser4 reiser4 defaults,noauto 0 0/dev/hdc /media/hdc iso9660 defaults,noauto,user,ro 0 0/dev/hdd /media/hdd iso9660 defaults,noauto,user,ro 0 0/dev/fd0 /media/floppy auto defaults,noauto,user 0 0/dev/sda1 /media/external_hd vfat defaults,noauto,user 0 0proc /proc proc defaults 0 0sysfs /sys sysfs defaults 0 0devpts /dev/pts devpts gid=4,mode=620 0 0shm /dev/shm tmpfs defaults 0 0###### gedit was here! #####root@pcdeclan:~#