<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://ubuntuguide.org/skins/common/feed.css?207"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Ubuntu:Edgy/TipsAndTricks - Revision history</title>
		<link>http://ubuntuguide.org/index.php?title=Ubuntu:Edgy/TipsAndTricks&amp;action=history</link>
		<description>Revision history for this page on the wiki</description>
		<language>en</language>
		<generator>MediaWiki 1.15.1</generator>
		<lastBuildDate>Wed, 19 Jun 2013 09:44:38 GMT</lastBuildDate>
		<item>
			<title>Keith Beef:&amp;#32;/* How to type extended characters */</title>
			<link>http://ubuntuguide.org/index.php?title=Ubuntu:Edgy/TipsAndTricks&amp;diff=20243&amp;oldid=prev</link>
			<description>&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;How to type extended characters&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Read [[Ubuntu:Edgy/GeneralNotes]]&lt;br /&gt;
&lt;br /&gt;
== How to enable lame for FFMPEG (needed to encode FLV with sound) ==&lt;br /&gt;
&lt;br /&gt;
KINO FLVs silent? You need to recompile FFMPEG with LAME enabled. FFMPEG can be installed via apt-get as a package, but is not able encode MP3, which is the audio stream in FLV video (like Google &amp;amp; YouTube).&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add extra repositories]]&lt;br /&gt;
*Ensure Ubuntu Universe repository is not preceded by # in /etc/apt/sources.list&lt;br /&gt;
*Download and install lame liblame-dev and gcc packages (mp3 encoder + GNU compiler collection)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get build-dep ffmpeg&lt;br /&gt;
sudo apt-get install liblame-dev libfaad2-dev libfaac-dev libxvidcore4-dev liba52-0.7.4 \&lt;br /&gt;
liba52-0.7.4-dev libx264-dev checkinstall build-essential gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Download and extract FFMPEG source to current working directory&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get source ffmpeg&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Compile FFMPEG from source&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ffmpeg-*&lt;br /&gt;
sudo ./configure --enable-gpl --enable-pp --enable-vorbis --enable-libogg \&lt;br /&gt;
--enable-a52 --enable-dts --enable-dc1394 --enable-libgsm --disable-debug \&lt;br /&gt;
--enable-mp3lame --enable-faad --enable-faac --enable-xvid --enable-pthreads \&lt;br /&gt;
--enable-x264&lt;br /&gt;
&lt;br /&gt;
maybe try instead = &lt;br /&gt;
sudo ./configure --enable-gpl --enable-pp --enable-libvorbis --enable-libogg \&lt;br /&gt;
--enable-liba52 --enable-libdts --enable-dc1394 --enable-libgsm --disable-debug \ &lt;br /&gt;
--enable-libmp3lame --enable-libfaad --enable-libfaac --enable-xvid --enable-pthreads \&lt;br /&gt;
--enable-x264&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sudo make&lt;br /&gt;
sudo checkinstall [accept defaults, set version to 3:0.cvs20060823-3.1ubuntu2]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If an application you are using employs FFMPEG to encode FLV, it should now work properly. You can also call FFMPEG directly from the command line. The  extension/suffix of the outfile tells FFMPEG which audio or video format to encode to. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ffmpeg [-i infile] [outfile]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to enable smooth fonts ==&lt;br /&gt;
&lt;br /&gt;
 gedit ~/.fonts.conf&lt;br /&gt;
*Paste in this text:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=”1.0” ?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM “fonts.dtd”&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
 &amp;lt;match target=”font”&amp;gt;&lt;br /&gt;
 &amp;lt;edit name=”autohint” mode=”assign”&amp;gt;&lt;br /&gt;
 &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
 &amp;lt;/edit&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
*You’ll have to log out and back in to see the difference.&lt;br /&gt;
&lt;br /&gt;
== How to restart GNOME without rebooting computer ==&lt;br /&gt;
&lt;br /&gt;
*Save and close all opened applications&lt;br /&gt;
&lt;br /&gt;
 Press 'Ctrl + Alt + Backspace'&lt;br /&gt;
 &lt;br /&gt;
:or&lt;br /&gt;
&lt;br /&gt;
 sudo /etc/init.d/gdm restart&lt;br /&gt;
&lt;br /&gt;
:or&lt;br /&gt;
&lt;br /&gt;
 If these tips did not help read [[#System requests (What to do if your system is unresponsive)]]&lt;br /&gt;
&lt;br /&gt;
== How to turn on Num Lock on GNOME startup ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add extra repositories]]&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install numlockx&lt;br /&gt;
 sudo cp /etc/X11/gdm/Init/Default /etc/X11/gdm/Init/Default_backup&lt;br /&gt;
 gksudo gedit /etc/X11/gdm/Init/Default&lt;br /&gt;
&lt;br /&gt;
*Find this line&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
*Add the following lines above it&lt;br /&gt;
&lt;br /&gt;
 if [ -x /usr/bin/numlockx ]; then&lt;br /&gt;
  /usr/bin/numlockx on&lt;br /&gt;
 fi&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
