<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Hodžův blog</title>
	<link>http://hodza.net</link>
	<description>I přestože jsem paranoidní neznamená, že mě nedostanou...</description>
	<lastBuildDate>Mon, 30 Jan 2012 18:02:05 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Oprava nefunkční digestoře Ariston</title>
		<description><![CDATA[Po necelých šesti letech provozu se mi rozbila &#8222;značková&#8220; digestoř Ariston. Nejprve přestala odsávat a následně i svítit. Tak trochu z lenosti a tak trochu z nedostatku času jsem zavolal do servisu, kolik by stála nová elektronika. Když jsem od technika následně zjistil, že cena základní desky odpovídá dvoum třetinám ceny nové digestoře, rozhodl jsem [...]]]></description>
		<link>http://hodza.net/2011/10/03/oprava-nefunkcni-digestore-ariston/</link>
			</item>
	<item>
		<title>HowTo resolve ProFTPD problem: Fatal: unknown configuration directive &#8216;SQLHomedirOnDemand&#8217; on line xxx of &#8216;/etc/proftpd/proftpd.conf&#8217;</title>
		<description><![CDATA[This directive has been deprecated with ProFTPD 1.3.1rc1. Please use CreateHome instead.
http://www.proftpd.org/docs/howto/CreateHome.html
]]></description>
		<link>http://hodza.net/2011/09/02/howto-resolve-problem-fatal-unknown-configuration-directive-sqlhomedirondemand-on-line-xxx-of-etcproftpdproftpd-conf/</link>
			</item>
	<item>
		<title>HowTo install Oracle Instant Client and PHP OCI8 module under Debian Squueze (Ubuntu) 64bit</title>
		<description><![CDATA[1) Download the Basic and the SDK packages from http://www.oracle.com (registration needed).
# mkdir -p /opt/oracle/instantclient
# cd /opt/oracle/instantclient
# wget http://download.oracle.com/otn/linux/instantclient/112020/instantclient-basic-linux-x86-64-11.2.0.2.0.zip
# wget http://download.oracle.com/otn/linux/instantclient/112020/instantclient-sdk-linux-x86-64-11.2.0.2.0.zip"


2) Unzip files, move it in correct location and delete unnecessary archives
unzip instantclient-basic-linux-x86-64-11.2.0.2.0.zip
unzip instantclient-sdk-linux-x86-64-11.2.0.2.0.zip
mv instantclient_11_2/* ./
rm -r instantclient_11_2/ instantclient-basic-linux-x86-64-11.2.0.2.0.zip instantclient-sdk-linux-x86-64-11.2.0.2.0.zip

3) Craate missing simlinks
ln -s libclntsh.so.10.1 libclntsh.so
ln -s libocci.so.10.1 libocci.so
4) Install packages
# aptitude install build-essential php5-dev [...]]]></description>
		<link>http://hodza.net/2011/08/01/howto-install-oracle-instant-client-and-php-oci8-module-under-debian-squueze-ubuntu-64bit/</link>
			</item>
	<item>
		<title>HowTo fix a problem &#8222;DeprecationWarning: the sha module is deprecated; use the hashlib module instead import sha&#8220; in Pyzor</title>
		<description><![CDATA[After a fresh Pyzor install I&#8217;m getting this error message:
# aptitude install pyzor
# pyzor discover
/usr/lib/pymodules/python2.6/pyzor/__init__.py:11: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
  import sha
/usr/lib/pymodules/python2.6/pyzor/client.py:12: DeprecationWarning: the multifile module has been deprecated since Python 2.5
  import multifile
downloading servers from http://pyzor.sourceforge.net/cgi-bin/inform-servers-0-3-x


A simple fix for this problem exists. Open file /usr/bin/pyzor.
# vi /usr/bin/pyzor
Delete line
#!/usr/bin/python
And [...]]]></description>
		<link>http://hodza.net/2011/07/30/howto-fix-a-problem-deprecationwarning-the-sha-module-is-deprecated-use-the-hashlib-module-instead-import-sha-in-pyzor/</link>
			</item>
	<item>
		<title>HowTo fix a problem &#8222;loading from master file managed-keys.bind failed: file not found&#8220; under Debain Squeeze</title>
		<description><![CDATA[# touch /var/cache/bind/managed-keys.bind
# chown root:bind /var/cache/bind/managed-keys.bind
# /etc/init.d/bind9 restart
# tail -n 50 /var/log/daemon.log

]]></description>
		<link>http://hodza.net/2011/07/30/howto-fix-a-problem-loading-from-master-file-managed-keys-bind-failed-file-not-found-under-debain-squeeze/</link>
			</item>
	<item>
		<title>HowTo remove unwanted whitespace with vim</title>
		<description><![CDATA[Delete all trailing whitespace (a space or a tab) at the end of each line with:
:%s/\s\+$//
]]></description>
		<link>http://hodza.net/2011/07/24/howto-remove-unwanted-whitespace-with-vim/</link>
			</item>
	<item>
		<title>HowTo restore the &#8216;Show Desktop&#8217; shortcut in Windows XP or Windows 2003</title>
		<description><![CDATA[1) Open notepad.
2) Copy the below code.
[Shell]
Command=2
IconFile=explorer.exe,3
[Taskbar]
Command=ToggleDesktop
3) Save the file with the name ShowDesktop.scf some where on your system or on your desktop.
4) Drag and drop the file to the Quick launch area.
That’s it&#8230;
]]></description>
		<link>http://hodza.net/2011/07/21/howto-restore-the-show-desktop-shortcut-in-windows-xp-or-windows-2003/</link>
			</item>
	<item>
		<title>HowTo install Mozilla Thunderbird 5 Final from PPA (Ubuntu 10.04/10.10/11.04)</title>
		<description><![CDATA[# sudo apt-add-repository ppa:mozillateam/thunderbird-stable
# sudo apt-get update
# sudo apt-get install thunderbird
Release Notes: http://www.mozilla.org/en-US/thunderbird/5.0/releasenotes/
]]></description>
		<link>http://hodza.net/2011/07/14/howto-install-mozilla-thunderbird-5-final-from-ppa-ubuntu-10-0410-1011-04/</link>
			</item>
	<item>
		<title>HowTo install TSM Backup client in Debian Squeeze (Ubuntu) 64bit</title>
		<description><![CDATA[1. Update Debian system and install required packages
# aptitude update
# aptitude full-upgrade
# aptitude install alien libstdc++6 ksh ia32-libs
2. Go to directory /usr/src/ and download latest package from IBM web site. After download unpack archive.
# cd /usr/src/
# wget "ftp://service.boulder.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/6.2.2.0-TIV-TSMBAC-LinuxX86.tar"
# tar -xvf  6.2.2.0-TIV-TSMBAC-LinuxX86.tar
3. Unpack RPM files
# alien -g -c TIVsm-API.i386.rpm
# alien -g -c TIVsm-API64.i386.rpm
# alien -g -c TIVsm-BA.i386.rpm
# [...]]]></description>
		<link>http://hodza.net/2011/06/15/howto-install-tsm-backup-client-in-debian-squeeze-ubuntu-64bit/</link>
			</item>
	<item>
		<title>Jak zakázat IPv6 v Debianu 6 (Squeeze)</title>
		<description><![CDATA[Pokud zkoušíte starý trik s použitím aliasů u modprobe, máte smůlu. V Debianu 6 je již IPv6 přímo součástí kernelu. IPv6 zakážete tak, že do souboru /etc/sysctl.conf přidáte řádku &#8222;net.ipv6.conf.all.disable_ipv6 = 1&#8243;.
# echo "net.ipv6.conf.all.disable_ipv6 = 1" &#62;&#62; /etc/sysctl.conf
# /sbin/sysctl -p /etc/sysctl.conf

]]></description>
		<link>http://hodza.net/2011/04/21/jak-zakazat-ipv6-v-debianu-6-squeeze/</link>
			</item>
</channel>
</rss>

