Linux
Linux Process Invisibility
Dec 25th
Hello again, we have given a project in System Programming course. It was expected you to alter the kernel code for process invisibility, when you ps, process can not be seen in the output, if process invisibility flag is “1″.
The project was modifying the linux kernel for process invisibility, writing a system call for setting the invisibility flag and writing a user-space program.
Project was developed at Xubuntu 9.10 guest on Windows 7 host. Eclipse (with CDT and Remote System Explorer plugins) was the development IDE. Putty SSH client was also used for executing commands and “command copy/paste” availability. VirtualBox was the virtual machine supervisor.
ATTENTION: This code is experimental. If you try, it will be your own responsibility.
More >
KDE4 and Dual Monitors
Jun 9th
KDE4 has brought a new concept to desktop by Plasma. However, it was not considered that Plasma should work on more than one monitors. It has rumours that KDE 4.2 has a fix for multi-monitoring, this fix is not working. While I was searching for the problem, I found an alternative solution to monitoring on KDE-Forums (It redirects to Gentoo-Wiki).
- Backup your xorg.conf file (/etc/X11/xorg.conf ).
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
- Configure your xorg.conf file for dual monitors. I don’t now how ATI is configured, but for NVIDIA you can use
nvidia-settingsprogram. You must configure both screen as seperate screen. Your main screen’s height should be greater than second’s and Xinerama should be disabled. Then click “Save to X Configuration File” and save it. - Install ICEWM by your default repository manager.
For Gentoo:emerge -av icewm - Restart your Xorg server by
Ctrl+Alt+Backspace.
- Open a console then write:
DISPLAY=":0.1" icewm
- If you want to work with “icewm” every start of your computer:
echo 'DISPLAY=":0.1" icewm &' > ~/YOUR_KDE_FOLDER/Autostart/icewmstart.sh
If folder name is “.kde”:
echo 'DISPLAY=":0.1" icewm &' > ~/.kde/Autostart/icewmstart.sh
And then my dual monitors

If your second monitor left of the main monitor you can configure xorg.conf file like this:
Find the line:
Screen 1 "Screen1" RightOf "Screen0"
Then change to:
Screen 1 "Screen1" LeftOf "Screen0"