<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.wiki.froelix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Froelix</id>
		<title>froelix.com - Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.wiki.froelix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Froelix"/>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Special:Contributions/Froelix"/>
		<updated>2026-04-05T21:58:17Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.1</generator>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=116</id>
		<title>Automounting Samba shares using autofs</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=116"/>
				<updated>2018-02-19T00:28:27Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added forcing cifs version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Instructions:'''&lt;br /&gt;
&lt;br /&gt;
1. Install autofs&lt;br /&gt;
 $ sudo apt-get install autofs&lt;br /&gt;
&lt;br /&gt;
2. Create map file with one mountpoint per line&lt;br /&gt;
 # echo &amp;quot;desiredmountpoint -fstype=cifs,rw,username=mysmbuser,password=mysmbpwd,uid=myuser,gid=mygroup ://hostname/directory&amp;quot; &amp;gt;&amp;gt; /etc/auto.somename&lt;br /&gt;
To force a specific CIFS/SMB version use the following syntax&lt;br /&gt;
 # echo &amp;quot;desiredmountpoint -fstype=cifs,rw,username=mysmbuser,password=mysmbpwd,uid=myuser,gid=mygroup,vers=2.0 ://hostname/directory&amp;quot; &amp;gt;&amp;gt; /etc/auto.somename&lt;br /&gt;
&lt;br /&gt;
3. Add mapp file to master map (default timeout is 15min/900sec)&lt;br /&gt;
 # echo &amp;quot;/mnt/anyexistingdir    /etc/auto.somename    --timeout 3600&amp;quot; &amp;gt;&amp;gt; /etc/auto.master&lt;br /&gt;
&lt;br /&gt;
4. Restart the autofs daemon and check if it is working&lt;br /&gt;
 $ sudo /etc/init.d/autofs restart&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
* There might be some troubles resolving the hostname of the Samba server. Using the IP address instead of the hostname helped in my case.&lt;br /&gt;
* For more details regarding autofs, see [https://help.ubuntu.com/community/Autofs here].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Setting_up_SSH_key_authentication_on_Linux/UNIX&amp;diff=115</id>
		<title>Setting up SSH key authentication on Linux/UNIX</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Setting_up_SSH_key_authentication_on_Linux/UNIX&amp;diff=115"/>
				<updated>2016-08-31T14:27:46Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added hint to ssh-copy-id&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Create the ''.ssh'' directory on the server (if it doesn't exist yet):'''&lt;br /&gt;
 $ mkdir ~/.ssh&lt;br /&gt;
 $ chmod 700 ~/.ssh&lt;br /&gt;
&lt;br /&gt;
'''On the client run the following commands:'''&amp;lt;BR&amp;gt;&lt;br /&gt;
(Don’t enter a passphrase unless you want to type it every time you want to use the key)&lt;br /&gt;
 $ ssh-keygen -t dsa&lt;br /&gt;
 $ chmod 700 ~/.ssh&lt;br /&gt;
 $ chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
 $ chmod 644 ~/.ssh/id_dsa.pub&lt;br /&gt;
 $ scp ~/.ssh/id_dsa.pub &amp;lt;server hostname&amp;gt;:~/.ssh/&lt;br /&gt;
&lt;br /&gt;
'''And on the server run these commands:'''&lt;br /&gt;
 $ cat ~/.ssh/id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
 $ chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
&lt;br /&gt;
'''Alternative to copy ssh id to server:'''&lt;br /&gt;
 $ ssh-copy-id -i .ssh/id_rsa.pub &amp;lt;user&amp;gt;@&amp;lt;server hostname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''More information (Solaris):'''&lt;br /&gt;
&lt;br /&gt;
[http://docs.oracle.com/cd/E19253-01/816-4557/sshuser-33/index.html http://docs.oracle.com/cd/E19253-01/816-4557/sshuser-33/index.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Setting_up_SSH_key_authentication_on_Linux/UNIX&amp;diff=114</id>
		<title>Setting up SSH key authentication on Linux/UNIX</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Setting_up_SSH_key_authentication_on_Linux/UNIX&amp;diff=114"/>
				<updated>2016-06-02T13:43:34Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added link for solaris&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Create the ''.ssh'' directory on the server (if it doesn't exist yet):'''&lt;br /&gt;
 $ mkdir ~/.ssh&lt;br /&gt;
 $ chmod 700 ~/.ssh&lt;br /&gt;
&lt;br /&gt;
'''On the client run the following commands:'''&amp;lt;BR&amp;gt;&lt;br /&gt;
(Don’t enter a passphrase unless you want to type it every time you want to use the key)&lt;br /&gt;
 $ ssh-keygen -t dsa&lt;br /&gt;
 $ chmod 700 ~/.ssh&lt;br /&gt;
 $ chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
 $ chmod 644 ~/.ssh/id_dsa.pub&lt;br /&gt;
 $ scp ~/.ssh/id_dsa.pub &amp;lt;server hostname&amp;gt;:~/.ssh/&lt;br /&gt;
&lt;br /&gt;
'''And on the server run these commands:'''&lt;br /&gt;
 $ cat ~/.ssh/id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
 $ chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