*Read [[#How to restart GNOME without rebooting computer]]&lt;br /&gt;
&lt;br /&gt;
== How to remap the Caps Lock key as another Control key ==&lt;br /&gt;
&lt;br /&gt;
 gksudo gedit /etc/console-tools/remap&lt;br /&gt;
&lt;br /&gt;
=== In the Console ===&lt;br /&gt;
*Change&lt;br /&gt;
 #s/keycode  58 = Caps_Lock/keycode  58 = Control/;&lt;br /&gt;
to&lt;br /&gt;
 s/keycode  58 = Caps_Lock/keycode  58 = Control/;&lt;br /&gt;
&lt;br /&gt;
*Save your work&lt;br /&gt;
&lt;br /&gt;
 sudo /etc/init.d/console-screen.sh&lt;br /&gt;
&lt;br /&gt;
*Try using it&lt;br /&gt;
&lt;br /&gt;
=== In X Windows ===&lt;br /&gt;
 gedit ~/.Xmodmap&lt;br /&gt;
&lt;br /&gt;
*Add this:&lt;br /&gt;
 keycode 66 = Control_L&lt;br /&gt;
 clear Lock&lt;br /&gt;
 add Control = Control_L&lt;br /&gt;
 &lt;br /&gt;
*Now, apply the changes.&lt;br /&gt;
 xmodmap ~/.Xmodmap&lt;br /&gt;
&lt;br /&gt;
*To apply them on startup&lt;br /&gt;
**If ~/.xinitrc does not exist,&lt;br /&gt;
 cp /etc/X11/xinit/xinitrc ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
*In all cases&lt;br /&gt;
 gedit ~/.xinitrc&lt;br /&gt;
&lt;br /&gt;
*Make the first line this:&lt;br /&gt;
 xmodmap ~/.Xmodmap&lt;br /&gt;
&lt;br /&gt;
*Restart X (Ctrl - Alt - Backspace)&lt;br /&gt;
*Log In, a dialog should pop up, add .Xmodmap to the left side with the add button, and Save.&lt;br /&gt;
&lt;br /&gt;
== How to run programs on startup when login into GNOME ==&lt;br /&gt;
&lt;br /&gt;
*System -&amp;gt; Preferences -&amp;gt; Sessions&lt;br /&gt;
*Sessions&lt;br /&gt;
&lt;br /&gt;
 Startup Programs Tab -&amp;gt; Add/Edit/Delete&lt;br /&gt;
&lt;br /&gt;
== How to speed-up your Ubuntu box ==&lt;br /&gt;
&lt;br /&gt;
*Read the following post: http://ubuntuforums.org/showthread.php?t=189192&lt;br /&gt;
&lt;br /&gt;
== How to switch to Console mode in GNOME ==&lt;br /&gt;
&lt;br /&gt;
*To switch to Console mode&lt;br /&gt;
&lt;br /&gt;
 Press 'Ctrl + Alt + F1' (F2 - F6)&lt;br /&gt;
&lt;br /&gt;
*To switch between consoles in Console mode&lt;br /&gt;
&lt;br /&gt;
 Press 'Alt + F1' (F2 - F6)&lt;br /&gt;
&lt;br /&gt;
*To switch back to GNOME mode&lt;br /&gt;
&lt;br /&gt;
 Press 'Alt + F7'&lt;br /&gt;
&lt;br /&gt;
== How to disable Ctrl+Alt+Backspace from restarting X in GNOME and KDE 3.5.x ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup&lt;br /&gt;
 gksudo gedit /etc/X11/xorg.conf&lt;br /&gt;
&lt;br /&gt;
*Append the following lines at the end of file&lt;br /&gt;
&lt;br /&gt;
 Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
 	Option		&amp;quot;DontZap&amp;quot;		&amp;quot;yes&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
*Read [[#How to restart GNOME without rebooting computer]]&lt;br /&gt;
&lt;br /&gt;
== How to enable Ctrl+Alt+Del to open System Monitor in GNOME ==&lt;br /&gt;
&lt;br /&gt;
 gconftool-2 -t str --set /apps/metacity/global_keybindings/run_command_9 &amp;quot;&amp;lt;Control&amp;gt;&amp;lt;Alt&amp;gt;Delete&amp;quot;&lt;br /&gt;
 gconftool-2 -t str --set /apps/metacity/keybinding_commands/command_9 &amp;quot;gnome-system-monitor&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== How to refresh GNOME desktop ==&lt;br /&gt;
&lt;br /&gt;
 killall nautilus&lt;br /&gt;
&lt;br /&gt;
== How to refresh GNOME panel ==&lt;br /&gt;
&lt;br /&gt;
 killall gnome-panel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to enable autosave in Gedit and disable creation of some_file~ files ==&lt;br /&gt;
&lt;br /&gt;
*Applications -&amp;gt; System Tools -&amp;gt; Configuration Editor&lt;br /&gt;
*Configuration Editor&lt;br /&gt;
&lt;br /&gt;
 / -&amp;gt; apps -&amp;gt; gedit-2 -&amp;gt; preferences -&amp;gt; editor -&amp;gt; save -&amp;gt; create_backup_copy ('''Unchecked''')&lt;br /&gt;
 / -&amp;gt; apps -&amp;gt; gedit-2 -&amp;gt; preferences -&amp;gt; editor -&amp;gt; save -&amp;gt; auto_save ('''Checked''')&lt;br /&gt;
&lt;br /&gt;
== How to show all hidden files/folders in Nautilus ==&lt;br /&gt;
&lt;br /&gt;
*Places -&amp;gt; Home Folder&lt;br /&gt;
*To temporary show all hidden files/folders in Nautilus&lt;br /&gt;
&lt;br /&gt;
 Press 'Ctrl + H'&lt;br /&gt;
&lt;br /&gt;
*To permanently show all hidden files/folders in Nautilus&lt;br /&gt;
&lt;br /&gt;
 Edit Menu -&amp;gt; Preferences&lt;br /&gt;
&lt;br /&gt;
 Views Tab -&amp;gt; Default View -&amp;gt; Show hidden and backup files ('''Checked''')&lt;br /&gt;
&lt;br /&gt;
== How to browse files/folders as root user in Nautilus ==&lt;br /&gt;
&lt;br /&gt;
*To install File Browser (Root)&lt;br /&gt;
&lt;br /&gt;
 gksudo gedit /usr/share/applications/Nautilus-root.desktop&lt;br /&gt;
&lt;br /&gt;
**Insert the following lines into the new file&lt;br /&gt;
&lt;br /&gt;
 [Desktop Entry]&lt;br /&gt;
 Name=File Browser (Root)&lt;br /&gt;
 Comment=Browse the filesystem with the file manager&lt;br /&gt;
 Exec=gksudo &amp;quot;nautilus --browser %U&amp;quot;&lt;br /&gt;
 Icon=file-manager&lt;br /&gt;
 Terminal=false&lt;br /&gt;
 Type=Application&lt;br /&gt;
 Categories=Application;System;&lt;br /&gt;
&lt;br /&gt;
**Save the edited file &lt;br /&gt;
**Read [[#How to refresh GNOME panel]]&lt;br /&gt;
&lt;br /&gt;
*To browse files/folders as root user in Nautilus&lt;br /&gt;
**Applications -&amp;gt; System Tools -&amp;gt; File Browser (Root)&lt;br /&gt;
&lt;br /&gt;
== How to install a &amp;quot;View in Terminal&amp;quot; Menu for Nautilus ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add extra repositories]]&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install nautilus-open-terminal&lt;br /&gt;
&lt;br /&gt;
*Nautilus -&amp;gt; Right-click on folder or background -&amp;gt; Open in Terminal&lt;br /&gt;
&lt;br /&gt;
== How to change default file type &amp;quot;Open with&amp;quot; program ==&lt;br /&gt;
&lt;br /&gt;
 Right click on file -&amp;gt; '''Properties'''&lt;br /&gt;
&lt;br /&gt;
 Open With Tab -&amp;gt; Add&lt;br /&gt;
 Select &amp;quot;Open with&amp;quot; program&lt;br /&gt;
&lt;br /&gt;
 Select &amp;quot;Open with&amp;quot; program ('''Checked''')&lt;br /&gt;
&lt;br /&gt;
== How to change preferred email client to Mozilla Thunderbird ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install Email Client (Mozilla Thunderbird)]]&lt;br /&gt;
*System -&amp;gt; Preferences -&amp;gt; Preferred Applications&lt;br /&gt;
*Preferred Applications&lt;br /&gt;
&lt;br /&gt;
 Mail Reader Tab -&amp;gt; Default Mail Reader -&amp;gt; Command: mozilla-thunderbird %s&lt;br /&gt;
&lt;br /&gt;
== How to open files as root user via right click ==&lt;br /&gt;
&lt;br /&gt;
 gedit $HOME/.gnome2/nautilus-scripts/Open\ as\ root&lt;br /&gt;
&lt;br /&gt;
*Insert the following lines into the new file&lt;br /&gt;
&lt;br /&gt;
 for uri in $NAUTILUS_SCRIPT_SELECTED_URIS; do&lt;br /&gt;
 	gksudo &amp;quot;gnome-open $uri&amp;quot; &amp;amp;&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
&lt;br /&gt;
 chmod +x $HOME/.gnome2/nautilus-scripts/Open\ as\ root&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
 Right click on file -&amp;gt; Scripts -&amp;gt; Open as root&lt;br /&gt;
&lt;br /&gt;
== How to disable beep sound in Terminal mode ==&lt;br /&gt;
&lt;br /&gt;
Not for Dapper---- firingstone&lt;br /&gt;
&lt;br /&gt;
*Applications -&amp;gt; Accessories -&amp;gt; Terminal&lt;br /&gt;
*Terminal&lt;br /&gt;
&lt;br /&gt;
 Edit Menu -&amp;gt; Current Profile...&lt;br /&gt;
&lt;br /&gt;
 General Tab -&amp;gt; General -&amp;gt; Terminal bell (Un-Checked)&lt;br /&gt;
&lt;br /&gt;
== How to handle mms protocol in Mozilla Firefox ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install VLC Multimedia Player with plug-in for Mozilla Firefox]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
* Open your firefox.&lt;br /&gt;
* Type as url: about:config&lt;br /&gt;
Now just right click somewhere into the main window. A little box with options to choose will appear. Choose '''&amp;quot;new&amp;quot;''', then '''&amp;quot;string&amp;quot;'''. Then copy the following line into the appearing text field:&lt;br /&gt;
&lt;br /&gt;
 network.protocol-handler.app.mms&lt;br /&gt;
&lt;br /&gt;
Into the next text field copy this:&lt;br /&gt;
&lt;br /&gt;
 /usr/bin/X11/vlc&lt;br /&gt;
&lt;br /&gt;
Now you do the same thing again, but this time you do not choose &amp;quot;string&amp;quot; but '''&amp;quot;boolean&amp;quot;''', and the line to copy is:&lt;br /&gt;
&lt;br /&gt;
 network.protocol-handler.external.mms&lt;br /&gt;
&lt;br /&gt;
Then set&lt;br /&gt;
&lt;br /&gt;
 true&lt;br /&gt;
&lt;br /&gt;
== How to handle rtsp (realmedia) protocol in Mozilla Firefox ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install Multimedia Player (RealPlayer 10)]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
* Open your firefox.&lt;br /&gt;
* Type as url: about:config&lt;br /&gt;
Now just right click somewhere into the main window. A little box with options to choose will appear. Choose '''&amp;quot;new&amp;quot;''', then '''&amp;quot;string&amp;quot;'''. Then copy the following line into the appearing text field:&lt;br /&gt;
&lt;br /&gt;
 network.protocol-handler.app.rtsp&lt;br /&gt;
