Local and remote X sessions on different consoles

There are several ways to start graphical applications remotely with Linux. One of the most simple and obvious is ssh with -X input parameter. Command ssh -X user@host “firefox” will start best browser ever from remote host (you’ll see it in your local X session). But what about remote session instead of single applications? To start remote X11 session on first console (switch to it with CTRL+F1) execute: xinit ssh [...]

Read more →

 

List of free DNS servers

Here is the list of service providers offering DNS service free of charge: ScrubIt: 67.138.54.100 207.225.209.66 OpenDNS: 208.67.222.222 208.67.220.220 208.67.220.222 208.67.222.220 And VIP DNS by gtei.net: 4.2.2.1 4.2.2.2 4.2.2.3 4.2.2.4 4.2.2.5 4.2.2.6 These DNS server proved to be reliable and fast. Recommended!

Read more →

 

Manage FreeBSD kernel modules on the fly

There are several utilities in FreeBSD to manage kernel modules. Among them are: kldload, kldstat, kldunload. First (kldload) would be useful for loading files *.ko into FreeBSD kernel using kernel linker. Second (kldstat) displays status of files loaded into kernel. Third (kldunload) helps to unload files which were previously loaded into kernel with kldload. This utilities are analogues of modprobe and lsmod utilities in Linux. Example: in order to enable [...]

Read more →

 

Linux Terminal Performance Comparison

Linux has an abundance of excellent terminal applications. Interestingly, I could not find any decent comparison of their text display performance. Since I use the command line a lot, I want text output that is as fast as possible. When you compile a large project, you don’t want the console output to be the limiting factor. Read more…

Read more →

 

Get suspend/hibernate working fast in Ubuntu Feisty Fawn (7.04) and Edgy Eft (6.10)

After I upgraded to Ubuntu Feisty Fawn 7.04 Linux distribution I noticed that one of my favorite laptop features suspend/hibernate worked quite baldly and slowly. It took up to few minutes to get laptop sleeping and then awake it. Both default suspend and hibernate features are cheesy in this Ubuntu version. The worst thing I faced was that after I got laptop sleeping and put it into my bag it [...]

Read more →