&lt;br /&gt;
'''More information (Solaris):'''&lt;br /&gt;
&lt;br /&gt;
[http://docs.oracle.com/cd/E19253-01/816-4557/sshuser-33/index.html http://docs.oracle.com/cd/E19253-01/816-4557/sshuser-33/index.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=SSL_error_with_Citrix_ICA_client_on_Linux&amp;diff=113</id>
		<title>SSL error with Citrix ICA client on Linux</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=SSL_error_with_Citrix_ICA_client_on_Linux&amp;diff=113"/>
				<updated>2016-05-12T20:34:40Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* The Citrix ICA client does not connect to your corporate network.&lt;br /&gt;
* After launching the client it displays the following error message:&lt;br /&gt;
 You have chosen not to trust “&amp;lt;CA which is used by your corporate network&amp;gt;”, the issuer of the server’s security certificate (SSL error 61).&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* The Linux version of the Citrix ICA client brings only a small set of root CAs which are trusted.&lt;br /&gt;
* Add the additional CAs which are required by copying the certificates to the following directory:&lt;br /&gt;
 sudo cp &amp;lt;AnyCA.crt&amp;gt; /opt/Citrix/ICAClient/keystore/cacerts/&lt;br /&gt;
* Alternatively create symlink to the system ca-certificates:&lt;br /&gt;
 sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts/&lt;br /&gt;
* Finally run the following command to rehash the certificates and you should be fine...&lt;br /&gt;
 sudo c_rehash /opt/Citrix/ICAClient/keystore/cacerts/&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* For more details, see [https://help.ubuntu.com/community/CitrixICAClientHowTo Ubuntu Help].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=112</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=112"/>
				<updated>2016-05-12T20:23:06Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: adde link to citrix error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
* [[Adding additional menu to Gnome 3 panel with custom application launchers]]&lt;br /&gt;
* [[Application missing in ''Select Application'' dialog]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
* [[Remapping mouse buttons]]&lt;br /&gt;
* [[Automounting Samba shares using autofs]]&lt;br /&gt;
* [[SSL error with Citrix ICA client on Linux]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
=== Roundcube ===&lt;br /&gt;
&lt;br /&gt;
* [[MyRoundcube Calendar Plugin external calendars issues (CalDAV)]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=111</id>
		<title>Automounting Samba shares using autofs</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=111"/>
				<updated>2016-03-20T12:47:41Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added timeout parameter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Instructions:'''&lt;br /&gt;
&lt;br /&gt;
1. Install autofs&lt;br /&gt;
 $ sudo apt-get install autofs&lt;br /&gt;
&lt;br /&gt;
2. Create map file with one mountpoint per line&lt;br /&gt;
 # echo &amp;quot;desiredmountpoint -fstype=cifs,rw,username=mysmbuser,password=mysmbpwd,uid=myuser,gid=mygroup ://hostname/directory&amp;quot; &amp;gt;&amp;gt; /etc/auto.somename&lt;br /&gt;
&lt;br /&gt;
3. Add mapp file to master map (default timeout is 15min/900sec)&lt;br /&gt;
 # echo &amp;quot;/mnt/anyexistingdir    /etc/auto.somename    --timeout 3600&amp;quot; &amp;gt;&amp;gt; /etc/auto.master&lt;br /&gt;
&lt;br /&gt;
4. Restart the autofs daemon and check if it is working&lt;br /&gt;
 $ sudo /etc/init.d/autofs restart&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
* There might be some troubles resolving the hostname of the Samba server. Using the IP address instead of the hostname helped in my case.&lt;br /&gt;
* For more details regarding autofs, see [https://help.ubuntu.com/community/Autofs here].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Application_missing_in_%27%27Select_Application%27%27_dialog&amp;diff=110</id>
		<title>Application missing in ''Select Application'' dialog</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Application_missing_in_%27%27Select_Application%27%27_dialog&amp;diff=110"/>
				<updated>2015-12-04T23:20:11Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
&lt;br /&gt;
You would like to open a file of a specific mimetype with a specific application and the ''Select Application'' dialog box (''Open with'' &amp;gt; ''Other application...'') does not show the desired application. Since Gnome 3 it is not possible anymore to manually enter a startup command.&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
&lt;br /&gt;
Check that a correct ''.desktop'' file for the application exists. This means the line ''Exec=...'' has to include ''%f''.&lt;br /&gt;
If this is not the case, copy the file from ''/usr/share/applications'' to ''~/.local/share/applications'' and add '' %f'' to the end of the ''Exec=...'' line.&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=109</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=109"/>
				<updated>2015-12-04T23:09:05Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added missing application topic&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
* [[Adding additional menu to Gnome 3 panel with custom application launchers]]&lt;br /&gt;
* [[Application missing in ''Select Application'' dialog]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
* [[Remapping mouse buttons]]&lt;br /&gt;
* [[Automounting Samba shares using autofs]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
=== Roundcube ===&lt;br /&gt;
&lt;br /&gt;
* [[MyRoundcube Calendar Plugin external calendars issues (CalDAV)]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=108</id>
		<title>Automounting Samba shares using autofs</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=108"/>
				<updated>2015-12-04T13:22:23Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added notes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Instructions:'''&lt;br /&gt;
&lt;br /&gt;
1. Install autofs&lt;br /&gt;
 $ sudo apt-get install autofs&lt;br /&gt;
&lt;br /&gt;
2. Create map file with one mountpoint per line&lt;br /&gt;
 # echo &amp;quot;desiredmountpoint -fstype=cifs,rw,username=mysmbuser,password=mysmbpwd,uid=myuser,gid=mygroup ://hostname/directory&amp;quot; &amp;gt;&amp;gt; /etc/auto.somename&lt;br /&gt;
&lt;br /&gt;
3. Add mapp file to master map&lt;br /&gt;
 # echo &amp;quot;/mnt/anyexistingdir    /etc/auto.somename&amp;quot; &amp;gt;&amp;gt; /etc/auto.master&lt;br /&gt;
&lt;br /&gt;
4. Restart the autofs daemon and check if it is working&lt;br /&gt;
 $ sudo /etc/init.d/autofs restart&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
* There might be some troubles resolving the hostname of the Samba server. Using the IP address instead of the hostname helped in my case.&lt;br /&gt;
* For more details regarding autofs, see [https://help.ubuntu.com/community/Autofs here].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=107</id>
		<title>Automounting Samba shares using autofs</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Automounting_Samba_shares_using_autofs&amp;diff=107"/>
				<updated>2015-12-04T11:28:18Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Install autofs&lt;br /&gt;
 $ sudo apt-get install autofs&lt;br /&gt;
&lt;br /&gt;
Create map file with one mountpoint per line&lt;br /&gt;
 # echo &amp;quot;desiredmountpoint -fstype=cifs,rw,username=mysmbuser,password=mysmbpwd,uid=myuser,gid=mygroup ://hostname/directory&amp;quot; &amp;gt;&amp;gt; /etc/auto.somename&lt;br /&gt;
&lt;br /&gt;
Add mapp file to master map&lt;br /&gt;
 # echo &amp;quot;/mnt/anyexistingdir    /etc/auto.somename&amp;quot; &amp;gt;&amp;gt; /etc/auto.master&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=106</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=106"/>
				<updated>2015-12-04T10:38:26Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: /* General */ adde link to autofs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
* [[Adding additional menu to Gnome 3 panel with custom application launchers]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
* [[Remapping mouse buttons]]&lt;br /&gt;
* [[Automounting Samba shares using autofs]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
=== Roundcube ===&lt;br /&gt;
&lt;br /&gt;
* [[MyRoundcube Calendar Plugin external calendars issues (CalDAV)]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Adding_additional_menu_to_Gnome_3_panel_with_custom_application_launchers&amp;diff=105</id>
		<title>Adding additional menu to Gnome 3 panel with custom application launchers</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Adding_additional_menu_to_Gnome_3_panel_with_custom_application_launchers&amp;diff=105"/>
				<updated>2015-11-27T21:29:19Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added application launcher for onsceen keyboard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* I want to add a customized menu to the Gnome 3 panel.&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Install the [https://extensions.gnome.org/extension/37/quicklaunch/ QuickLaunch] Gnome extension&lt;br /&gt;
* Create or copy the desired application launchers (''.desktop''-files) to the directory ''~/.local/share/gnome-shell/quicklaunch/''&lt;br /&gt;
* Following you can find some exemplary application launchers:&lt;br /&gt;
 [Desktop Entry]&lt;br /&gt;
 Type=Application&lt;br /&gt;
 Encoding=UTF-8&lt;br /&gt;
 Name=portrait&lt;br /&gt;
 Comment=Screen orientation portrait&lt;br /&gt;
 Icon=/usr/share/icons/gnome/scalable/devices/computer-apple-ipad-symbolic.svg&lt;br /&gt;
 Exec=xrandr -o left&lt;br /&gt;
 Terminal=false&lt;br /&gt;
 Categories=System;Screen;Rotation&lt;br /&gt;
&lt;br /&gt;
 [Desktop Entry]&lt;br /&gt;
 Type=Application&lt;br /&gt;
 Encoding=UTF-8&lt;br /&gt;
 Name=landscape&lt;br /&gt;
 Comment=Screen orientation landscape&lt;br /&gt;
 Icon=/usr/share/icons/gnome/scalable/devices/video-display-symbolic.svg&lt;br /&gt;
 Exec=xrandr -o normal&lt;br /&gt;
 Terminal=false&lt;br /&gt;
 Categories=System;Screen;Rotation&lt;br /&gt;
&lt;br /&gt;
 [Desktop Entry]&lt;br /&gt;
 Type=Application&lt;br /&gt;
 Encoding=UTF-8&lt;br /&gt;
 Name=onboard&lt;br /&gt;
 Comment=Show onscreen keyboard&lt;br /&gt;
 Icon=/usr/share/icons/gnome/scalable/devices/input-keyboard-symbolic.svg&lt;br /&gt;
 Exec=onboard&lt;br /&gt;
 Terminal=false&lt;br /&gt;
 Categories=System;Screen;Keyboard&lt;br /&gt;
&lt;br /&gt;
* Restart the gnome-shell by pressing: ALT+F2 &amp;gt; r &amp;gt; Enter&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Adding_additional_menu_to_Gnome_3_panel_with_custom_application_launchers&amp;diff=104</id>
		<title>Adding additional menu to Gnome 3 panel with custom application launchers</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Adding_additional_menu_to_Gnome_3_panel_with_custom_application_launchers&amp;diff=104"/>
				<updated>2015-11-27T17:25:19Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* I want to add a customized menu to the Gnome 3 panel.&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Install the [https://extensions.gnome.org/extension/37/quicklaunch/ QuickLaunch] Gnome extension&lt;br /&gt;
* Create or copy the desired application launchers (''.desktop''-files) to the directory ''~/.local/share/gnome-shell/quicklaunch/''&lt;br /&gt;
* Following you can find examlary application launchers to rotate the screen:&lt;br /&gt;
 [Desktop Entry]&lt;br /&gt;
 Type=Application&lt;br /&gt;
 Encoding=UTF-8&lt;br /&gt;
 Name=portrait&lt;br /&gt;
 Comment=Screen orientation portrait&lt;br /&gt;
 Icon=/usr/share/icons/gnome/scalable/devices/computer-apple-ipad-symbolic.svg&lt;br /&gt;
 Exec=xrandr -o left&lt;br /&gt;
 Terminal=false&lt;br /&gt;
 Categories=System;Screen;Rotation&lt;br /&gt;
&lt;br /&gt;
 [Desktop Entry]&lt;br /&gt;
 Type=Application&lt;br /&gt;
 Encoding=UTF-8&lt;br /&gt;
 Name=landscape&lt;br /&gt;
 Comment=Screen orientation landscape&lt;br /&gt;
 Icon=/usr/share/icons/gnome/scalable/devices/video-display-symbolic.svg&lt;br /&gt;
 Exec=xrandr -o normal&lt;br /&gt;
 Terminal=false&lt;br /&gt;
 Categories=System;Screen;Rotation&lt;br /&gt;
&lt;br /&gt;
* Restart the gnome-shell by pressing: ALT+F2 &amp;gt; r &amp;gt; Enter&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=103</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=103"/>
				<updated>2015-11-27T17:13:39Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: added gnome 3 quick launch link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
* [[Adding additional menu to Gnome 3 panel with custom application launchers]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
* [[Remapping mouse buttons]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
=== Roundcube ===&lt;br /&gt;
&lt;br /&gt;
* [[MyRoundcube Calendar Plugin external calendars issues (CalDAV)]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=MyRoundcube_Calendar_Plugin_external_calendars_issues_(CalDAV)&amp;diff=102</id>
		<title>MyRoundcube Calendar Plugin external calendars issues (CalDAV)</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=MyRoundcube_Calendar_Plugin_external_calendars_issues_(CalDAV)&amp;diff=102"/>
				<updated>2015-02-06T22:37:48Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* MyRoundcube Calendar Plugin is not able to load external calendars which require username and password authentication.&lt;br /&gt;
* Adding a new CalDAV calendar gives the following error message:&lt;br /&gt;
 ''Failed to save changes.''&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Failed to establish connection. Please check your data.''&lt;br /&gt;
* Roundcube setup:&lt;br /&gt;
** Roundcube 1.0.4&lt;br /&gt;
** calendar 19.0.49&lt;br /&gt;
** calendar_plus 4.0.37&lt;br /&gt;
** PHP 5.4.34&lt;br /&gt;
** MySQL 5.5.40&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Issue might be the PHP variable '''open_basedir''' which is set.&lt;br /&gt;
* Either remove open_basedir, or change '''CURLOPT_FOLLOWLOCATION''' to '''false''' in the corresponding PHP file(s). In this case ''SabreDAV/lib/Sabre/DAV/Client.php'':&lt;br /&gt;
 326: CURLOPT_FOLLOWLOCATION =&amp;gt; false,&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* For more details, see [https://forum.myroundcube.com/topic/249-connection-error-calendar-and-owncloud-caldav-backend/], [https://forum.myroundcube.com/topic/248-open-basedir-with-caldav/] and [https://forum.myroundcube.com/topic/223-connection-error-calendar-19042/].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=MyRoundcube_Calendar_Plugin_external_calendars_issues_(CalDAV)&amp;diff=101</id>
		<title>MyRoundcube Calendar Plugin external calendars issues (CalDAV)</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=MyRoundcube_Calendar_Plugin_external_calendars_issues_(CalDAV)&amp;diff=101"/>
				<updated>2015-02-06T22:30:02Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Problem:''' * MyRoundcube Calendar Plugin is not able to load external calendars which require username and password authentication. * Adding a new CalDAV calendar gives the f…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* MyRoundcube Calendar Plugin is not able to load external calendars which require username and password authentication.&lt;br /&gt;
* Adding a new CalDAV calendar gives the following error message:&lt;br /&gt;
''Failed to save changes.''&amp;lt;br&amp;gt;&lt;br /&gt;
''Failed to establish connection. Please check your data.''&lt;br /&gt;
* Roundcube setup:&lt;br /&gt;
** Roundcube 1.0.4&lt;br /&gt;
** calendar 19.0.49&lt;br /&gt;
** calendar_plus 4.0.37&lt;br /&gt;
** PHP 5.4.34&lt;br /&gt;
** MySQL 5.5.40&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=100</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=100"/>
				<updated>2015-02-06T22:21:40Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
* [[Remapping mouse buttons]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
=== Roundcube ===&lt;br /&gt;
&lt;br /&gt;
* [[MyRoundcube Calendar Plugin external calendars issues (CalDAV)]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Remapping_mouse_buttons&amp;diff=99</id>
		<title>Remapping mouse buttons</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Remapping_mouse_buttons&amp;diff=99"/>
				<updated>2014-01-13T20:01:41Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Get a list of all your input devices:'''&lt;br /&gt;
 $ xinput list&lt;br /&gt;
 ⎡ Virtual core pointer                    	id=2	[master pointer  (3)]&lt;br /&gt;
 ⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]&lt;br /&gt;
 ⎜   ↳ Logitech Unifying Device. Wireless PID:4026	id=8	[slave  pointer  (2)]&lt;br /&gt;
 ⎣ Virtual core keyboard                   	id=3	[master keyboard (2)]&lt;br /&gt;
     ↳ Virtual core XTEST keyboard             	id=5	[slave  keyboard (3)]&lt;br /&gt;
     ↳ Power Button                            	id=6	[slave  keyboard (3)]&lt;br /&gt;
     ↳ Power Button                            	id=7	[slave  keyboard (3)]&lt;br /&gt;
     ↳ AT Translated Set 2 keyboard            	id=9	[slave  keyboard (3)]&lt;br /&gt;
&lt;br /&gt;
'''Remap the desired device buttons by using either the device id or the device name:'''&lt;br /&gt;
 $ xinput --set-button-map 8 1 2 3 4 5 8 9 6 7&lt;br /&gt;
 $ xinput --set-button-map &amp;quot;Logitech Unifying Device. Wireless PID:4026&amp;quot; 1 2 3 4 5 8 9 6 7&lt;br /&gt;
&lt;br /&gt;
This example swaps the functionality of the scroll left/right buttons and the back/forward buttons.&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
* To make the remapping permanent, create an executable script which executes the above command and add it to the autostart ([http://www.ubuntu-forum.de/artikel/50682/xinput-befehl-beim-startup-ausf%C3%BChren.html]).&lt;br /&gt;
* For more details, see [http://wiki.birth-online.de/know-how/software/linux/remapping-mousebuttons]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Remapping_mouse_buttons&amp;diff=98</id>
		<title>Remapping mouse buttons</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Remapping_mouse_buttons&amp;diff=98"/>
				<updated>2014-01-12T20:13:08Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Get a list of all your input devices:'''  $ xinput list  ⎡ Virtual core pointer                    	id=2	[master pointer  (3)]  ⎜   ↳ Virtual core XTEST pointer         …'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Get a list of all your input devices:'''&lt;br /&gt;
 $ xinput list&lt;br /&gt;
 ⎡ Virtual core pointer                    	id=2	[master pointer  (3)]&lt;br /&gt;
 ⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]&lt;br /&gt;
 ⎜   ↳ Logitech Unifying Device. Wireless PID:4026	id=8	[slave  pointer  (2)]&lt;br /&gt;
 ⎣ Virtual core keyboard                   	id=3	[master keyboard (2)]&lt;br /&gt;
     ↳ Virtual core XTEST keyboard             	id=5	[slave  keyboard (3)]&lt;br /&gt;
     ↳ Power Button                            	id=6	[slave  keyboard (3)]&lt;br /&gt;
     ↳ Power Button                            	id=7	[slave  keyboard (3)]&lt;br /&gt;
     ↳ AT Translated Set 2 keyboard            	id=9	[slave  keyboard (3)]&lt;br /&gt;
&lt;br /&gt;
'''Remap the desired device buttons by using either the device id or the device name:'''&lt;br /&gt;
 $ xinput --set-button-map 8 1 2 3 4 5 8 9 6 7&lt;br /&gt;
 $ xinput --set-button-map &amp;quot;Logitech Unifying Device. Wireless PID:4026&amp;quot; 1 2 3 4 5 8 9 6 7&lt;br /&gt;
&lt;br /&gt;
This example swaps the functionality of the scroll left/right buttons and the back/forward buttons.&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
* For more details, see [http://wiki.birth-online.de/know-how/software/linux/remapping-mousebuttons]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=97</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=97"/>
				<updated>2014-01-12T20:03:34Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
* [[Remapping mouse buttons]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Customizing_the_Gnome_3_Launcher&amp;diff=96</id>
		<title>Customizing the Gnome 3 Launcher</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Customizing_the_Gnome_3_Launcher&amp;diff=96"/>
				<updated>2013-12-11T20:37:06Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Problem:''' * I want to customize the Gnome 3 launcher.  '''Solution:''' * In Debian Wheezy you can edit the following css file: ''/usr/share/gnome-shell/theme/gnome-shell.css…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* I want to customize the Gnome 3 launcher.&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* In Debian Wheezy you can edit the following css file: ''/usr/share/gnome-shell/theme/gnome-shell.css''&lt;br /&gt;
* Restart the gnome-shell by pressing: ALT+F2 &amp;gt; r &amp;gt; Enter&lt;br /&gt;
* For more details, see [http://abhizweblog.blogspot.ch/2011/06/gnome3-change-icon-size.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=95</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=95"/>
				<updated>2013-12-11T20:33:24Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
* [[Customizing the Gnome 3 Launcher]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Bad_graphics_performance_with_Gnome_3_and_ATI_Catalyst_driver_(fglrx)&amp;diff=94</id>
		<title>Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Bad_graphics_performance_with_Gnome_3_and_ATI_Catalyst_driver_(fglrx)&amp;diff=94"/>
				<updated>2013-12-08T22:03:36Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* The graphics of the gnome-shell (Grome 3) is very slow with ATI graphics adapter.&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Add the following line to the bottom of the file ''/etc/environment'' and restart the session&lt;br /&gt;
 CLUTTER_PAINT=disable-clipped-redraws:disable-culling&lt;br /&gt;
* For details, see [http://tuxanddroid.de/linux/gnome-3-auch-mit-dem-ati-caltayst-treiber-nutzen] or [http://askubuntu.com/questions/87252/ati-grlrx-catalyst-gnome-shell-problems]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Bad_graphics_performance_with_Gnome_3_and_ATI_Catalyst_driver_(fglrx)&amp;diff=93</id>
		<title>Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Bad_graphics_performance_with_Gnome_3_and_ATI_Catalyst_driver_(fglrx)&amp;diff=93"/>
				<updated>2013-12-08T22:01:45Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Problem:''' * The graphics of the gnome-shell (Grome 3) is very slow with ATI graphics adapter.  '''Solution:''' * Add the following line to the bottom of the file ''/etc/envi…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* The graphics of the gnome-shell (Grome 3) is very slow with ATI graphics adapter.&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Add the following line to the bottom of the file ''/etc/environment'' and restart the session&lt;br /&gt;
 CLUTTER_PAINT=disable-clipped-redraws:disable-culling&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=92</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=92"/>
				<updated>2013-12-08T21:58:33Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
* [[Bad graphics performance with Gnome 3 and ATI Catalyst driver (fglrx)]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Using_Owncloud_with_an_SSL_proxy&amp;diff=91</id>
		<title>Using Owncloud with an SSL proxy</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Using_Owncloud_with_an_SSL_proxy&amp;diff=91"/>
				<updated>2013-06-14T08:46:07Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''ownCloud 3'''&lt;br /&gt;
* See merge request at Gitorious: [http://gitorious.org/owncloud/owncloud/merge_requests/74 Merge request #74]&lt;br /&gt;
&lt;br /&gt;
'''ownCloud 4.5'''&lt;br /&gt;
* See [http://forum.owncloud.org/viewtopic.php?f=3&amp;amp;t=3841 SSL-PROXY SUPPORT Hosteurope Provider with OC 4.5.0/1]&lt;br /&gt;
&lt;br /&gt;
'''ownCloud 5.x'''&lt;br /&gt;
* Add the following lines to the file ''config/config.php''&lt;br /&gt;
 'overwritehost' =&amp;gt; 'my-used-ssl-proxy.com',&lt;br /&gt;
 'overwritewebroot' =&amp;gt; '/my-domain.de/path/to/owncloud',&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Setting_up_SSH_key_authentication_on_Linux/UNIX&amp;diff=90</id>
		<title>Setting up SSH key authentication on Linux/UNIX</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Setting_up_SSH_key_authentication_on_Linux/UNIX&amp;diff=90"/>
				<updated>2013-06-14T08:18:10Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Create the ''.ssh'' directory on the server (if it doesn't exist yet):'''  $ mkdir ~/.ssh  $ chmod 700 ~/.ssh  '''On the client run the following commands:'''&amp;lt;BR&amp;gt; (Don’t ent…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Create the ''.ssh'' directory on the server (if it doesn't exist yet):'''&lt;br /&gt;
 $ mkdir ~/.ssh&lt;br /&gt;
 $ chmod 700 ~/.ssh&lt;br /&gt;
&lt;br /&gt;
'''On the client run the following commands:'''&amp;lt;BR&amp;gt;&lt;br /&gt;
(Don’t enter a passphrase unless you want to type it every time you want to use the key)&lt;br /&gt;
 $ ssh-keygen -t dsa&lt;br /&gt;
 $ chmod 700 ~/.ssh&lt;br /&gt;
 $ chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
 $ chmod 644 ~/.ssh/id_dsa.pub&lt;br /&gt;
 $ scp ~/.ssh/id_dsa.pub &amp;lt;server hostname&amp;gt;:~/.ssh/&lt;br /&gt;
&lt;br /&gt;
'''And on the server run these commands:'''&lt;br /&gt;
 $ cat ~/.ssh/id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
 $ chmod 600 ~/.ssh/authorized_keys2&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=DefaultTemplate&amp;diff=89</id>
		<title>DefaultTemplate</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=DefaultTemplate&amp;diff=89"/>
				<updated>2013-06-14T08:06:46Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Problem:''' * some text  '''Solution:'''  some code  '''Note:''' * For more details, see [http://example.org].'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* some text&lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
 some code&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* For more details, see [http://example.org].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=88</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=88"/>
				<updated>2013-06-14T07:21:03Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
* [[Setting up SSH key authentication on Linux/UNIX]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Change_the_keyboard_layout_(e.g._to_Dvorak)&amp;diff=87</id>
		<title>Change the keyboard layout (e.g. to Dvorak)</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Change_the_keyboard_layout_(e.g._to_Dvorak)&amp;diff=87"/>
				<updated>2013-04-24T19:10:20Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with 'To change the default keyboard layout for X11, run the following command as root:  dpkg-reconfigure keyboard-configuration  If you want to change the layout globally (console, ss…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To change the default keyboard layout for X11, run the following command as root:&lt;br /&gt;
 dpkg-reconfigure keyboard-configuration&lt;br /&gt;
&lt;br /&gt;
If you want to change the layout globally (console, ssh, ...), you should use:&lt;br /&gt;
 dpkg-reconfigure console-data&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=86</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=86"/>
				<updated>2013-04-24T19:04:58Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
* [[Change the keyboard layout (e.g. to Dvorak)]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Procmail_Rules_to_filter_some_Spam&amp;diff=85</id>
		<title>Procmail Rules to filter some Spam</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Procmail_Rules_to_filter_some_Spam&amp;diff=85"/>
				<updated>2013-04-20T13:31:54Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Following there is an example of the ''.procmailrc'' configuration file. This example filters Spam mails based on some keywords and moves them to the Spam directory.&lt;br /&gt;
&lt;br /&gt;
For detailed information regarding the Procmail syntax, see [http://partmaps.org/era/procmail/quickref.html Procmail Quick Reference Guide].&lt;br /&gt;
&lt;br /&gt;
 LOGFILE=procmail.log&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # SPAMASSASSIN&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 #:0fw&lt;br /&gt;
 #| /usr/bin/spamassassin&lt;br /&gt;
 &lt;br /&gt;
 # Header=* ^X-Spam-Level: \*\*\*\*\*\*\*\*\*\* - verschieben nach Junk&lt;br /&gt;
 #:0 H&lt;br /&gt;
 #* ^X-Spam-Level: \*\*&lt;br /&gt;
 #$HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Nachrichten mit SPAM-Score &amp;gt;= 2 in den Mailordner SPAM verschieben&lt;br /&gt;
 #:0 H&lt;br /&gt;
 #* ^X-Spam-Score:.*\(\*\*&lt;br /&gt;
 #$HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Header=* ^X-Spam-Status: Yes - verschieben nach Junk&lt;br /&gt;
 #:0 H&lt;br /&gt;
 #* ^X-Spam-Status: Yes&lt;br /&gt;
 #$HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # CALCULATE SIZES&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 # Count Body Size&lt;br /&gt;
 :0&lt;br /&gt;
 * 1^1 B ?? &amp;gt; 1&lt;br /&gt;
 { }&lt;br /&gt;
 size = $=&lt;br /&gt;
 #:0 fhw&lt;br /&gt;
 #* ! ^Body-Size:&lt;br /&gt;
 #| $FORMAIL -a &amp;quot;Body-Size: $size&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # Count Body Lines&lt;br /&gt;
 :0 B&lt;br /&gt;
 * 1^1 B ?? ^.*$&lt;br /&gt;
 * -1^0&lt;br /&gt;
 { }&lt;br /&gt;
 lines = $=&lt;br /&gt;
 #:0 fhw&lt;br /&gt;
 #* ! ^Body-Lines:&lt;br /&gt;
 #| $FORMAIL -a &amp;quot;Body-Lines: $lines&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # MARK SPAM&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Stocks&lt;br /&gt;
 :0 Bfhw&lt;br /&gt;
 * .*(trade|trading|stock|equities|share).*&lt;br /&gt;
 * .*(\$|dollar|price|pricing|target|money|cost).*&lt;br /&gt;
 | $FORMAIL -i &amp;quot;X-Spam-Type: stocks&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Schufa Kredit&lt;br /&gt;
 :0 Bfhw&lt;br /&gt;
 * .*redit.*&lt;br /&gt;
 * .*schufa.*&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 | $FORMAIL -i &amp;quot;X-Spam-Type: kredit&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Versicherung&lt;br /&gt;
 :0 Bfhw&lt;br /&gt;
 * .*versicherung.*&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 | $FORMAIL -i &amp;quot;X-Spam-Type: versicherung&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Casino&lt;br /&gt;
 :0 Bfhw&lt;br /&gt;
 * .*asino.*&lt;br /&gt;
 * .*(geld|cash|gaming).*&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 | $FORMAIL -i &amp;quot;X-Spam-Type: casino&lt;br /&gt;
 &lt;br /&gt;
 #Spam: 1 Zeile + Link&lt;br /&gt;
 :0 Bfhw&lt;br /&gt;
 * $lines ?? ^^[012]^^&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 | $FORMAIL -i &amp;quot;X-Spam-Type: short with link, $lines lines, size $size&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # FILTER SPAM&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 # Header=* ^X-Spam-Type: - verschieben nach Junk&lt;br /&gt;
 :0 H&lt;br /&gt;
 * ^X-Spam-Type:&lt;br /&gt;
 * ! ^X-KasSpamfilter: Whitelist&lt;br /&gt;
 $HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Procmail_Rules_to_filter_some_Spam&amp;diff=84</id>
		<title>Procmail Rules to filter some Spam</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Procmail_Rules_to_filter_some_Spam&amp;diff=84"/>
				<updated>2013-04-10T16:53:47Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Following there is an example of the ''.procmailrc'' configuration file. This example filters Spam mails based on some keywords and moves them to the Spam directory.&lt;br /&gt;
&lt;br /&gt;
For detailed information regarding the Procmail syntax, see [http://partmaps.org/era/procmail/quickref.html Procmail Quick Reference Guide].&lt;br /&gt;
&lt;br /&gt;
 LOGFILE=procmail.log&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # SPAMASSASSIN&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 #:0fw&lt;br /&gt;
 #| /usr/bin/spamassassin&lt;br /&gt;
 &lt;br /&gt;
 # Header=* ^X-Spam-Level: \*\*\*\*\*\*\*\*\*\* - verschieben nach Junk&lt;br /&gt;
 #:0 H&lt;br /&gt;
 #* ^X-Spam-Level: \*\*&lt;br /&gt;
 #$HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Nachrichten mit SPAM-Score &amp;gt;= 2 in den Mailordner SPAM verschieben&lt;br /&gt;
 #:0 H&lt;br /&gt;
 #* ^X-Spam-Score:.*\(\*\*&lt;br /&gt;
 #$HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Header=* ^X-Spam-Status: Yes - verschieben nach Junk&lt;br /&gt;
 #:0 H&lt;br /&gt;
 #* ^X-Spam-Status: Yes&lt;br /&gt;
 #$HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # CALCULATE SIZES&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 # Count Body Size&lt;br /&gt;
 :0&lt;br /&gt;
 * 1^1 B ?? &amp;gt; 1&lt;br /&gt;
 { }&lt;br /&gt;
 size = $=&lt;br /&gt;
 #:0 fhw&lt;br /&gt;
 #* ! ^Body-Size:&lt;br /&gt;
 #| $FORMAIL -a &amp;quot;Body-Size: $size&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # Count Body Lines&lt;br /&gt;
 :0 B&lt;br /&gt;
 * 1^1 B ?? ^.*$&lt;br /&gt;
 * -1^0&lt;br /&gt;
 { }&lt;br /&gt;
 lines = $=&lt;br /&gt;
 #:0 fhw&lt;br /&gt;
 #* ! ^Body-Lines:&lt;br /&gt;
 #| $FORMAIL -a &amp;quot;Body-Lines: $lines&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;br /&gt;
 # FILTER SPAM&lt;br /&gt;
 ########################################&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Stocks&lt;br /&gt;
 :0 B&lt;br /&gt;
 * .*(rade|rading|tock|quities).*&lt;br /&gt;
 * .*(\$|rice|arget).*&lt;br /&gt;
 $HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Schufa Kredit&lt;br /&gt;
 :0 B&lt;br /&gt;
 * .*redit.*&lt;br /&gt;
 * .*chufa.*&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 $HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Versicherung&lt;br /&gt;
 :0 B&lt;br /&gt;
 * .*ersicherung.*&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 $HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 # Spam: Casino&lt;br /&gt;
 :0 B&lt;br /&gt;
 * .*asino.*&lt;br /&gt;
 * .*(eld|ash|aming).*&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 $HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 #Spam: 1 Zeile + Link&lt;br /&gt;
 :0 B&lt;br /&gt;
 * $lines ?? [012]&lt;br /&gt;
 * .*http://.*&lt;br /&gt;
 $HOME/mail/Junk&lt;br /&gt;
 &lt;br /&gt;
 ########################################&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Procmail_Rules_to_filter_some_Spam&amp;diff=83</id>
		<title>Procmail Rules to filter some Spam</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Procmail_Rules_to_filter_some_Spam&amp;diff=83"/>
				<updated>2013-04-10T16:50:15Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with 'Following there is an example of the ''.procmailrc'' configuration file. This example filters Spam mails based on some keywords and moves them to the Spam-directory.  For detaile…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Following there is an example of the ''.procmailrc'' configuration file. This example filters Spam mails based on some keywords and moves them to the Spam-directory.&lt;br /&gt;
&lt;br /&gt;
For detailed information regarding the Procmail syntax, see [http://partmaps.org/era/procmail/quickref.html Procmail Quick Reference Guide].&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=82</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=82"/>
				<updated>2013-04-10T16:44:05Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
* [[Procmail Rules to filter some Spam]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Extract_e-mail_attachments&amp;diff=81</id>
		<title>Extract e-mail attachments</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Extract_e-mail_attachments&amp;diff=81"/>
				<updated>2013-04-03T12:10:35Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with 'See: [http://ubuntuincident.wordpress.com/2010/09/27/extract-email-attachments/ Extract e-mail attachments]'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See: [http://ubuntuincident.wordpress.com/2010/09/27/extract-email-attachments/ Extract e-mail attachments]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=80</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=80"/>
				<updated>2013-04-03T12:03:02Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
&lt;br /&gt;
===  Bash scripting ===&lt;br /&gt;
&lt;br /&gt;
* [[Extract e-mail attachments]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Useful_links&amp;diff=79</id>
		<title>Useful links</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Useful_links&amp;diff=79"/>
				<updated>2013-03-16T08:14:20Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://www.deb-multimedia.org/ http://www.deb-multimedia.org/]&lt;br /&gt;
* [http://nixcraft.com/shell-scripting/948-change-uuid-ext3-partition.html change uuid of an ext3 partition]&lt;br /&gt;
* [http://forums.debian.net/viewtopic.php?f=16&amp;amp;t=76833 changing the grub keyboard layout]&lt;br /&gt;
* [http://www.andreas-janssen.de/cryptodisk.html encrypting HDDs with Linux]&lt;br /&gt;
* [http://debian-bits-and-snips.blogspot.ch/2011/10/n-ignoring-file-save-in-directory.html Ignoring file 'google-chrome.list.save' in directory '/etc/apt/sources.list.d/']&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Using_Owncloud_with_an_SSL_proxy&amp;diff=78</id>
		<title>Using Owncloud with an SSL proxy</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Using_Owncloud_with_an_SSL_proxy&amp;diff=78"/>
				<updated>2013-03-14T19:01:07Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See merge request at Gitorious: [http://gitorious.org/owncloud/owncloud/merge_requests/74 Merge request #74]&lt;br /&gt;
&lt;br /&gt;
For ownCloud 4.5, see: [http://forum.owncloud.org/viewtopic.php?f=3&amp;amp;t=3841 SSL-PROXY SUPPORT Hosteurope Provider with OC 4.5.0/1]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Using_Owncloud_with_an_SSL_proxy&amp;diff=77</id>
		<title>Using Owncloud with an SSL proxy</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Using_Owncloud_with_an_SSL_proxy&amp;diff=77"/>
				<updated>2013-03-14T19:00:57Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See merge request at Gitorious: [http://gitorious.org/owncloud/owncloud/merge_requests/74 Merge request #74]&lt;br /&gt;
For ownCloud 4.5, see: [http://forum.owncloud.org/viewtopic.php?f=3&amp;amp;t=3841 SSL-PROXY SUPPORT Hosteurope Provider with OC 4.5.0/1]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=76</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=76"/>
				<updated>2013-03-10T17:49:36Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Prepare a USB thumb drive with an ''ext3'' or a ''vfat'' partition and label the partition. In this example ''mypartitionlabel'' is used as label.&lt;br /&gt;
* Create a key file on the USB thumb drive which will be later used to decrypt the root partition:&lt;br /&gt;
 dd if=/dev/urandom of=/media/usb/.keys/my.key bs=4k count=1&lt;br /&gt;
* Add the new created key to the LUKS partition (in this example the root partition is ''/dev/sda1'') that it can be used to decrypt it:&lt;br /&gt;
 cryptsetup luksAddKey /dev/sda1 /media/usb/.keys/my.key&lt;br /&gt;
* Create a bash script (e.g. ''/root/getkey.sh'') which mounts the USB thumb drive and reads the key:&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 modprobe usb-storage 1&amp;gt;&amp;amp;2&lt;br /&gt;
 modprobe ehci-hcd 1&amp;gt;&amp;amp;2&lt;br /&gt;
 sleep 1&lt;br /&gt;
 mkdir /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 mount /dev/disk/by-label/mypartitionlabel -t ext3 -o ro /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 cat /usb/.keys/my.key&lt;br /&gt;
 umount /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
* Add the following lines to ''/etc/initramfs-tools/modules'':&lt;br /&gt;
 ext3&lt;br /&gt;
 ehci-hcd&lt;br /&gt;
 usb-storage&lt;br /&gt;
 nls_cp437&lt;br /&gt;
 nls_iso8859_1&lt;br /&gt;
 vfat&lt;br /&gt;
* Adapt the ''/etc/crypttab'' to use the script which gets the key:&lt;br /&gt;
 sda1_crypt UUID=24ef106a-6ed3-4d28-8355-e58c6621e9c1 none luks,keyscript=/root/getkey.sh&lt;br /&gt;
 ...&lt;br /&gt;
* Make a backup of the old ''initrd'' to be able to boot using the password as well:&lt;br /&gt;
 cp /boot/initrd.img-3.2.0-4-amd64 /boot/initrd.img-3.2.0-4-amd64-password&lt;br /&gt;
* Update the ''initrd'' to use the key-script:&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
* Update the grub bootloader to add the initrd backup to the bootmenu:&lt;br /&gt;
 update-grub&lt;br /&gt;
* Reeboot and see if it works... ;-)&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=75</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=75"/>
				<updated>2013-03-10T17:46:31Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Prepare a USB thumb drive with an ''ext3'' or a ''vfat'' partition and label the partition. In this example ''mypartitionlabel'' is used as label.&lt;br /&gt;
* Create a key file on the USB thumb drive which will be later used to decrypt the root partition:&lt;br /&gt;
 dd if=/dev/urandom of=/media/usb/.keys/my.key bs=4k count=1&lt;br /&gt;
* Add the new created key to the LUKS partition (in this example the root partition is ''/dev/sda1'') that it can be used to decrypt it:&lt;br /&gt;
 cryptsetup luksAddKey /dev/sda1 /media/usb/.keys/my.key&lt;br /&gt;
* Create a bash script (e.g. ''/root/getkey.sh'') which mount the USB thumb drive and reads the key:&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 modprobe usb-storage 1&amp;gt;&amp;amp;2&lt;br /&gt;
 modprobe ehci-hcd 1&amp;gt;&amp;amp;2&lt;br /&gt;
 sleep 1&lt;br /&gt;
 mkdir /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 mount /dev/disk/by-label/mypartitionlabel -t ext3 -o ro /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 cat /usb/.keys/my.key&lt;br /&gt;
 umount /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
* Add the following lines to ''/etc/initramfs-tools/modules'':&lt;br /&gt;
 ext3&lt;br /&gt;
 ehci-hcd&lt;br /&gt;
 usb-storage&lt;br /&gt;
 nls_cp437&lt;br /&gt;
 nls_iso8859_1&lt;br /&gt;
 vfat&lt;br /&gt;
* Adapt the ''/etc/crypttab'' to use the script which gets the key:&lt;br /&gt;
 sda1_crypt UUID=24ef106a-6ed3-4d28-8355-e58c6621e9c1 none luks,keyscript=/root/getkey.sh&lt;br /&gt;
 ...&lt;br /&gt;
* Make a backup of the old ''initrd'' to be able to boot using the password as well:&lt;br /&gt;
 cp /boot/initrd.img-3.2.0-4-amd64 /boot/initrd.img-3.2.0-4-amd64-password&lt;br /&gt;
* Update the ''initrd'' to use the key-script:&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
* Update the grub bootloader to add the initrd backup to the bootmenu:&lt;br /&gt;
 update-grub&lt;br /&gt;
* Reeboot and see if it works... ;-)&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=74</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=74"/>
				<updated>2013-03-10T17:39:22Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Create a bash script (e.g. ''/root/getkey.sh'') which mount the USB thumb drive and reads the key:&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 modprobe usb-storage 1&amp;gt;&amp;amp;2&lt;br /&gt;
 modprobe ehci-hcd 1&amp;gt;&amp;amp;2&lt;br /&gt;
 sleep 1&lt;br /&gt;
 mkdir /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 mount /dev/disk/by-label/mypartitionlabel -t ext3 -o ro /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 cat /usb/.keys/my.key&lt;br /&gt;
 umount /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
* Add the following lines to ''/etc/initramfs-tools/modules'':&lt;br /&gt;
 ext3&lt;br /&gt;
 ehci-hcd&lt;br /&gt;
 usb-storage&lt;br /&gt;
 nls_cp437&lt;br /&gt;
 nls_iso8859_1&lt;br /&gt;
 vfat&lt;br /&gt;
* Adapt the ''/etc/crypttab'' to use the script which gets the key:&lt;br /&gt;
 sda1_crypt UUID=24ef106a-6ed3-4d28-8355-e58c6621e9c1 none luks,keyscript=/root/getkey.sh&lt;br /&gt;
 ...&lt;br /&gt;
* Make a backup of the old ''initrd'' to be able to boot using the password as well:&lt;br /&gt;
 cp /boot/initrd.img-3.2.0-4-amd64 /boot/initrd.img-3.2.0-4-amd64-password&lt;br /&gt;
* Update the ''initrd'' to use the key-script:&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
* Update the grub bootloader to add the initrd backup to the bootmenu:&lt;br /&gt;
 update-grub&lt;br /&gt;
* Reeboot and see if it works... ;-)&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=73</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=73"/>
				<updated>2013-03-10T17:36:31Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Create a bash script (e.g. ''/root/getkey.sh'') which mount the USB thumb drive and reads the key:&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 modprobe usb-storage 1&amp;gt;&amp;amp;2&lt;br /&gt;
 modprobe ehci-hcd 1&amp;gt;&amp;amp;2&lt;br /&gt;
 sleep 1&lt;br /&gt;
 mkdir /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 mount /dev/disk/by-label/mypartitionlabel -t ext3 -o ro /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 cat /usb/.keys/my.key&lt;br /&gt;
 umount /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
* Add the following lines to ''/etc/initramfs-tools/modules'':&lt;br /&gt;
 ext3&lt;br /&gt;
 ehci-hcd&lt;br /&gt;
 usb-storage&lt;br /&gt;
 nls_cp437&lt;br /&gt;
 nls_iso8859_1&lt;br /&gt;
 vfat&lt;br /&gt;
* Adapt the ''/etc/crypttab'' to use the script which gets the key:&lt;br /&gt;
 sda1_crypt UUID=24ef106a-6ed3-4d28-8355-e58c6621e9c1 none luks,keyscript=/root/getkey.sh&lt;br /&gt;
 ...&lt;br /&gt;
* Make a backup of the old ''initrd'' to be able to boot using the password as well:&lt;br /&gt;
 cp /boot/initrd.img-3.2.0-4-amd64 /boot/initrd.img-3.2.0-4-amd64-password&lt;br /&gt;
* Update the ''initrd'' to use the key-script:&lt;br /&gt;
 update-initramfs -u&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=72</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=72"/>
				<updated>2013-03-10T17:30:08Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Create a bash script (e.g. ''/root/getkey.sh'') which mount the USB thumb drive and reads the key:&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 modprobe usb-storage 1&amp;gt;&amp;amp;2&lt;br /&gt;
 modprobe ehci-hcd 1&amp;gt;&amp;amp;2&lt;br /&gt;
 sleep 1&lt;br /&gt;
 mkdir /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 mount /dev/disk/by-label/mypartitionlabel -t ext3 -o ro /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 cat /usb/.keys/my.key&lt;br /&gt;
 umount /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
* Add the following lines to ''/etc/initramfs-tools/modules'':&lt;br /&gt;
 ext3&lt;br /&gt;
 ehci-hcd&lt;br /&gt;
 usb-storage&lt;br /&gt;
 nls_cp437&lt;br /&gt;
 nls_iso8859_1&lt;br /&gt;
 vfat&lt;br /&gt;
* Adapt the ''/etc/crypttab'' to use the script which gets the key:&lt;br /&gt;
 sda1_crypt UUID=24ef106a-6ed3-4d28-8355-e58c6621e9c1 none luks,keyscript=/root/getkey.sh&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=71</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=71"/>
				<updated>2013-03-10T17:26:54Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* Create a bash script (e.g. ''/root/getkey.sh'') which mount the USB thumb drive and reads the key:&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 modprobe usb-storage 1&amp;gt;&amp;amp;2&lt;br /&gt;
 modprobe ehci-hcd 1&amp;gt;&amp;amp;2&lt;br /&gt;
 sleep 1&lt;br /&gt;
 mkdir /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 mount /dev/disk/by-label/mypartitionlabel -t ext3 -o ro /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
 cat /usb/.keys/my.key&lt;br /&gt;
 umount /usb 1&amp;gt;&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=70</id>
		<title>Encrypting root partition with decryption key on USB thumb drive</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Encrypting_root_partition_with_decryption_key_on_USB_thumb_drive&amp;diff=70"/>
				<updated>2013-03-10T17:22:08Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: Created page with ''''Problem:''' * Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS. * On each boot process you have to enter the password to decrypt the root partition. * Th…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Problem:'''&lt;br /&gt;
* Your root partition of Debian Linux is encrypted  with DM-Crypt + LUKS.&lt;br /&gt;
* On each boot process you have to enter the password to decrypt the root partition.&lt;br /&gt;
* This description explains how to atomatically decrypt the root partition using a decryption key on a USB thumb drive. &lt;br /&gt;
&lt;br /&gt;
'''Solution:'''&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* More details can be found at [http://www.andreas-janssen.de/cryptodisk.html http://www.andreas-janssen.de/cryptodisk.html]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=69</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Main_Page&amp;diff=69"/>
				<updated>2013-03-10T17:14:43Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Linux ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding to the Linux OS.&lt;br /&gt;
&lt;br /&gt;
===  Debian Linux ===&lt;br /&gt;
&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[Installation of Samsung printer driver]]&lt;br /&gt;
* [[Installation of ATI graphics adapter driver]]&lt;br /&gt;
* [[NetworkManager - manage wired networks]]&lt;br /&gt;
* [[Issues installing i386 .deb packages on Debian wheezy]]&lt;br /&gt;
* [[Adobe Acrobat Reader dispays strange font instead of Arial font]]&lt;br /&gt;
* [[Encrypting root partition with decryption key on USB thumb drive]]&lt;br /&gt;
&lt;br /&gt;
=== Gnome Desktop Environment ===&lt;br /&gt;
* [[Missing Gnome symbols]]&lt;br /&gt;
* [[Missing Icon of the PulseAudio Applet]]&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
* [[Adding custom entries to GRUB 2]]&lt;br /&gt;
* [[Prism 1.0b3 Add-on with Firefox 3.5]]&lt;br /&gt;
* [[Setting default ALSA output to HDMI audio]]&lt;br /&gt;
* [[Forward all ALSA output to Pulseaudio]]&lt;br /&gt;
* [[Sound does not work on Sony VAIO VPCEC1M1E]]&lt;br /&gt;
* [[CUPS: All pages except the first page are printed incorrect]]&lt;br /&gt;
&lt;br /&gt;
== WebApps ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the installation of some WebApps.&lt;br /&gt;
&lt;br /&gt;
=== Owncloud ===&lt;br /&gt;
&lt;br /&gt;
* [[Using Owncloud with an SSL proxy]]&lt;br /&gt;
* [[WebDAV HTTP authorization does not work]]&lt;br /&gt;
&lt;br /&gt;
== Android ==&lt;br /&gt;
This section describes some tips/tricks/workarounds regarding the Android OS.&lt;br /&gt;
&lt;br /&gt;
* [[Force Android OTA update]]&lt;br /&gt;
* [[Read Android system update log file]]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Useful_links&amp;diff=68</id>
		<title>Useful links</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Useful_links&amp;diff=68"/>
				<updated>2013-03-07T18:20:49Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://www.deb-multimedia.org/ http://www.deb-multimedia.org/]&lt;br /&gt;
* [http://nixcraft.com/shell-scripting/948-change-uuid-ext3-partition.html change uuid of an ext3 partition]&lt;br /&gt;
* [http://forums.debian.net/viewtopic.php?f=16&amp;amp;t=76833 changing the grub keyboard layout]&lt;br /&gt;
* [http://www.andreas-janssen.de/cryptodisk.html encrypting HDDs with Linux]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	<entry>
		<id>https://www.wiki.froelix.com/index.php?title=Useful_links&amp;diff=67</id>
		<title>Useful links</title>
		<link rel="alternate" type="text/html" href="https://www.wiki.froelix.com/index.php?title=Useful_links&amp;diff=67"/>
				<updated>2013-03-06T22:21:59Z</updated>
		
		<summary type="html">&lt;p&gt;Froelix: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://www.deb-multimedia.org/ http://www.deb-multimedia.org/]&lt;br /&gt;
* [http://nixcraft.com/shell-scripting/948-change-uuid-ext3-partition.html change uuid of an ext3 partition]&lt;br /&gt;
* [http://forums.debian.net/viewtopic.php?f=16&amp;amp;t=76833 changing the grub keyboard layout]&lt;/div&gt;</summary>
		<author><name>Froelix</name></author>	</entry>

	</feed>