&lt;br /&gt;
Into the next text field copy this:&lt;br /&gt;
&lt;br /&gt;
 /usr/bin/X11/realplay&lt;br /&gt;
&lt;br /&gt;
Now you do the same thing again, but this time you do not choose &amp;quot;string&amp;quot; but '''&amp;quot;boolean&amp;quot;''', and the line to copy is:&lt;br /&gt;
&lt;br /&gt;
 network.protocol-handler.external.rtsp&lt;br /&gt;
&lt;br /&gt;
Then set&lt;br /&gt;
&lt;br /&gt;
 true&lt;br /&gt;
&lt;br /&gt;
== How to load Web site faster in Mozilla Firefox ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.ubuntugeek.com/speed-up-firefox-web-browser.html Speed Up Firefox Web Browser Tips]&lt;br /&gt;
&lt;br /&gt;
*Applications -&amp;gt; Internet -&amp;gt; Firefox Web Browser&lt;br /&gt;
*Mozilla Firefox&lt;br /&gt;
&lt;br /&gt;
 Address Bar -&amp;gt; about:config&lt;br /&gt;
&lt;br /&gt;
 Filter: -&amp;gt;&lt;br /&gt;
 network.dns.disableIPv6 -&amp;gt; true&lt;br /&gt;
 network.http.pipelining -&amp;gt; true&lt;br /&gt;
 network.http.pipelining.maxrequests -&amp;gt; 8&lt;br /&gt;
 network.http.proxy.pipelining -&amp;gt; true&lt;br /&gt;
&lt;br /&gt;
*Restart Mozilla Firefox&lt;br /&gt;
&lt;br /&gt;
== How to disable beep sound for link find function in Mozilla Firefox ==&lt;br /&gt;
&lt;br /&gt;
*Applications -&amp;gt; Internet -&amp;gt; Firefox Web Browser&lt;br /&gt;
*Mozilla Firefox&lt;br /&gt;
&lt;br /&gt;
 Address Bar -&amp;gt; about:config&lt;br /&gt;
&lt;br /&gt;
 Filter: -&amp;gt; accessibility.typeaheadfind.enablesound -&amp;gt; false&lt;br /&gt;
&lt;br /&gt;
*Restart Mozilla Firefox&lt;br /&gt;
&lt;br /&gt;
== How to apt-get the easy way (Synaptic) ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.debianadmin.com/simple-package-management-with-synaptic-package-manager-in-ubuntu.html Step By Step Synaptic Package Manager Tutorials with Screenshots ]&lt;br /&gt;
*System -&amp;gt; Administration -&amp;gt; Synaptic Package Manager&lt;br /&gt;
*To enable the extra Universe and Multiverse repositories&lt;br /&gt;
*#Settings -&amp;gt; Repositories&lt;br /&gt;
*#In the Installation Media tab, click Add. There are three separate repositories; Dapper Drake, Security Updates and Updates. Select each repository and check Officially supported, Restricted copyright, Community maintained (Universe) and Non-free (Multiverse). Ensure you click OK between each repository to save your changes&lt;br /&gt;
*#You should now see those three repositories under Channels. Make sure Officially supported, Restricted copyright, Community maintained (Universe) and Non-free (Multiverse) appears under each repository&lt;br /&gt;
&lt;br /&gt;
*To add backports and PLF (new versions of many applications.  Unsupported. May contain illegal packages. Use at own risk.)&lt;br /&gt;
*#Settings -&amp;gt; Repositories&lt;br /&gt;
*#Click on Add and then Custom&lt;br /&gt;
*#Paste the following four lines into the box and click Add Repository, one line at a time:&lt;br /&gt;
 &lt;br /&gt;
 deb http://archive.ubuntu.com/ubuntu edgy-backports main restricted universe multiverse&lt;br /&gt;
 deb-src http://archive.ubuntu.com/ubuntu edgy-backports main restricted universe multiverse&lt;br /&gt;
&lt;br /&gt;
 deb http://medibuntu.sos-sts.com/repo/ edgy free&lt;br /&gt;
 deb http://medibuntu.sos-sts.com/repo/ edgy non-free&lt;br /&gt;
 deb-src http://medibuntu.sos-sts.com/repo/ edgy free&lt;br /&gt;
 deb-src http://medibuntu.sos-sts.com/repo/ edgy non-free&lt;br /&gt;
&lt;br /&gt;
* Install the public key for medibuntu using the command below. Having done so you will avoid the &amp;lt;code&amp;gt;NO_PUBKEY 2EBC26B60C5A2783&amp;lt;/code&amp;gt; error when reloading package information.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;wget -q http://medibuntu.sos-sts.com/repo/medibuntu-key.gpg -O- | sudo apt-key add -&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*To refresh the list of known packages (equivalent to apt-get update)&lt;br /&gt;
&lt;br /&gt;
 Edit Menu -&amp;gt; Reload Package Information&lt;br /&gt;
&lt;br /&gt;
*To install all possible upgrades (equivalent to aptitude upgrade)&lt;br /&gt;
&lt;br /&gt;
 Edit Menu -&amp;gt; Mark All Upgrades... -&amp;gt; Default Upgrade&lt;br /&gt;
 Edit Menu -&amp;gt; Apply Marked Changes&lt;br /&gt;
&lt;br /&gt;
*To search for a package (equivalent to aptitude search package_name)&lt;br /&gt;
&lt;br /&gt;
 Edit Menu -&amp;gt; Search... Specify the package name&lt;br /&gt;
&lt;br /&gt;
*To install the selected package (equivalent to aptitude install package_name)&lt;br /&gt;
&lt;br /&gt;
 Select &amp;quot;package_name&amp;quot;&lt;br /&gt;
 Package Menu -&amp;gt; Mark for Installation&lt;br /&gt;
 Edit Menu -&amp;gt; Apply Marked Changes&lt;br /&gt;
