UUID change from command line

September 17, 2009 by tibor · Leave a Comment 

uuidgen |sudo xargs tune2fs /dev/sda3 -U; sudo vol_id /dev/sda3

Compaq Presario 2200 and Xubuntu 9.04

September 1, 2009 by tibor · Leave a Comment 

This is a 5 years old laptop. 1.4Ghz Celeron with 226MB RAM. Pretty ancient and slow.

It works perfectly well with Xubuntu 9.04, there is a wireless Broadcom BCM4306  802.11b/g rev 3 wifi card in it. I had to manually enable the restricted driver under, Applications, System, Hardware Drivers and then reboot.

At that point, wifi, sound, suspend and hibernate all worked perfectly. :-)

Font Bonanza on Ubuntu Hardy

September 19, 2008 by tibor · Leave a Comment 

To install an amazing amount and quality of fonts execute the following command:

Code:

sudo apt-get install ttf-georgewilliams ttf-sjfonts sun-java6-fonts ttf-larabie-deco ttf-larabie-straight ttf-larabie-uncommon gnome-specimen

I am reviewing hundreds of fonts to pick the right one for my new IT Care Inc. logo I am designing. I will post the best of them fonts soon.

For now here is an “appetizer“, though:

This font is called Cuomotype in case you wanted to know. :-)

Wordpress Revolution Theme – How do I create a page that doesn’t appear in the navigation

September 18, 2008 by tibor · Comments Off 

http://www.revolutiontheme.com/support/viewtopic.php?f=3&t=5847&p=31221&hilit=+menu+link#p31221

Re: How do I create a page that doesn’t appear in the navigation

You can create a page in the normal way then exclude it from the navbar. Find this in header.php:

Code:
<div id="navbarleft">
<ul id="nav">
<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=2&sort_column=menu_order'); ?>
</ul>
</div>

and change it to:

Code:
<div id="navbarleft">
<ul id="nav">
<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<?php wp_list_pages('exclude=XX&title_li=&depth=2&sort_column=menu_order'); ?>
</ul>
</div>

Replace XX with the ID number of the page to be excluded.

To exclude more than one page, the code looks like this:

Code:
<?php wp_list_pages(’exclude=1,4&title_li=&depth=2&sort_column=menu_order’); ?>

Ade

GLText screensaver – Change displayed text

August 31, 2008 by tibor · Leave a Comment 

Edit the /usr/share/applications/screensavers/gltext.desktop file as root.

1. Alt+F2
2. “gksu gedit /usr/share/applications/screensavers/gltext.desktop”

Change the line that currently says Exec=gltext -root to the following line instead:

Exec=gltext -root -front -no-spin -text “Mind is your conditioning\n always seeking expression\n IN THOUGHT\N through NOW!”

3. Save, Exit

4. Set your Screensaver to GLText under System, Preferences, Screensavers

VNC through SSH

May 29, 2008 by tibor · Leave a Comment 

INTERNAL: ssh -p10000 -X -L 5900:localhost:5900 user@internalIPaddress
EXTERNAL: ssh -p10000 -X -L 5900:localhost:5900 user@externalIPaddress
vncviewer localhost

Firefox 2 on Hardy cannot install extensions/addons

May 24, 2008 by tibor · Leave a Comment 

The error message in the Firefox 2 error console says: “installlocation has no properties”

Solution: Close firefox, delete extensions.rdf file in your firefox path, restart firefox

Fix Flash audio not playing in Ubuntu Hardy under PulseAudio

May 23, 2008 by tibor · Leave a Comment 

sudo apt-get install –reinstall pulseaudio libflashsupport

Flyback on Ubuntu Hardy 8.04 LTS

May 22, 2008 by tibor · Leave a Comment 

Original code homepage: http://code.google.com/p/flyback/

$sudo apt-get install python python-glade2 python-gnome2 python-pysqlite2 python-gconf rsync gnome-schedule
$ mkdir ~/Applications
$ cd ~/Applications
$ wget http://flyback.googlecode.com/files/flyback_0.4.0.tar.gz
$ tar -zxvf flyback_0.4.0.tar.gz
$ cd flyback
$ cp GPL.txt ~
$ ln -s flyback.py ~/flyback.py #it expects flyback to be installed to yourhome directory, ie the cron line is looking for the file /home/user/flyback.py
$ python flyback.py

Create a custom application launcher in Gnome Panel to create an icon:
python /home/t/Applications/flyback/flyback.py

Turn off X on Ubuntu 7.04 Feisty server

May 7, 2008 by tibor · Leave a Comment 

$ cd /etc/rc2.d/
$ sudo mv S13gdm K87gdm
$ sudo reboot

This way the server stays at the console login prompt instead of booting into X (GDM)

Next Page »