Problem
On Ubuntu remote display in X doesn not work.
Analysis
We need to remove “-nolisten tcp” from X command line.
Solution
- This is sometimes in “/etc/X11/xinit/xserverrc”, but in Ubuntu you just need to configure GDM:Create or edit file /etc/gdm/custom.conf with the following content:
[security]
DisallowTCP=false
- Restart X or reboot.
- On the remote machine
$ export DISPLAY=yourcomputer:0.0
- On local machine
$ xhost + remotemachine
No Comments »
Problem
VirtualBox does not want to start in Ubuntu. Error messages are:
VirtualBox can't operate in VMX root mode.
Please disable the KVM kernel extension,
recompile your kernel and reboot.
Analysis
.
Solution
First setup vbox:
# sudo /etc/init.d/vboxdrv.dpkg-bak setup
The suggested:
# sudo /etc/init.d/vboxdrv setup
from [2] did not work for me.
Uninstall module:
# modprobe -r kvm_intel
Resources
- https://bugs.launchpad.net/ubuntu/+source/virtualbox-ose/+bug/292588
- http://ubuntuforums.org/showthread.php?t=1163811&page=2
No Comments »
Problem
How to manage services in Ubuntu - looking for similar thing as “service” used in RedHat-clones.
Analysis
List of available software is the following:
- sysv-rc-conf - best
- rcconf - does not enable to set runlevel
- bootup-manager
- System -> Preferences - > Startup Applications - very simple
Solution
sysv-rc-conf is our choice and recommendation.
Resources
- http://blog.ubuntu-tweak.com/2007/09/30/how-to-control-ubuntus-services-easily.html
- http://ubuntuforums.org/showpost.php?p=35858&postcount=8
No Comments »