What is Toluu?
Toluu is a free service for sharing the feeds you read and discovering new ones.
Get Invite

Only Ubuntu Linux


How to restore original VLC skin and config on UbuntuNovember 29
If you already install new VLC skins and now you want default skin becouse many options are gone, or you mess up the options and want to start from beginning follow this simple tutorial

Go to home folder
Set up nautilus to show hidden files (View/Show hidden files)
Go to the .config folder - with dot on front
Delete vlc folder
Restart VLC and set up your settings from beginning







Howto Disable HTTP Cache cleaner notification when using KDE apps on GnomeNovember 28
How to disable the "Launching HTTP Cache Cleaner..." process that appears every once in a while on the taskbar/panel when using KDE apps like Amarok in GNOME.


Install kcontrol

sudo apt-get install kcontrol

It'll probably install kdebase-data kicker and libkonq4 too (not sure if they're needed but let it do it).

2. Go to Applications -> Other -> Cache. Uncheck the "Use cache" option, Apply, Close and you're done!

With these two simple steps you'll get rid of that "Launching HTTP Cache Cleaner" window forever.












Howto install functional eye-candy with Avant-Window-Navigator in UbuntuNovember 28
AWN is a compositing dock-like taskbar. It is similar to the dock in OSX, but supports features such as custom themes, applets that can do anything from displaying battery life to showing Dilbert, and much more.


AWN requires a compositor (like beryl or compiz) to work properly.

If you have previously installed some other version of AWN, you should remove it before you begin. In most cases my guide will not have any trouble wiht a previous install, but odd bugs have been known to occur.

Before we begin, make sure you have all the needed ubuntu repositories installed, namely universe and ubuntu-updates. This can be done in System -> Administration -> Software Sources by enabling 'recommended updates' under the 'Updates' tab, and also enabling 'Community-maintained Open Source software' under the 'Ubuntu Software' tab.

First, add AWN repo by running the appropriate set of commands

For Hardy Users

echo 'deb http://ppa.launchpad.net/reacocard-awn/ubuntu hardy main' | sudo tee -a /etc/apt/sources.list

For Intrepid Users

echo 'deb http://ppa.launchpad.net/reacocard-awn/ubuntu intrepid main' | sudo tee -a /etc/apt/sources.list

Update the source list using the following command

sudo apt-get update

Install AWN Using the following command

sudo apt-get install avant-window-navigator-bzr awn-core-applets-bzr awn-manager-bzr

s


























Howto Fix the Firefox taking up the whole screen problemNovember 28
Problem

Firefox taking up the whole screen problem


Solution

What you need to do is for a temporary fix is press "F11" twice

Permanent fix

Go into the Compiz Settings Manager and find "Windows Decorations" add the following line to "Decoration Windows"

(any) | class=Firefox

Once you've done that close out CCSM, then open CCSM back up again, then change that to:

any

Then that should solve the problem, it worked flawlessly. If that doesn't work you can always revert back to metacity

metacity --replace
























Firefox cache in ramdisk (tmpfs)November 25
I was trying to find a way to set up a ramdisk and have firefox store the cache there.

Step 1: Make a place to mount the ramdisk. In the terminal type:

sudo mkdir /media/ramdisk


Where /media/ramdisk is where you will mount the ramdisk.

Step 2: Mount the ramdisk

sudo mount -t tmpfs -o size=64M,nr_inodes=10k,mode=0777 tmpfs /media/ramdisk

We set the permisions to 777 which allows anybody and everybody to access it. Set these as you wish

Step 3 In firefox: Set the cache location to you new ramdisk

Basically type

about:config

in the URL address bar. Search for

browser.cache.disk.parent_directory

or add a new string by right clicking and choosing new. Then set the location to your ramdisk. In my case I set it to

/media/ramdisk/

Optional:

Step 4: If you wish to automount the ramdisk you need to edit your FSTAB file

gksudo gedit /etc/fstab

Add the line

tmpfs /media/ramdisk tmpfs size=64M,nr_inodes=10k,mode=777 0 0

Everything should be all set. You can check the ramdisk to see if a folder 'Cache' is created when you load firefox. Don't forget to close firefox or restart firefox before you set this up.