The standard for all varieties of Ubuntu seems to be that sudo should be used in preference to running as root. Many of the administrative tools provide an interface that appears to wrap the tool invocation with the execution of sudo. However, the most fundamental administrative tool seems to be missing. How are you supposed to do simple text editing?
On Ubuntu I found that opening a console window and entering the following command works nicely -
sudo gedit /etc/fstab
This led me to the idea that the same thing might work on Kubuntu. In this case the following -
sudo kate /etc/fstab
In fact it does seem to work. However, I'm not sure what to make of the following lines that appear on the console -
ajax@Tester:~$ sudo kate /etc/fstab
[sudo] password for ajax:
Error: "/var/tmp/kdecache-ajax" is owned by uid 1000 instead of uid 0.
Error: "/tmp/kde-ajax" is owned by uid 1000 instead of uid 0.
Error: "/tmp/ksocket-ajax" is owned by uid 1000 instead of uid 0.
Can anyone explain what's going on here?
On Ubuntu I found that opening a console window and entering the following command works nicely -
sudo gedit /etc/fstab
This led me to the idea that the same thing might work on Kubuntu. In this case the following -
sudo kate /etc/fstab
In fact it does seem to work. However, I'm not sure what to make of the following lines that appear on the console -
ajax@Tester:~$ sudo kate /etc/fstab
[sudo] password for ajax:
Error: "/var/tmp/kdecache-ajax" is owned by uid 1000 instead of uid 0.
Error: "/tmp/kde-ajax" is owned by uid 1000 instead of uid 0.
Error: "/tmp/ksocket-ajax" is owned by uid 1000 instead of uid 0.
Can anyone explain what's going on here?
Comment