&lt;br /&gt;
*To remove installed package (equivalent to aptitude remove package_name)&lt;br /&gt;
&lt;br /&gt;
 Select &amp;quot;package_name&amp;quot;&lt;br /&gt;
 Package Menu -&amp;gt; Mark for Removal&lt;br /&gt;
 Edit Menu -&amp;gt; Apply Marked Changes&lt;br /&gt;
&lt;br /&gt;
== What packages do the extra repositories provide ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to apt-get the easy way (Synaptic)]]&lt;br /&gt;
&lt;br /&gt;
* The [http://packages.freecontrib.org/ubuntu/plf/ PLF repository] provides&lt;br /&gt;
*# DVD playback support (libdvdcss2)&lt;br /&gt;
*# Skype&lt;br /&gt;
*# Sun Java SDK (Software Development Kit) and JRE (Java Runtime Environment)&lt;br /&gt;
*# Opera Web browser&lt;br /&gt;
*# RealPlayer 10&lt;br /&gt;
*# Win32 binary multimedia codecs&lt;br /&gt;
&lt;br /&gt;
== How to install/uninstall .deb files ==&lt;br /&gt;
&lt;br /&gt;
*To install .deb file&lt;br /&gt;
&lt;br /&gt;
 sudo dpkg -i package_file.deb&lt;br /&gt;
&lt;br /&gt;
*To uninstall .deb file&lt;br /&gt;
&lt;br /&gt;
 sudo dpkg -r package_name&lt;br /&gt;
&lt;br /&gt;
== How to find out which version of a package I have installed ==&lt;br /&gt;
&lt;br /&gt;
 dpkg -l packagename&lt;br /&gt;
&lt;br /&gt;
== How to convert .rpm files to .deb files ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install .rpm to .deb Converter (Alien)]]&lt;br /&gt;
&lt;br /&gt;
 sudo alien -d package_file.rpm&lt;br /&gt;
&lt;br /&gt;
== How to compile .deb files from source ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add extra repositories]]&lt;br /&gt;
*There are various programs available to help automate the process of create .deb files from source.  For more information, see the links at the end of this section.  A basic well tested method is described here.&lt;br /&gt;
*Install the necessary software to build the source (build-essential may be all that is necessary, though there may be other dependencies) and checkinstall (which creates deb files).&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install checkinstall build-essential&lt;br /&gt;
&lt;br /&gt;
*In the directory where you have extracted the source, after you have run ''./configure'' and ''make'' you can create a .deb file and install it with either of the following commands.  The second ''-D'' option creates a .deb file in the directory that you can share with others or install without needing the source.&lt;br /&gt;
&lt;br /&gt;
 sudo checkinstall&lt;br /&gt;
or&lt;br /&gt;
 sudo checkinstall -D&lt;br /&gt;
&lt;br /&gt;
*For more info go to [http://asic-linux.com.mx/~izto/checkinstall/index.php CheckInstall home page] and the [http://www.psychocats.net/ubuntu/installingsoftware.php Installing software on Ubuntu page].  [https://wiki.ubuntu.com/AutoDeb Autodeb] uses a modified version of [https://wiki.ubuntu.com/AutoApt AutoApt] to complete the entire process above including extraction from the .tar.gz file, however it is still in an early stage of development.&lt;br /&gt;
&lt;br /&gt;
== How to rename all files in directory at once ==&lt;br /&gt;
&lt;br /&gt;
*To install &amp;quot;mvb&amp;quot; file name renamer&lt;br /&gt;
&lt;br /&gt;
 wget -c http://easylinux.info/uploads/mvb_1.6.tgz&lt;br /&gt;
 sudo tar zxvf mvb_1.6.tgz -C /usr/share/&lt;br /&gt;
 sudo chown -R root:root /usr/share/mvb_1.6/&lt;br /&gt;
 sudo ln -fs /usr/share/mvb_1.6/mvb /usr/bin/mvb&lt;br /&gt;
 &lt;br /&gt;
*To rename all files in directory at once&lt;br /&gt;
&lt;br /&gt;
 mvb NEW_NAME&lt;br /&gt;
&lt;br /&gt;
== How to manipulate all image files in directory at once ==&lt;br /&gt;
&lt;br /&gt;
*To install bash batch image processing script&lt;br /&gt;
**Read [[#How to add extra repositories]]  &lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install imagemagick&lt;br /&gt;
 wget -c http://easylinux.info/uploads/bbips.0.3.2.sh&lt;br /&gt;
 sudo cp bbips.0.3.2.sh /usr/bin/bbips&lt;br /&gt;
 sudo chmod 755 /usr/bin/bbips&lt;br /&gt;
&lt;br /&gt;
*To manipulate all image files in directory at once&lt;br /&gt;
&lt;br /&gt;
 bbips&lt;br /&gt;
&lt;br /&gt;
== How to set System-wide Environment Variables ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp -p /etc/profile /etc/profile_backup&lt;br /&gt;
 gksudo gedit /etc/profile&lt;br /&gt;
&lt;br /&gt;
*Append the System-wide Environment Variables at the end of file&lt;br /&gt;
*Save the edited file&lt;br /&gt;
&lt;br /&gt;
== How to save &amp;quot;man&amp;quot; outputs into files ==&lt;br /&gt;
&lt;br /&gt;
 man command | col -b &amp;gt; file.txt&lt;br /&gt;
&lt;br /&gt;
== How to hide GRUB menu on boot-up ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup&lt;br /&gt;
 gksudo gedit /boot/grub/menu.lst&lt;br /&gt;
 &lt;br /&gt;
*Find this line&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 #hiddenmenu&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
*Replace with the following line&lt;br /&gt;
&lt;br /&gt;
 hiddenmenu&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
&lt;br /&gt;
== How to change the timeout seconds for GRUB menu on boot-up ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup&lt;br /&gt;
 gksudo gedit /boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
*Find this line&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 timeout     3&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
*Replace with the following line&lt;br /&gt;
&lt;br /&gt;
 timeout     X_seconds&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
&lt;br /&gt;
== How to change default Operating System boot-up for GRUB menu ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup&lt;br /&gt;
 gksudo gedit /boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
*Find this line&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 default     0&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
*Replace with the following line&lt;br /&gt;
&lt;br /&gt;
 default     X_sequence&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
&lt;br /&gt;
== How to display Splash Image for GRUB menu on boot-up ==&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
 wget -c http://easylinux.info/uploads/ubuntu.xpm.gz&lt;br /&gt;
 chmod 644 ubuntu.xpm.gz&lt;br /&gt;
 sudo cp ubuntu.xpm.gz /boot/grub/splash.xpm.gz&lt;br /&gt;
 sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup&lt;br /&gt;
 sudo update-grub&lt;br /&gt;
&lt;br /&gt;
== How to convert Wallpaper to Splash Image for GRUB menu ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
:''e.g. Assumed that wallpaper.png is the Wallpaper to be converted to Splash Image''&lt;br /&gt;
:''   splash.xpm.gz is the Splash Image for GRUB menu''&lt;br /&gt;
:''   ImageMagick is installed''&lt;br /&gt;
&lt;br /&gt;
 convert -resize 640x480 -colors 14 wallpaper.png splash.xpm &amp;amp;&amp;amp; gzip splash.xpm&lt;br /&gt;
 chmod 644 splash.xpm.gz&lt;br /&gt;
 sudo cp splash.xpm.gz /boot/grub&lt;br /&gt;
 sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup&lt;br /&gt;
 sudo update-grub&lt;br /&gt;
&lt;br /&gt;
== How to display only one kernel on GRUB menu ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup-`date +%F`&lt;br /&gt;
 gksudo gedit /boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
* Find this line&lt;br /&gt;
 ...&lt;br /&gt;
 # howmany=all&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
* Replace with the following line&lt;br /&gt;
&lt;br /&gt;
 # howmany=1&lt;br /&gt;
&lt;br /&gt;
Where 1 means to keep the last kernel, 2 to keep the last 2 kernels,&lt;br /&gt;
etc. Do not delete the # symbol. The menu will be updated once a new&lt;br /&gt;
kernel will be updated by the system, not before.&lt;br /&gt;
&lt;br /&gt;
* Save the edited file&lt;br /&gt;
&lt;br /&gt;
== How to force GDM to system beep when login screen ready ==&lt;br /&gt;
&lt;br /&gt;
*This is useful on computers where headphones are usually plugged in, allowing them to utilize the speakers for this attention-getting task.&lt;br /&gt;
&lt;br /&gt;
 echo foo &amp;gt;&amp;gt; ~/foo.wav&lt;br /&gt;
&lt;br /&gt;
*System -&amp;gt; Administration -&amp;gt; Login Window -&amp;gt; Accessibility&lt;br /&gt;
Now make sure the &amp;quot;Login Screen Ready&amp;quot; check mark is checked.  Click on the folder icon and navigate to your home folder and select &amp;quot;foo.wav&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
 rm foo.wav&lt;br /&gt;
&lt;br /&gt;
The drop down menu should now say &amp;quot;(None)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== How to temporary skip boot-up services ==&lt;br /&gt;
&lt;br /&gt;
 Press 'Ctrl + C'&lt;br /&gt;
&lt;br /&gt;
== Clean up Ubuntu GNU/Linux System ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.ubuntugeek.com/cleaning-up-all-unnecessary-junk-files-in-ubuntu.html Clean up Ubuntu GNU/Linux System] - This is very Detailed step by step procedure how to Clean up Ubuntu GNU/Linux System with different tools.&lt;br /&gt;
&lt;br /&gt;
== How to permanently disable/enable boot-up services ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install Boot-Up Manager (BUM)]]&lt;br /&gt;
&lt;br /&gt;
== How to clean /tmp/ folder contents on shutdown ==&lt;br /&gt;
&lt;br /&gt;
 sudo cp /etc/init.d/sysklogd /etc/init.d/sysklogd_backup&lt;br /&gt;
 gksudo gedit /etc/init.d/sysklogd&lt;br /&gt;
