Linked by Thom Holwerda on Thu 29th May 2008 17:04 UTC
Thread beginning with comment 316172
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
You might want to take a look at this post if you use the VirtualBox image, as there appear to be some networking issues:
http://dot.kde.org/1211789022/1212003398/1212016629/1212106579/
(I've not had a chance to test the VirtualBox image myself, yet.)
http://dot.kde.org/1211789022/1212003398/1212016629/1212106579/
(I've not had a chance to test the VirtualBox image myself, yet.)
I'm posting this from the Virtualbox image right now.
There is indeed an issue with networking.
$ sudo su
password:
$ ifconfig eth1 up
$ dhclient eth1
... fixes it.
KDE 4.1 is not ugly. It could do with a simple way to reduce the size of the menu bar at the bottom, and the default theme isn't the most fantastic ... but is it ugly? No.
$ sudo su
password:
$ ifconfig eth1 up
$ dhclient eth1
... fixes it.
A technical nit pick. This is redundant. Do either:
$ su
passsord:
$ ifconfig eht1 up
$ dhclient eth1
or
$ sudo ifconfig eth1 up
$ sudo dhclient eth1
sudo let's you run a single command at a time as the super user and can be configured to do so without a password prompt
su let's you become the super user and doesn't need to be called via sudo. It's best to use su - or just set an alias in your shell config file for it so that you inherit root's environment.






Member since:
2007-08-03
You might want to take a look at this post if you use the VirtualBox image, as there appear to be some networking issues:
http://dot.kde.org/1211789022/1212003398/1212016629/1212106579/
(I've not had a chance to test the VirtualBox image myself, yet.)