<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>OMOTECH Tips &#38; Tricks</title>
	<atom:link href="http://omotech.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://omotech.com/blog</link>
	<description>this blog offers tutorials based on various it-subjects</description>
	<lastBuildDate>Wed, 28 Mar 2012 14:49:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Use FOR Loop To map Network Shares From Different Networks Resources</title>
		<link>http://omotech.com/blog/?p=1047</link>
		<comments>http://omotech.com/blog/?p=1047#comments</comments>
		<pubDate>Fri, 23 Mar 2012 10:18:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[Batch Programing]]></category>
		<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Logon]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/?p=1047</guid>
		<description><![CDATA[Mapping network shares from a network is a pretty easy thing to do. The standard command for this in windows is: net use x: \\{host}\{share} {password} /u:{unsername} /p:{no&#124;yes} where: x = drive letter (a-z) p = persistent (yes means re-map after system restart and no means the opposite) Assuming you want to automate such action mapping more shares from different networks, you will want to use the FOR loop in a batch script. These steps will show my aproach: &#160; 1.) The first thing to do is create and place all your share information (host, share, password, username and drive letters in a file and name the file anything you want. To suite my purpose, I&#8217;ll jsut name the file &#8220;!&#8221; without any file extention. The content should look like this: 01,10.11.11.21,username,password,t,share 02,172.16.10.21,username,password,u,share 03,195.34.13.21,username,password,v,share 04,192.168.0.21,username,password,w,share &#160; 2.) Create a batch script to disconnect all existing network drives. Let&#8217;s name this file &#8220;delmap.bat&#8221; &#160; REM ======================= Begin Of Script ============================= @echo off REM Check and disconnect all existing network drives cls if exist t: net use /del t: /y if exist u: net use /del u: /y if exist v: net use /del v: /y if exist w: net use /del w: /y &#160; goto :EOF REM ======================= End Of Script ============================= &#160; 3.) Now, we can create the main script &#8220;NetShare.bat&#8221; with the following contents: &#160; REM ======================= Begin Of Script ============================= &#160; @echo off REM To avoid error messages, check and disconnect all existing network drives REM by calling....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=1047</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Reset And Change Local Administrator Password On Remote Windows Systems</title>
		<link>http://omotech.com/blog/?p=1035</link>
		<comments>http://omotech.com/blog/?p=1035#comments</comments>
		<pubDate>Thu, 23 Feb 2012 15:04:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Logon]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/?p=1035</guid>
		<description><![CDATA[This tutorial will show you how to reset and change local administrator password on remote windows systems. This was tested on Windows XP and Windows 2003 server but should work on Vista/7/2008 operating systems. STEPS: 1.) Download the official PsTools from microsoft directly or click here 2.) Extract the downloaded file to a folder called PsTools 3.) Just copy pspasswd.exe to your executable path &#8220;C:\Windows\System32&#8243; 4.) Open the prompt command line (star -&#62; Run (type &#8220;cmd&#8221; + OK) and type in the following: pspasswd \\{IP-Address} -u administrator -p {OldPasswd} administrator {NewPasswd} whereby: {OldPasswd} = Old Password {NewPasswd} = New Password {IP-Address} = System&#160;IP Address Typing &#8220;pspasswd&#8221;&#160;displays its usage syntax. Usage: pspasswd [\\[computer[,computer,[,...]&#124;Domain]&#124;@file] [-u Username [-p Pa ssword]]] Username [NewPassword] &#160; &#160; &#160;computer &#160; &#160;Direct PsPasswd to perform the command on the remote &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;computer or computers specified. If you omit the computer &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;name PsPasswd runs the command on the local system, &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;and if you specify a wildcard (\\*), PsPasswd runs the &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;command on all computers in the current domain. &#160; &#160; &#160;@file &#160; &#160; &#160; PsPasswd will change the password on the computers listed &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;in the file. &#160; &#160; &#160;-u &#160; &#160; &#160; &#160; &#160;Specifies optional user name for login to remote &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;computer.....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=1035</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Remotely Enable Remote Desktop (RDP) Using PsExec</title>
		<link>http://omotech.com/blog/?p=1019</link>
		<comments>http://omotech.com/blog/?p=1019#comments</comments>
		<pubDate>Thu, 23 Feb 2012 10:15:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Logon]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/?p=1019</guid>
		<description><![CDATA[As in many situations the network administrator has task of connecting to remote systems to perform his duties. Ocassionally, the remote tasks become more difficult and frustrating when there are no remote tools available on the system and the remote desktop application is deactivated. Forturnately, Microsoft has provided a means for resolving such problems and therefore restoring back the hope of the administrator. PsExec is one of the many PsTools Microsoft has provided for network administrors for the sole purpose of system administration. The following steps will show you how to activate RDP remotely from your local computer with the use of PsExec. 1.) Download the official PsTools either&#160;from microsoft directly&#160;or here 2.) Extract the downloaded file 3.) Just copy PsExec.exe from the extracted location into your executable path&#160;&#8221;C:\Windows\System32&#8243;. 4.) Open the prompt command line (start -&#62; Run and type &#8220;cmd&#8221; + OK) and enter the following: psexec -u {username} -p {password} \\{iP-Address} reg add &#8220;hklm\system\currentcontrolset\control\terminal server&#8221; /f /v fDenyTSConnections /t REG_DWORD /d 0 whereby: {username} = Administrator (must be administrator) {password} = Administrator&#8217;s password {IP-Address} = System IP Address If not already enabled, use the following commands to enable RDP traffic through the windows firewall: psexec \\ {iP-Address}&#160;netsh firewall set service remoteadmin enable psexec \\ {iP-Address}&#160;netsh firewall set service remotedesktop enable Note: To deactivate RDP, just change &#8220;0&#8243; to &#8220;1&#8243;. Typing &#8220;psexec&#8221; displays its usage syntax. Usage: psexec [\\computer[,computer2[,...] &#124; @file][-u user [-p psswd]][-n s][-l][-s&#124;-e][-x][-i [session]][-c [-f&#124;-v]][-w directory][-d][-&#60;priority&#62;][-a n,n,... ] cmd [arguments] computer Direct PsExec to run the application....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=1019</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo Disable the &#8220;ZEROCONF&#8221; in Linux</title>
		<link>http://omotech.com/blog/?p=1005</link>
		<comments>http://omotech.com/blog/?p=1005#comments</comments>
		<pubDate>Tue, 10 Jan 2012 16:41:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Recent Posts]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/?p=1005</guid>
		<description><![CDATA[Most linux distribution uses the zero configuration network ( ZEROCONF) suite to automatically configure themselves and communicate on a network without the need of DHCP or DNS servers. ZEROCONF is an IETF organ that planned and coordinated a series of dynamic protocols to allow many operating systems to automatically configure themselves. &#160; ZEROCONF&#160;commonly referred to as IPv4 Link-Local (IPv4LL) and Automatic Private IP Addressing (APIPA)&#160;utilises the 169.254.0.0/16 network address to auto-configure a network interface. It uses a series of unanswered &#8220;ARP&#8221; queries and then assumes an address if the queries yield an empty result. As a result, a route to the ZEROCONF network is added to the routing table by the network initscripts. Example: ZEROCONF can be disabled by adding the following entry to the &#8220;/etc/sysconfig/network&#8221; configuration file. &#160; [bash] # vi /etc/sysconfig/network NOZEROCONF=yes or no (either answer will disable the &#8220;ZEROCONF route&#8221;) It is important to note that the value of the &#8220;NOZEROCONF&#8221; parameter can actually be set to any value. The initscripts can only check to determine whether the parameter has a zero length or not. In other words, setting &#8220;NOZEROCONF=no&#8221; will have the same effect as setting it to &#8220;yes&#8221;. In order to reactivate ZEROCONF, the above entry &#8220;NOZEROCONF=yes/no&#8221; will have to either be commented out or removed entirely. The network service must be restarted for the changes above to take effect. [bash] # vi /etc/init.d/network restart To see if the ZEROCONF route has been disabled, we have to check the routing table again. If you ever....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=1005</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Swap File</title>
		<link>http://omotech.com/blog/?p=986</link>
		<comments>http://omotech.com/blog/?p=986#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:58:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Installation]]></category>
		<category><![CDATA[Recent Posts]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/?p=986</guid>
		<description><![CDATA[A swap file is an ordinary file that is in noway special to the kernel. The purpose of the swap file is to reserve the disk space so that the kernel&#160;can quickly swap out a page without having to go through all the things that are necessary when allocating a disk sector to a file.Because a hole in a file means that there are no disk sectors allocated (for that place in the file), it is not good for the kernel to try to use them. In order to create the swap file without holes, use the following command: 1.) Assuming we want to create a swap file with 2GB size (1024 x 1024 x 2 = 2097152). [bash]# dd if=/dev/zero of=/swapfile bs=1024 count=2097152 &#160; &#160; &#160;where if is source, of is output file for dd to write to which is /swapfile in this case, bs is read/write byte size at a time and count is number of blocks. 2.) The next step is to make it a swap file [bash]# mkswap /swapfile 3.) Activate the swap file [bash]# swapon /swapfile 4.) Check the newly created swap space usinf free or top [bash]# free -m &#160; &#160; &#160;or&#160; [bash]# top 5.) Write it to fstab to make it available for the system even after a reboot [bash]# echo &#8220;swapfile swap swap defaults 0 0&#8220; &#62;&#62; /etc/fstab &#160; **) Using cat give you the following output: [bash]# cat /etc/fstab /swapfile1 swap swap defaults 0 0 TweetFacebookLinkedInTumblrStumbleDiggDelicious]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=986</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export and Import Of Navigon Mobile Navigation Favourites</title>
		<link>http://omotech.com/blog/?p=974</link>
		<comments>http://omotech.com/blog/?p=974#comments</comments>
		<pubDate>Mon, 05 Dec 2011 09:13:28 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Navigon]]></category>
		<category><![CDATA[Recent Posts]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/?p=974</guid>
		<description><![CDATA[&#160; I recently had to update Navigon Mobile Navigation App on my iPhone 3GS. On my previous Navigon updates, I always had to re-enter all my favourites manually after update. This time, I had to figure out a way to do this without manually entering them like in previous updates. After a little research, here is what I came up with. Navigon v1.82 and below&#160; export:&#160; 1.) Tap on the Navigon icon to start the program. 2.) Tap on &#8220;More&#8221; 3.) Tap on &#8220;Options&#8221; and select &#8220;Send Favourites&#8221; 4.) Scroll down to the very last line and&#160;select &#8220;Send Favourites&#8221; 5.) Tap on &#8220;Send&#8221; to open up the email program 6.)&#160;&#160;Enter the email address you want to use on the receiving device 7.) Tap on send to finally send the email with the favourites as an attachment import: 7.) Open up the email on the device you want to import the favourites to 8.) Click on the link &#8220;Favourites&#8221; 9.) A warning will pop-up asking if you want to import the new favourites and lost the old ones (only if the are any old favourites) 10.) Go ahead a click &#8220;Yes&#8221; to import the new favourites Navigon v2.0 export: 1.) Tap on the Navigon icon to start the program. 2.) Tap on &#8220;My Destinations&#8221; 3.) Tap on &#8220;Edit&#8221; and select &#8220;Send Favourites&#8221; 4.) Tap on Send to open the email program 5.) Enter the email address you want to use on the receiving device 6.) Tap send&#160;to finally send the email....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=974</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Siri0us: Jailbreak Tweak Brings Siri Dictation To iPhone 4, iPhone 3GS and 4th Gen iPod Touch For Free</title>
		<link>http://omotech.com/blog/?p=905</link>
		<comments>http://omotech.com/blog/?p=905#comments</comments>
		<pubDate>Mon, 28 Nov 2011 10:45:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[3GS]]></category>
		<category><![CDATA[3GS 3.1.2]]></category>
		<category><![CDATA[3GS 3.1.3]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Jailbreake]]></category>
		<category><![CDATA[Recent Posts]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/2011/11/28/siri0us-jailbreak-tweak-brings-siri-dictation-to-iphone-4-iphone-3gs-and-4th-gen-ipod-touch-for-free/</guid>
		<description><![CDATA[As reported today by iPhoneHacks.com, you can install Siri0us using these simple steps: 1.) Launch Cydia (Please note you need iOS 5 or iOS 5.0.1 for this to work) 2.) Tap on the Manage tab 3.) Tap on Sources 4.) Tap on the Edit button and then on the Add button 5.) Enter the following URL to add the Siri0us source: http://apt.if0rce.com 6.) After the sources has been successfully downloaded, tap on the Return to Cydia button. 7.) While still on sources, either tap on iF0rce.com or tap on the Search tab and search for Siri0us 8.) Select Siri0us from the search results 9.) Tap on the Install button 10.) And then on the Confirm button to successfully install it. That&#8217;s it, you should now be able to use Siri&#8217;s Dictation feature on your iPhone 4, iPhone 3GS and iPad by tapping on the small microphone button next to the space bar. According to iPhoneHacks, Day has the following advice if your iOS device keeps respringing. DONOT restore! Use iFunBox/iPhone Explorer/SSH to remove /System/Library/PrivateFrameworks/AssistantServices.framework from your device. Kudos to Eric Day! It is just amazing what the hackers can do. Update (01.12.2011): I know this is really creepy but I&#8217;ve got bad news for you guys&#8230; I&#8217;m sorry! Siri0us: The Jailbreak tweak that brought Siri dictation to non-iPhone 4S devices has been removed from cydia. No one really knows if this tweak will ever make it to cydia again. According to the latest feed on iPhoneHacks.com, Eric&#160;Day (the developer of....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=905</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Copy an IPA File(s) to Installous</title>
		<link>http://omotech.com/blog/?p=835</link>
		<comments>http://omotech.com/blog/?p=835#comments</comments>
		<pubDate>Wed, 31 Aug 2011 14:30:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[i-FunBox]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Jailbreake]]></category>
		<category><![CDATA[Recent Posts]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/2011/08/31/how-to-copy-an-ipa-files-to-installous/</guid>
		<description><![CDATA[iPhone applications uses IPA files for installation. Downloading applications with huge files using installous can sometimes be a pain in the ass. Speaking of such applications, navigation applications like Navigon, TomTom comes to mind. Such applications can easily be downloaded using BitTorrent clients like uTorrent. Once dowaloaded syncing with iTunes in order to install these application may also be difficult or rather impossible sometimes. &#160; In such situations, it is pretty easy to just copy the downloaded file to installous and let installous take care of the installation. Follow these steps to copy the huge file to installous: Requirement: a.) iFunBox or any other iPhone browser &#160; Steps: 1.) Download iFunBox&#160;v0.992 BUILD374.323&#160;or the latest version from i-funbox.com 2.) Connect the iPhone to the computer using USB cable 3.) Start the downloaded iFunBox 4.) Navigate to the iPhone directory &#8220;Raw File System/User/Documents/Installous/Dowloads&#8221; &#160; &#160; &#160; (All Installous downloaded files are stored) 5.) &#160;Click on &#8220;Copy from PC&#8221; and locate the IPA file you want to copy and select it &#160; &#160; &#160; (The file will be copied in few seconds &#8211; High speed due to USB connection) 6.) Open Installous on the iPhone and click &#8220;Downloads&#8221;. The copied IPA file should be visible 7.) Just click to install the application &#160; That&#8217;s it! Enjoy 6.)&#160; TweetFacebookLinkedInTumblrStumbleDiggDelicious]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=835</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make Bootable USB-Drive For Windows Password &amp; Registry Editor</title>
		<link>http://omotech.com/blog/?p=830</link>
		<comments>http://omotech.com/blog/?p=830#comments</comments>
		<pubDate>Tue, 02 Aug 2011 14:34:00 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/2011/08/02/how-to-make-bootable-usb-drive-for-windows-password-registry-editor/</guid>
		<description><![CDATA[If you forget your Windows password and wonder if you&#8217;ll ever have the chance to log into your system again, well&#8230; this might be helpful We&#8217;re going to use &#8220;Offline NT Password &#38; Registry Editor&#8221; to reset the password of user(s) we want. This tool is one of the best and fastest password recovery tool for windows (almost all versions). It is a windows console tool and easy to use. Requirements: a) USB-Drive (must NOT be formated but advisable) b) USB-Drive formating tool (optional) found here c) Offline NT Password &#38; Registry Editor (USB version). Click here to download &#160; STEPS: Skip step 1 if you do NOT want to format the USB-Drive 1.) insert the USB-Drive into your computer and use the downloaded tool (b) above to format it. It is advisable to use FAT32 filesystem 2.) Unzip the download &#8220;Offline NT Password &#38; Registry Tool&#8221; into a folder called &#8220;usb110511&#8243; 3.) copy all contents from the folder usb110511 into the root of the USB-Drive 4.)&#160;Install bootloader on the USB drive, from command prompt in windows (start the command line with &#8220;run as administrator&#8221; if possible) 5.) type X: + EnterKey (where X is the letter of your USB-drive) to change directory to the usb drive 6.) type&#160;X:\&#62;syslinux.exe -ma X: That&#8217;s it! Safely unplug the USB-Drive from the second computer and use it to boot your system with the lost password. It might be neccessary to adjust your BIOS settings to allow booting from the USB-Drive Follow the instructions....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=830</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to correctly configure CUPS</title>
		<link>http://omotech.com/blog/?p=822</link>
		<comments>http://omotech.com/blog/?p=822#comments</comments>
		<pubDate>Thu, 21 Jul 2011 13:31:39 +0000</pubDate>
		<dc:creator>omostan</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CUPS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://omotech.com/blog/2011/07/21/how-to-correctly-configure-cups/</guid>
		<description><![CDATA[&#160; Intro This tutorial describes how to install a Linux print server with CUPS. It also covers the installation and configuration of printer drivers on the print server using samba share as well as the printer setup on a Windows 2000 (or higher) client CUPS CUPS &#8211; Common Unix Printing System is a modular printing system for unixlike computer operating system which allows a computer to act as a print-server. A computer running CUPS is a host that accept print jobs from client computers, process them and send them to the appropriate printers. CUPS was initially developed by a guy called Michael Sweet and the protocol used back then was LPD. Due to LPD limitations and vendors incompactibility, it was replaced with IPP (internet printing protocol). CUPS was quickly adopted by various linux distributions as the default printing system. Notable among them were Red Hat Linux, Fedora, SuSE, Mandrake and in March 2002, Apple joined (using CUPS as printing system for Mac OS X 10.2). In February 2007, Apple hired chief developer Michael Sweet and purchased CUPS source code. Now, let&#8217;s proceed with the step-bystep installing and configuring CUPS Step #1 &#8211; Install cups service a.) # su - b.) # yum -y install cups Step #2 &#8211; Configuration a.) # vi /etc/cups/cupsd.conf The default CUPS configuration limits access only to the local machine (cups server). If you wish to open up the access, edit /etc/cups/cupsd.conf and comment out the following lines: Order deny, allow Deny from all Allow from....]]></description>
		<wfw:commentRss>http://omotech.com/blog/?feed=rss2&#038;p=822</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

