Thursday, January 24, 2008

Wine cann't connect audio on Linux Fedora

- My Computer have a lot of problem about audio when restart computer. I think that this is error pulseaudio or haldaemon, but restart again is everything is Okie
- Because of Wine isn't running good.
Todo fixed this bug: you're restart Wine:
wineboot -r

Good luck to you

Friday, January 18, 2008

How to run httpd service automatically during startup

- How to run httpd service, or any other service automatically during startup
- I know its got something to do with the chkconfig command
- chkconfig --list
+ chkconfig [--level ]

- Example: If you want to off sendmail process when your system start up GUI, following line
chkconfig --level 5 sendmail off

How to enable superkey(Window key) in linux

Modify file X11/xorg.conf
Finding line
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
Option "XkbOptions" "altwin:super_win"
EndSection

Good to you!