&lt;br /&gt;
*Find this section&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
  stop)&lt;br /&gt;
   log_begin_msg &amp;quot;Stopping system log daemon...&amp;quot;&lt;br /&gt;
   start-stop-daemon --stop --quiet --oknodo --exec $binpath --pidfile $pidfile&lt;br /&gt;
   log_end_msg $?&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
*Add the following line below it&lt;br /&gt;
&lt;br /&gt;
   rm -fr /tmp/* /tmp/.??*&lt;br /&gt;
&lt;br /&gt;
*Save the edited file &lt;br /&gt;
&lt;br /&gt;
== How to scroll up and down to view previous outputs in Console mode ==&lt;br /&gt;
&lt;br /&gt;
*To scroll up to view previously outputs&lt;br /&gt;
&lt;br /&gt;
 Press 'Shift + Page Up'&lt;br /&gt;
&lt;br /&gt;
*To scroll down to view previously outputs&lt;br /&gt;
&lt;br /&gt;
 Press 'Shift + Page Down'&lt;br /&gt;
&lt;br /&gt;
== How to find out which version of Ubuntu I am using ==&lt;br /&gt;
&lt;br /&gt;
 cat /etc/issue&lt;br /&gt;
&lt;br /&gt;
== How to set up (automatic) background/wallpaper-changer application for GNOME ==&lt;br /&gt;
&lt;br /&gt;
*To install the script into a different location than your home directory, replace &amp;quot;~&amp;quot; with your path&lt;br /&gt;
 cd ~&lt;br /&gt;
 wget http://members.chello.at/horst.jens/files/wallpaperchanger.py&lt;br /&gt;
 chmod +x wallpaperchanger.py&lt;br /&gt;
 ~/wallpaperchanger.py&lt;br /&gt;
 gedit ~/.wallpaperchanger/wallpaperchangerconfig.py&lt;br /&gt;
&lt;br /&gt;
*Edit all the lines not beginning with an &amp;quot;#&amp;quot; according to your needs. Save the file and close gedit.&lt;br /&gt;
&lt;br /&gt;
*To create an menu entry for wallpaperchanger:&lt;br /&gt;
 Click the menuitems: Applications -&amp;gt; Accessoires -&amp;gt; Alacarte Menu Editor -&amp;gt; File -&amp;gt; New Entry:&lt;br /&gt;
 Name: wallpaperchanger&lt;br /&gt;
 command: ~/wallpaperchanger.py&lt;br /&gt;
 &lt;br /&gt;
*To change desktop background every time you reboot your computer:&lt;br /&gt;
 Click the menuitems: System -&amp;gt; Preferences -&amp;gt; Session -&amp;gt; Startup Programs -&amp;gt; Add:&lt;br /&gt;
 ~/wallpaperchanger.py&lt;br /&gt;
&lt;br /&gt;
== How to set up automatic background change (KDE) ==&lt;br /&gt;
&lt;br /&gt;
*Go to K-menu -&amp;gt; System Settings -&amp;gt; Desktop -&amp;gt; Background&lt;br /&gt;
*Choose Slide Show &lt;br /&gt;
*Press Setup... &lt;br /&gt;
*Press Add... to add pictures you wish to see as desktop background&lt;br /&gt;
*Set 'Change picture after' to desired picture rotation interval.&lt;br /&gt;
*Press 'OK'&lt;br /&gt;
&lt;br /&gt;
== How to add keyboard layouts for other languages ==&lt;br /&gt;
&lt;br /&gt;
*Go to System -&amp;gt; Preferences -&amp;gt; Keyboard&lt;br /&gt;
*Choose Layouts&lt;br /&gt;
*Press Add... to add the secondary keyboard layout. It is simpler to have two layouts; the maximum is currently four for Xorg.&lt;br /&gt;
*Choose Layout Options&lt;br /&gt;
*Expand option Group Shift/Lock behaviour&lt;br /&gt;
*Choose the key combination that enables you to switch between keyboard layouts. The default is by pressing both Alt keys at the same time. A common alternative is to use Alt+Shift.&lt;br /&gt;
*Press Close.&lt;br /&gt;
&lt;br /&gt;
See [[#How to add the Keyboard (Layout) Indicator applet]] to add the Keyboard Indicator applet.&lt;br /&gt;
&lt;br /&gt;
== How to add keyboard layouts toggle for other languages (Xfce) ==&lt;br /&gt;
*use &amp;lt;tt&amp;gt;*.lst&amp;lt;/tt&amp;gt; files on &amp;lt;tt&amp;gt;/etc/X11/xkb/rules&amp;lt;/tt&amp;gt; to select ''2nd_laguage_code'' &lt;br /&gt;
&lt;br /&gt;
 setxkbmap -option grp:switch,grp:alt_shift_toggle,grp_led:scroll us,''2nd_laguage_code''&lt;br /&gt;
&lt;br /&gt;
*you can add it to a startup file, which will be set to be executed on startup, with the following lines (remember to 'chmod +x' the file):&lt;br /&gt;
&lt;br /&gt;
 #!/bin/tcsh&lt;br /&gt;
 setxkbmap -option grp:switch,grp:alt_shift_toggle,grp_led:scroll us,il&lt;br /&gt;
&lt;br /&gt;
== How to add the Keyboard (Layout) Indicator applet ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add keyboard layouts for other languages]]&lt;br /&gt;
&lt;br /&gt;
*Right-click on empty space on the top panel so that you see the pop-up menu.&lt;br /&gt;
*Click Add to Panel...&lt;br /&gt;
*Choose Keyboard Indicator (it is under the Utilities section, at the end)&lt;br /&gt;
&lt;br /&gt;
The Keyboard Indicator applet appears on the panel. The default language should be USA for U.S. English. You can either right-click on this applet for more options or see above on how to configure.&lt;br /&gt;
&lt;br /&gt;
== How to type extended characters ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add keyboard layouts for other languages]]&lt;br /&gt;
*Read [[#How to add the Keyboard (Layout) Indicator applet]]&lt;br /&gt;
&lt;br /&gt;
*Add the keyboard layout US English International (with dead keys)&lt;br /&gt;
*Make US English International (with dead keys) the default keyboard layout.&lt;br /&gt;
&lt;br /&gt;
The key marked ['&amp;quot;] is now a dead key. When you press it, nothing happens. However if you press another letter key immediately afterwards, the letter appears with an accent.&lt;br /&gt;
* ' + a = á&lt;br /&gt;
* ' + e = é&lt;br /&gt;
* and so on for i-í, o-ó, y-ý, c-ć, z-ź, n-ń, l-ĺ, u-ú, r-ŕ&lt;br /&gt;
&lt;br /&gt;
* &amp;quot; + a = ä&lt;br /&gt;
* &amp;quot; + e = ë&lt;br /&gt;
* and so on for y-ÿ, u-ü, i-ï, o-ö&lt;br /&gt;
&lt;br /&gt;
Similarly, ` and a letter generates à, è, ù, ì, ò.&lt;br /&gt;
Similarly, ~ and a letter generates ã, ũ, ĩ, õ, ñ.&lt;br /&gt;
&lt;br /&gt;
To type ' and &amp;quot;, press RightAlt+' and RightAlt+&amp;quot; respectively.&lt;br /&gt;
To type ' and &amp;quot;, you may also press '+&amp;lt;space&amp;gt; and &amp;quot;+&amp;lt;space&amp;gt; respectively.&lt;br /&gt;
&lt;br /&gt;
There are more characters available by keeping RightAlt pressed and typing a character. Therefore,&lt;br /&gt;
* RightAlt+q = ä&lt;br /&gt;
* RightAlt+w = å&lt;br /&gt;
* RightAlt+e = é&lt;br /&gt;
* RightAlt+r = ®&lt;br /&gt;
* RightAlt+t = þ&lt;br /&gt;
* RightAlt+y = ü&lt;br /&gt;
* RightAlt+u = ú&lt;br /&gt;
* RightAlt+i = í&lt;br /&gt;
* RightAlt+o = ó&lt;br /&gt;
* RightAlt+p = ö&lt;br /&gt;
* RightAlt+[ and ] for « and » respectively.&lt;br /&gt;
* RightAlt+a = á&lt;br /&gt;
* RightAlt+s = ß&lt;br /&gt;
* RightAlt+d = ð&lt;br /&gt;
* RightAlt+l = ø&lt;br /&gt;
* RightAlt+; = ¶&lt;br /&gt;
* RightAlt+: = °&lt;br /&gt;
* RightAlt+z = æ&lt;br /&gt;
* RightAlt+c = ©&lt;br /&gt;
* RightAlt+n = ñ&lt;br /&gt;
* RightAlt+m = µ&lt;br /&gt;
* RightAlt+, = ç&lt;br /&gt;
* RightAlt+/ = ¿&lt;br /&gt;
&lt;br /&gt;
* RightAlt+1 = ¡&lt;br /&gt;
* RightAlt+2 = ²&lt;br /&gt;
* RightAlt+3 = ³&lt;br /&gt;
* RightAlt+4 = ¤&lt;br /&gt;
* RightAlt+5 = €&lt;br /&gt;
* RightAlt+6 = ¼&lt;br /&gt;
* RightAlt+7 = ½&lt;br /&gt;
* RightAlt+8 = ¾&lt;br /&gt;
* RightAlt+9 = ‘&lt;br /&gt;
* RightAlt+0 = ’&lt;br /&gt;
* RightAlt+- = ¥&lt;br /&gt;
* RightAlt+= = ×&lt;br /&gt;
&lt;br /&gt;
* RightAlt+! = ¹&lt;br /&gt;
* RightAlt+@, then o = ő (and Ő).&lt;br /&gt;
* RightAlt+#, then a = ā (and Ā). Similarly for ēĒ, ūŪ, īĪ, ōŌ.&lt;br /&gt;
* RightAlt+$ = £&lt;br /&gt;
* RightAlt+% = &lt;br /&gt;
* RightAlt+^ = &lt;br /&gt;
* RightAlt+&amp;amp; = &lt;br /&gt;
* RightAlt+*, then a = ą (and Ą). Similarly for ęĘ, įĮ.&lt;br /&gt;
* RightAlt+(, then a = ă (and Ă)&lt;br /&gt;
* RightAlt+(, then g = ğ (and Ğ)&lt;br /&gt;
* RightAlt+), then a = å (and Å)&lt;br /&gt;
* RightAlt+_ = &lt;br /&gt;
* RightAlt++ = ÷&lt;br /&gt;
&lt;br /&gt;
== How to set the Compose key to type special characters ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add keyboard layouts for other languages]]&lt;br /&gt;
*Read [[#How to add the Keyboard (Layout) Indicator applet]]&lt;br /&gt;
&lt;br /&gt;
*Click '''System''', '''Preferences''', '''Keyboard'''.&lt;br /&gt;
*Under '''Layout Options''', expand on '''Compose key position'''.&lt;br /&gt;
*Choose '''Right-Win key is compose''', click Close.&lt;br /&gt;
&lt;br /&gt;
Now you can type extended characters using the RightWin key (next to AltGr), according to [http://cvs.gnome.org/viewcvs/gtk%2B/gtk/gtkimcontextsimple.c?view=markup this keyboard settings file].&lt;br /&gt;
Specifically, the lines that start with ''GDK_Multi_key'' are those that we can use here. The '''Compose''' key is actually '''GDK_Multi_key'''.&lt;br /&gt;
&lt;br /&gt;
Some examples,&lt;br /&gt;
*RightWin + C + =  produces  €&lt;br /&gt;
*RightWin + = + C  produces  €&lt;br /&gt;
*RightWin + C + O  produces  ©&lt;br /&gt;
*RightWin + O + C  produces  ©&lt;br /&gt;
*RightWin + a + '  produces  á&lt;br /&gt;
*RightWin + a + &amp;quot;  produces  ä&lt;br /&gt;
*RightWin + a + `  produces  à&lt;br /&gt;
*RightWin + a + ~  produces  ã&lt;br /&gt;
*RightWin + a + *  produces  å&lt;br /&gt;
*RightWin + a + ^  produces  â&lt;br /&gt;
*RightWin + a + &amp;gt;  produces  â&lt;br /&gt;
*RightWin + a + ,  produces  ą&lt;br /&gt;
*RightWin + e + -  produces  ē&lt;br /&gt;
*RightWin + S + 1  produces  ¹&lt;br /&gt;
*RightWin + S + 2  produces  ²&lt;br /&gt;
*RightWin + S + 3  produces  ³&lt;br /&gt;
&lt;br /&gt;
== How to install ubuntu-title font used in Ubuntu logo ==&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install ttf-ubuntu-title&lt;br /&gt;
Now you can use this font in your favorite applications&lt;br /&gt;
&lt;br /&gt;
== How to associate Adobe Reader with files in Nautilus ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install PDF Reader (Adobe Reader) with Plug-in for Mozilla Firefox]]&lt;br /&gt;
*Open Nautilus (Places -&amp;gt; Desktop)&lt;br /&gt;
*Browse to a .pdf file&lt;br /&gt;
*Right-click the .pdf file, select '''Properties''', go to the '''Open With''' tab, choose Adobe Reader.&lt;br /&gt;
&lt;br /&gt;
Now when you double-click on a .pdf file, it will be opened with Adobe Reader.&lt;br /&gt;
&lt;br /&gt;
== How to print from Adobe Reader ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install PDF Reader (Adobe Reader) with Plug-in for Mozilla Firefox]]&lt;br /&gt;
*Read [[#How to add a printer]]&lt;br /&gt;
*Applications -&amp;gt; Office -&amp;gt; Adobe Reader&lt;br /&gt;
*File -&amp;gt; Print&lt;br /&gt;
*In the '''Print Command''' box, append '''-d printername'''. For example, if your printer was named FS-1010, the Print Command would read:&lt;br /&gt;
&lt;br /&gt;
 /usr/bin/lp -d FS-1010&lt;br /&gt;
&lt;br /&gt;
== How to pull apart and combine pdf files ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to add extra repositories]]&lt;br /&gt;
 sudo aptitude install pdftk&lt;br /&gt;
 cd&lt;br /&gt;
 mkdir bin&lt;br /&gt;
 cd bin&lt;br /&gt;
 gedit pdftk_burst&lt;br /&gt;
* add the following text to pdftk_burst:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 /usr/bin/pdftk &amp;quot;$1&amp;quot; burst&lt;br /&gt;
 rm doc_data.txt&lt;br /&gt;
* save and close pdftk_burst&lt;br /&gt;
 gedit pdftk_cat&lt;br /&gt;
* add the following text to pdftk_cat:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 outfile=&amp;quot;00out.pdf&amp;quot;&lt;br /&gt;
 if [ -f $outfile ] ; then&lt;br /&gt;
     rm -f $outfile&lt;br /&gt;
 fi&lt;br /&gt;
 /usr/bin/pdftk *.pdf cat output $outfile&lt;br /&gt;
* save and close pdftk_cat&lt;br /&gt;
 chmod u+x pdftk_burst pdftk_cat&lt;br /&gt;
* open Nautilus (Places -&amp;gt; Desktop) and browse to a .pdf file&lt;br /&gt;
* right-click the .pdf file, select '''Properties''', go to the '''Open With''' tab, click '''Add''', click '''Use a Custom Command''', click '''Browse''', browse to '''pdftk_burst'''. Do the same with '''pdftk_cat'''.&lt;br /&gt;
&lt;br /&gt;
Now, when you right-click on a .pdf file, you'll get two extra options:&lt;br /&gt;
* '''Open With -&amp;gt; pdftk_burst''' which will convert a 30 page pdf file to 30 x 1 page pdf files&lt;br /&gt;
* '''Open With -&amp;gt; pdftk_cat''' which will join together all the pdf files in the same directory, and create a file called '''00out.pdf'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' this won't work with pdfs with any type of protection - read '''man pdftk''' for more command line options.&lt;br /&gt;
&lt;br /&gt;
== How to remove jedit when Synaptic package manager fails after install ==&lt;br /&gt;
&lt;br /&gt;
*Read [[#How to install jedit]]&lt;br /&gt;
 sudo dpkg --remove --force-depends --force-remove-reinstreq jedit&lt;br /&gt;
&lt;br /&gt;
Now, you can use your Synaptic package manager again.&lt;br /&gt;
&lt;br /&gt;
== How to compile a kernel the Ubuntu Way ==&lt;br /&gt;
&lt;br /&gt;
http://www.howtoforge.com/kernel_compilation_ubuntu&lt;br /&gt;
&lt;br /&gt;
== System requests (What to do if your system is unresponsive) ==&lt;br /&gt;
&lt;br /&gt;
You can &amp;quot;talk&amp;quot; to the kernel directly via system requests:&lt;br /&gt;
Press &amp;quot;ALT&amp;quot; + &amp;quot;sysreq-key&amp;quot; + &amp;quot;one of the keys&amp;quot; listed below (The sysreq-key is also known as the 'print screen' key):&lt;br /&gt;
&lt;br /&gt;
(Taken from /usr/src/linux/Documentation/sysrq.txt)&lt;br /&gt;
&lt;br /&gt;
*'r'     - Turns off keyboard raw mode and sets it to XLATE.&lt;br /&gt;
*'k'     - Secure Access Key (SAK) Kills all programs on the current virtual console.&lt;br /&gt;
*'b'     - Will immediately reboot the system without syncing or unmounting your disks.&lt;br /&gt;
*'c'	- Will perform a kexec reboot in order to take a crashdump.&lt;br /&gt;
*'o'     - Will shut your system off (if configured and supported).&lt;br /&gt;
*'s'     - Will attempt to sync all mounted filesystems.&lt;br /&gt;
*'u'     - Will attempt to remount all mounted filesystems read-only.&lt;br /&gt;
*'p'     - Will dump the current registers and flags to your console.&lt;br /&gt;
*'t'     - Will dump a list of current tasks and their information to your console.&lt;br /&gt;
*'m'     - Will dump current memory info to your console.&lt;br /&gt;
*'v'	- Dumps Voyager SMP processor info to your console.&lt;br /&gt;
*'0'-'9' - Sets the console log level, controlling which kernel messages will be printed to your console. ('0', for example would make it so that only emergency messages like PANICs or OOPSes would make it to your console.)&lt;br /&gt;
*'f'	- Will call oom_kill to kill a memory hog process&lt;br /&gt;
*'e'     - Send a SIGTERM to all processes, except for init.&lt;br /&gt;
*'i'     - Send a SIGKILL to all processes, except for init.&lt;br /&gt;
*'l'     - Send a SIGKILL to all processes, INCLUDING init. (Your system will be non-functional after this.)&lt;br /&gt;
*'h'     - Will display help ( actually any other key than those listed above will display help. but 'h' is easy to remember :-)&lt;br /&gt;
&lt;br /&gt;
Note that you may have to enable system requests. Read &amp;quot;/usr/src/linux/Documentation/sysrq.txt&amp;quot; for details.&lt;br /&gt;
By default it is enabled though.&lt;br /&gt;
&lt;br /&gt;
== How to add locales to Ubuntu the command line way ==&lt;br /&gt;
&lt;br /&gt;
*Open up a terminal&lt;br /&gt;
&lt;br /&gt;
*Generate a /var/lib/locales/supported.d/local from /usr/share/i18n/SUPPORTED:&lt;br /&gt;
&amp;lt;pre&amp;gt;cat /usr/share/i18n/SUPPORTED | grep &amp;quot;en\|ru&amp;quot; &amp;gt; /var/lib/locales/supported.d/local&amp;lt;/pre&amp;gt;&lt;br /&gt;
This example shows all Russian (ru) and English (en) locales being chosen.  Look through /usr/share/i18n/SUPPORTED to find the ones for you, then put them in a list, replacing en\|ru and separating each language with a \| (backslash, bar).  If you only want one language, just put it in quotes.&lt;br /&gt;
&lt;br /&gt;
*Then regenerate all of the locales:&lt;br /&gt;
&amp;lt;pre&amp;gt;dpkg-reconfigure locales&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Then set your locale:&lt;br /&gt;
&amp;lt;pre&amp;gt;update-locale LANG=en_US.UTF-8&amp;lt;/pre&amp;gt;&lt;br /&gt;
In this step, make sure to choose the language and country that you would like your computer to think it is in.  Here, I choose en_US, the United States version of English.  Once again, look at your /var/lib/locales/supported.d/local or /usr/share/i18n/SUPPORTED for the one right for you.  You may also want to research locales, using the Internet.&lt;br /&gt;
&lt;br /&gt;
That was easy, now the command &amp;lt;pre&amp;gt;lxterm&amp;lt;/pre&amp;gt; will open up the Unicode version of xterm or your translated software will display things properly, like vim.&lt;br /&gt;
&lt;br /&gt;
== How to set default Terminal App window size ==&lt;br /&gt;
&lt;br /&gt;
The size for a gnome terminal session can be passed through the geometry parameter, specifying columns and rows like 80x40. The default geometry is 80x25.&lt;br /&gt;
&lt;br /&gt;
*First way is to add the following parameter to gnome-terminal launcher:&lt;br /&gt;
 --geometry 100x40&lt;br /&gt;
&lt;br /&gt;
*Other way is to change this parameter globaly for all gnome-terminal launcher's. Go to /usr/share/applications/gnome-terminal.desktop and edit the EXEC line like this:&lt;br /&gt;
 Exec=gnome-terminal --geometry=120x30&lt;br /&gt;
&lt;br /&gt;
== Using VI editor ==&lt;br /&gt;
&lt;br /&gt;
A few very simple tricks of using basic but strong unix editor called '''vi''' can be found [http://unixhelp.ed.ac.uk/vi/index.html here].&lt;br /&gt;
&lt;br /&gt;
== How to play DVD's ==&lt;br /&gt;
&lt;br /&gt;
*Step1: Make sure you enable the universe/multiverse [https://help.ubuntu.com/community/Re...dc17847d373096 repository].&lt;br /&gt;
&lt;br /&gt;
*Step2: Install the codecs:&lt;br /&gt;
 sudo aptitude install libdvdnav4 libdvdplay0 libdvdread3&lt;br /&gt;
 sudo /usr/share/doc/libdvdread3/examples/install-css.sh&lt;br /&gt;
&lt;br /&gt;
*Step3: Use totem-xine instead of the default &amp;quot;totem-gstreamer&amp;quot;:&lt;br /&gt;
 sudo aptitude remove --purge totem totem-gstreamer&lt;br /&gt;
 sudo aptitude install totem-xine&lt;br /&gt;
&lt;br /&gt;
== How to install Gmail Notifier alternative (CheckGmail) ==&lt;br /&gt;
&lt;br /&gt;
*Add the following sources to the repository list:&lt;br /&gt;
 deb http://asher256-repository.tuxfamily.org dapper main dupdate french&lt;br /&gt;
 deb http://asher256-repository.tuxfamily.org ubuntu main dupdate french&lt;br /&gt;
&lt;br /&gt;
*Install the application&lt;br /&gt;
 sudo aptitude install checkgmail&lt;br /&gt;
&lt;br /&gt;
*Go to 'System/Preferences/Sessions/Startup Programs' and add the following path to start notifier automatically&lt;br /&gt;
[[Image:Sessions.png|left|thumb|200px|Sessions windows]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
[[Image:Add_startup_program.png|left|thumb|100px|Add startup program window]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
 /usr/bin/checkgmail&lt;br /&gt;
&lt;br /&gt;
After this the program will appear in your notification area.&lt;br /&gt;
&lt;br /&gt;
== How to emulate Mac OS X Spotlight (Deskbar) ==&lt;br /&gt;
&lt;br /&gt;
*Right click to your panel and select 'Add to panel...'. Now choose 'Deskbar' applet and click 'Add' button.&lt;br /&gt;
*Install 'Beagle' packet to enable data indexing on your computer&lt;br /&gt;
&lt;br /&gt;
== How to make Ubuntu look like Mac OS X ==&lt;br /&gt;
&lt;br /&gt;
*Detailed instruction can be found [http://www.taimila.com/ubuntuosx.php here].&lt;br /&gt;
&lt;br /&gt;
== How to remove temporary files on shutdown ==&lt;br /&gt;
&lt;br /&gt;
*Backup sysklogd file&lt;br /&gt;
 sudo cp /etc/init.d/sysklogd /etc/init.d/sysklogd_backup&lt;br /&gt;
&lt;br /&gt;
*Edit sysklogd file&lt;br /&gt;
 gksudo gedit /etc/init.d/sysklogd&lt;br /&gt;
&lt;br /&gt;
*After the following lines...&lt;br /&gt;
 stop)&lt;br /&gt;
 log_begin_msg &amp;quot;Stopping system log daemon...&amp;quot;&lt;br /&gt;
 start-stop-daemon --stop --quiet --oknodo --exec $binpath --pidfile $pidfile&lt;br /&gt;
 log_end_msg $?&lt;br /&gt;
&lt;br /&gt;
*Add this line:&lt;br /&gt;
 rm -fr /tmp/* /tmp/.??*&lt;br /&gt;
&lt;br /&gt;
== How to tile windows in gnome ==&lt;br /&gt;
&lt;br /&gt;
First, download the [http://freshmeat.net/redir/wmtile/56365/url_deb/tile_0.7.1_i386.deb wmtile debian package here].&lt;br /&gt;
&lt;br /&gt;
If you are not running i386, the [http://www.unixdev.net/projects/tile project's homepage is here].&lt;br /&gt;
&lt;br /&gt;
*Double click the package and install it.  &lt;br /&gt;
*Login as root and browse to /usr/share/tile/&lt;br /&gt;
*Open the rc file in gedit&lt;br /&gt;
*Change the second option to read &amp;quot;multi-desktop netwm&amp;quot;&lt;br /&gt;
*Save the rc file&lt;br /&gt;
&lt;br /&gt;
Now, create a launcher:&lt;br /&gt;
&lt;br /&gt;
*Right-click on the gnome panel (the taskbar at the top of the screen) and choose &amp;quot;Add to Panel&amp;quot;&lt;br /&gt;
*Select &amp;quot;Custom Application Launcher&amp;quot; and fill in these values:&lt;br /&gt;
**Type: Application&lt;br /&gt;
**Name: Tile Windows Vertically&lt;br /&gt;
**Command: tile -v -w&lt;br /&gt;
*You can also select an icon to use with the launcher.  &lt;br /&gt;
*Click &amp;quot;OK&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Now open a couple windows and click your new launcher button to test it.  This works great with two or three windows, but it can get a bit strange with more.   &lt;br /&gt;
&lt;br /&gt;
If you want to create another launcher that tiles windows horizontally, just follow the same directions, but use the command &amp;quot;tile -h -w&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Backup Ubuntu System ==&lt;br /&gt;
If you want to backup your ubuntu system try one of the following backup tools&lt;br /&gt;
=== Sbackup ===&lt;br /&gt;
* [http://onlyubuntu.blogspot.com/2007/03/backup-and-restore-ubuntu-system-using.html Backup Using Sbackup] - Backup and Restore Ubuntu System Using Sbackup&lt;br /&gt;
=== Dar and Kdar ===&lt;br /&gt;
* [http://www.ubuntugeek.com/disk-archive-backup-and-restore-using-dar-and-kdardar-frontend.html Backup Using Dar and Kdar] - Backup and Restore Ubuntu System Using Dar and Kdar&lt;/div&gt;</description>
			<pubDate>Wed, 28 Jan 2009 22:43:09 GMT</pubDate>			<dc:creator>Keith Beef</dc:creator>			<comments>http://ubuntuguide.org/wiki/Ubuntu_talk:Edgy/TipsAndTricks</comments>		</item>
	</channel>
</rss>