<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page automatically 
             and everything recently tagged automatically -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>automatically on SWiK</title>
        <doap:name>automatically</doap:name>
        <doap:description></doap:description>
        <description></description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/automatically</link>
        <doap:homepage></doap:homepage>
        
        <pubDate></pubDate>
        <lastBuildDate></lastBuildDate>
            
        <item>
            <title>Groovy on Grails : Mastering Grails: Grails and Legacy Databases (Scott Davis)</title>
            <link>http://swik.net/Hibernate/del.icio.us+tag%2Fhibernate/Groovy+on+Grails+%3A+Mastering+Grails%3A+Grails+and+Legacy+Databases+%28Scott+Davis%29/cc5x9</link>
            <description>It would be nice if you could selectively enable dbCreate for certain tables and disable it for others. Unfortunately, it is a global “all or nothing” setting. In situations in which I have a mix of new and legacy tables, I allow GORM to create the new tables, then turn dbCreate off and import my existing, legacy tables. You can see how having a good backup-and-restore strategy is important in such situations.</description>
            
            <pubDate>Fri, 29 Aug 2008 13:55:48 -0700</pubDate>
        </item>
            
        <item>
            <title>Mysticgeek Blog: Automatically Clear Download History In Firefox</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/Mysticgeek+Blog%3A+Automatically+Clear+Download+History+In+Firefox/cafk5</link>
            <description>Clear those tracks.</description>
            
            <pubDate>Tue, 15 Jul 2008 17:50:24 -0700</pubDate>
        </item>
            
        <item>
            <title>Make Windows Vista Log On Automatically :: the How-To Geek</title>
            <link>http://swik.net/Hibernate/del.icio.us+tag%2Fhibernate/Make+Windows+Vista+Log+On+Automatically+%3A%3A+the+How-To+Geek/b9vem</link>
            <description></description>
            
            <pubDate>Thu, 10 Jul 2008 09:48:21 -0700</pubDate>
        </item>
            
        <item>
            <title>Howto Schedule Bittorrents to Automatically Download in Ubuntu</title>
            <link>http://swik.net/Ubuntu/OnlyUbuntu+Tutorials/Howto+Schedule+Bittorrents+to+Automatically+Download+in+Ubuntu/b9ruc</link>
            <description>Ever wondered if you could schedule your torrent downloads to occur in those times when you are not using you computer, when you know that there will be more people online sharing the file your downloading, or perhaps during the off-peak times of your Internet plan Well this tutorial is for you. &lt;br/&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br/&gt;&lt;br/&gt;1. We need to make sure that the relevant software is installed on our system. To do this we start up Synaptic Package Manager&lt;br/&gt;&lt;br/&gt;    System → Administration → Synaptic Package Manager&lt;br/&gt;&lt;br/&gt;and search for &#039;bittorrent&#039;. Select &#039;bittorrent&#039; from the options and click &#039;Apply&#039; to install it with all of its dependencies. If you&#039;ve already got bittorrent installed then it will already be selected in the list and you won&#039;t need to perform this step.&lt;br/&gt;&lt;br/&gt;2. Next we need to create the directory that we will download our torrents into. You can use any directory that you have permission to use for this this but a sub-directory in your home directory will often make things easier. For this tutorial I will be using a sub-directory in the user&#039;s home directory called &#039;torrents&#039;. To create this directory simply navigate to your home directory&lt;br/&gt;&lt;br/&gt;    Places → Home Folder&lt;br/&gt;&lt;br/&gt;right click on some empty space and select &#039;Create Folder&#039;. Name this folder &#039;torrents&#039;.&lt;br/&gt;&lt;br/&gt;3. To automate the task of downloading torrents, and stopping the downloads at an appropriate time, we are going to create some very simple bash scripts (For more on bash scripts see here). We will use the familiar graphical text editor gedit for this task.&lt;br/&gt;&lt;br/&gt;In your home folder right click some empty space and select&lt;br/&gt;&lt;br/&gt;    &#039;Create Document&#039; → &#039;Empty File&#039;&lt;br/&gt;&lt;br/&gt;Name this file &#039;bittorrentstart&#039;. Perform this task again to create another file and call this one &#039;bittorrentstop&#039;. You can place these files anywhere you like, perhaps in a directory called &#039;scripts&#039;, but this tutorial will assume they are in your Home directory.&lt;br/&gt;Double click the file &#039;bittorrentstart&#039; to open it and paste in the following information&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;    #!/bin/sh &lt;br/&gt;    # Start Downloading Torrent Files! &lt;br/&gt;    cd &lt;br/&gt;    nohup btlaunchmany /home/Your_User_Name/torrents/ &gt; torrent.log &amp; &lt;br/&gt;    tail -f torrent.log&lt;br/&gt;&lt;br/&gt;Make sure you change the &#039;Your_User_Name&#039; to your user-name. Save this file, open &#039;bittorrentstop&#039; and paste in the following information&lt;br/&gt;&lt;br/&gt;    #!/bin/bash &lt;br/&gt;    # Stop Downloading ALL Torrent Files! &lt;br/&gt;    killall btlaunchmany&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;4. The second part of automating the downloading of torrents is to tell our computer when to execute the start script and execute the stop script. To do this we use a tool called cron . To make the editing of cron entries simple we are going to create a text file that we will edit in gedit (like the bash scripts above) and then append it to our cron entries.&lt;br/&gt;&lt;br/&gt;While in your Home directory right click on some empty space and select&lt;br/&gt;&lt;br/&gt;    &#039;Create Document&#039; → &#039;Empty File&#039;&lt;br/&gt;&lt;br/&gt;Name this file &#039;cron.txt&#039;. Double click this file to open it and enter in the following information&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;    # Start BitTorrent Download Script&lt;br/&gt;    05 02 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh &lt;br/&gt;    # Stop ALL BitTorrent Downloads Script &lt;br/&gt;    55 11 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstop.sh&lt;br/&gt;&lt;br/&gt;Be sure to enter your user-name in the required fields. This setup will start the download start script at 2:05am and start the download stop script at 11:55am. These values will likely not suit you so you need to alter them. To understand the format of cron entries picture five asterisks at the start followed by your command. Something like the following&lt;br/&gt;&lt;br/&gt;    * * * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh&lt;br/&gt;&lt;br/&gt;The first asterisk represents minutes, the second hours, the third days of the month, the fourth is the month, and the fifth the day of the week. The allowed syntax is&lt;br/&gt;&lt;br/&gt;    minute 0-59&lt;br/&gt;    hour 0-23&lt;br/&gt;    day of month 1-31&lt;br/&gt;    month 1-12 (or the month names)&lt;br/&gt;    day of week 0-7 (0 or 7 is Sun, or use the weekday names)&lt;br/&gt;&lt;br/&gt;Save this file and start up your terminal emulator&lt;br/&gt;&lt;br/&gt;    Applications → Accessories → Terminal&lt;br/&gt;&lt;br/&gt;Enter in the following command&lt;br/&gt;&lt;br/&gt;   crontab cron.txt&lt;br/&gt;&lt;br/&gt;To verify that this was entered into your cron entries properly enter in the following command&lt;br/&gt;&lt;br/&gt;   crontab -l&lt;br/&gt;&lt;br/&gt;5. Now that we&#039;ve installed the relevant applications and told the computer to execute the appropriate tasks at the appropriate times all we need to do is save our *.torrent files into the bittorrent directory we created earlier and wait. At the appropriate times they will be downloaded into their own sub-directory without you even being aware.&lt;br/&gt;&lt;br/&gt;6. In the bittorrentstart script we created earlier there is a command to create a log file. This file records the activity of the torrent downloads. This file, called &#039;torrent.log&#039;, will be found in your Home directory. You can simply open this file to check on the status of your downloads. A sample line from this log file is&lt;br/&gt;&lt;br/&gt;    /home/Your_User_Name/torrents/torrent_name: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M [18:10:07 76%]&lt;br/&gt;    All: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M&lt;br/&gt;&lt;br/&gt;What all of these entries mean is beyond the scope of this tutorial but you can easily recognise your connection speed and the percentage finished of your torrent downloads.&lt;br/&gt;&lt;/span&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=RQaMkJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=RQaMkJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=Df1dNJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=Df1dNJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=w3q4vj&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=w3q4vj&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=RltF4j&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=RltF4j&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=K8WRuJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=K8WRuJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=AHt8ej&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=AHt8ej&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=WVrBpJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=WVrBpJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=0wa4fj&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=0wa4fj&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=K38HWJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=K38HWJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
            
            <pubDate>Wed, 09 Jul 2008 14:55:00 -0700</pubDate>
        </item>
            
        <item>
            <title>Howto Schedule Bittorrents to Automatically Download in Ubuntu</title>
            <link>http://swik.net/Ubuntu/Only+Ubuntu/Howto+Schedule+Bittorrents+to+Automatically+Download+in+Ubuntu/b9rtj</link>
            <description>Ever wondered if you could schedule your torrent downloads to occur in those times when you are not using you computer, when you know that there will be more people online sharing the file your downloading, or perhaps during the off-peak times of your Internet plan Well this tutorial is for you. &lt;br/&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br/&gt;&lt;br/&gt;1. We need to make sure that the relevant software is installed on our system. To do this we start up Synaptic Package Manager&lt;br/&gt;&lt;br/&gt;    System → Administration → Synaptic Package Manager&lt;br/&gt;&lt;br/&gt;and search for &#039;bittorrent&#039;. Select &#039;bittorrent&#039; from the options and click &#039;Apply&#039; to install it with all of its dependencies. If you&#039;ve already got bittorrent installed then it will already be selected in the list and you won&#039;t need to perform this step.&lt;br/&gt;&lt;br/&gt;2. Next we need to create the directory that we will download our torrents into. You can use any directory that you have permission to use for this this but a sub-directory in your home directory will often make things easier. For this tutorial I will be using a sub-directory in the user&#039;s home directory called &#039;torrents&#039;. To create this directory simply navigate to your home directory&lt;br/&gt;&lt;br/&gt;    Places → Home Folder&lt;br/&gt;&lt;br/&gt;right click on some empty space and select &#039;Create Folder&#039;. Name this folder &#039;torrents&#039;.&lt;br/&gt;&lt;br/&gt;3. To automate the task of downloading torrents, and stopping the downloads at an appropriate time, we are going to create some very simple bash scripts (For more on bash scripts see here). We will use the familiar graphical text editor gedit for this task.&lt;br/&gt;&lt;br/&gt;In your home folder right click some empty space and select&lt;br/&gt;&lt;br/&gt;    &#039;Create Document&#039; → &#039;Empty File&#039;&lt;br/&gt;&lt;br/&gt;Name this file &#039;bittorrentstart&#039;. Perform this task again to create another file and call this one &#039;bittorrentstop&#039;. You can place these files anywhere you like, perhaps in a directory called &#039;scripts&#039;, but this tutorial will assume they are in your Home directory.&lt;br/&gt;Double click the file &#039;bittorrentstart&#039; to open it and paste in the following information&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;    #!/bin/sh &lt;br/&gt;    # Start Downloading Torrent Files! &lt;br/&gt;    cd &lt;br/&gt;    nohup btlaunchmany /home/Your_User_Name/torrents/ &gt; torrent.log &amp; &lt;br/&gt;    tail -f torrent.log&lt;br/&gt;&lt;br/&gt;Make sure you change the &#039;Your_User_Name&#039; to your user-name. Save this file, open &#039;bittorrentstop&#039; and paste in the following information&lt;br/&gt;&lt;br/&gt;    #!/bin/bash &lt;br/&gt;    # Stop Downloading ALL Torrent Files! &lt;br/&gt;    killall btlaunchmany&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;4. The second part of automating the downloading of torrents is to tell our computer when to execute the start script and execute the stop script. To do this we use a tool called cron . To make the editing of cron entries simple we are going to create a text file that we will edit in gedit (like the bash scripts above) and then append it to our cron entries.&lt;br/&gt;&lt;br/&gt;While in your Home directory right click on some empty space and select&lt;br/&gt;&lt;br/&gt;    &#039;Create Document&#039; → &#039;Empty File&#039;&lt;br/&gt;&lt;br/&gt;Name this file &#039;cron.txt&#039;. Double click this file to open it and enter in the following information&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;    # Start BitTorrent Download Script&lt;br/&gt;    05 02 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh &lt;br/&gt;    # Stop ALL BitTorrent Downloads Script &lt;br/&gt;    55 11 * * * sh /home/Your_User_Name/bash_scripts/bittorrentstop.sh&lt;br/&gt;&lt;br/&gt;Be sure to enter your user-name in the required fields. This setup will start the download start script at 2:05am and start the download stop script at 11:55am. These values will likely not suit you so you need to alter them. To understand the format of cron entries picture five asterisks at the start followed by your command. Something like the following&lt;br/&gt;&lt;br/&gt;    * * * * * sh /home/Your_User_Name/bash_scripts/bittorrentstart.sh&lt;br/&gt;&lt;br/&gt;The first asterisk represents minutes, the second hours, the third days of the month, the fourth is the month, and the fifth the day of the week. The allowed syntax is&lt;br/&gt;&lt;br/&gt;    minute 0-59&lt;br/&gt;    hour 0-23&lt;br/&gt;    day of month 1-31&lt;br/&gt;    month 1-12 (or the month names)&lt;br/&gt;    day of week 0-7 (0 or 7 is Sun, or use the weekday names)&lt;br/&gt;&lt;br/&gt;Save this file and start up your terminal emulator&lt;br/&gt;&lt;br/&gt;    Applications → Accessories → Terminal&lt;br/&gt;&lt;br/&gt;Enter in the following command&lt;br/&gt;&lt;br/&gt;   crontab cron.txt&lt;br/&gt;&lt;br/&gt;To verify that this was entered into your cron entries properly enter in the following command&lt;br/&gt;&lt;br/&gt;   crontab -l&lt;br/&gt;&lt;br/&gt;5. Now that we&#039;ve installed the relevant applications and told the computer to execute the appropriate tasks at the appropriate times all we need to do is save our *.torrent files into the bittorrent directory we created earlier and wait. At the appropriate times they will be downloaded into their own sub-directory without you even being aware.&lt;br/&gt;&lt;br/&gt;6. In the bittorrentstart script we created earlier there is a command to create a log file. This file records the activity of the torrent downloads. This file, called &#039;torrent.log&#039;, will be found in your Home directory. You can simply open this file to check on the status of your downloads. A sample line from this log file is&lt;br/&gt;&lt;br/&gt;    /home/Your_User_Name/torrents/torrent_name: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M [18:10:07 76%]&lt;br/&gt;    All: Spd: 34.0 K/s:18.2 K/s Tot: 171.2 M:61.1 M&lt;br/&gt;&lt;br/&gt;What all of these entries mean is beyond the scope of this tutorial but you can easily recognise your connection speed and the percentage finished of your torrent downloads.&lt;br/&gt;&lt;/span&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=RQaMkJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=RQaMkJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=Df1dNJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=Df1dNJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=w3q4vj&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=w3q4vj&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=RltF4j&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=RltF4j&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=K8WRuJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=K8WRuJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=AHt8ej&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=AHt8ej&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=WVrBpJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=WVrBpJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=0wa4fj&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=0wa4fj&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?a=K38HWJ&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/OnlyUbuntuLinux?i=K38HWJ&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
            
            <pubDate>Wed, 09 Jul 2008 14:52:41 -0700</pubDate>
        </item>
            
        <item>
            <title>Maven Repository: org.apache.myfaces.maven » myfaces-master</title>
            <link>http://swik.net/Maven/del.icio.us%2Ftag%2Fmaven/Maven+Repository%3A+org.apache.myfaces.maven+%C2%BB+myfaces-master/88lp</link>
            <description></description>
            
            <pubDate>Fri, 01 Jun 2007 04:26:48 -0700</pubDate>
        </item>
            
        <item>
            <title>How-To guide: setting MythTV to wakeup for scheduled recordings with nvram-wakeup - Ubuntu Forums</title>
            <link>http://swik.net/MythTV/del.icio.us%2Ftag%2Fmythtv/How-To+guide%3A+setting+MythTV+to+wakeup+for+scheduled+recordings+with+nvram-wakeup+-+Ubuntu+Forums/z189</link>
            <description></description>
            
            <pubDate>Wed, 07 Mar 2007 20:14:00 -0800</pubDate>
        </item>
            
        <item>
            <title>deafjoomla.com-How to backup Joomla Automatically</title>
            <link>http://swik.net/Joomla/Del.icio.us+bookmarks+tagged+Joomla/deafjoomla.com-How+to+backup+Joomla+Automatically/zuqp</link>
            <description></description>
            
            <pubDate>Tue, 06 Mar 2007 02:18:24 -0800</pubDate>
        </item>
            
        <item>
            <title>Keeping your System clock current, automatically via Network Time Protocol (NTP)</title>
            <link>http://swik.net/Debian/Debian+Admin+Step+By+Step+Tutorials+and+articles+with+screenshots/Keeping+your+System+clock+current%2C+automatically+via+Network+Time+Protocol+%28NTP%29/zeul</link>
            <description>&lt;p&gt; NTP, the Network Time Protocol, is used to keep computer clocks accurate over the Internet, or by following an accurate hardware receiver which interprets GPS, DCF-77, NIST or similar time signals.&lt;/p&gt;
&lt;p&gt;ntpdate is a simple NTP client which allows a system&amp;#8217;s clock to be set to match the time obtained by communicating with one or more servers.&lt;/p&gt;
&lt;p&gt;&lt;a id=&quot;more-248&quot;&gt;&lt;/a&gt;ntpdate is optional (but recommended) if you&amp;#8217;re running an NTP server, because initially setting the system clock to an almost-correct time will help the NTP server synchronize faster.&lt;/p&gt;
&lt;p&gt;The ntpdate client by itself is useful for occasionally setting the time on machines that are not on the net full-time, such as laptops.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Install ntp client in Debian&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;#apt-get install ntpdate&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Install ntp client in Ubuntu&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;sudo apt-get install ntpdate&lt;/p&gt;
&lt;p&gt;ntpdate will automatically run while bboting your system. Ubuntu stores script at /etc/network/if-up.d/ntpdate location.&lt;/p&gt;
&lt;p&gt;If you wish to just run script again just type command&lt;/p&gt;
&lt;p&gt;sudo /etc/network/if-up.d/ntpdate&lt;/p&gt;
&lt;p&gt;sudo ntpdate pool.ntp.org&lt;/p&gt;
&lt;p&gt;If you want to use you own ntp servers you need to edit the /etc/default/ntpdate file using the following command&lt;/p&gt;
&lt;p&gt;sudo vi /etc/default/ntpdate&lt;/p&gt;
&lt;p&gt;File looks like below&lt;/p&gt;
&lt;p&gt;# servers to check.   (Separate multiple servers with spaces.)&lt;br/&gt;
NTPSERVERS=&amp;#8221;0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org 3.debian.pool.ntp.org&amp;#8221;&lt;br/&gt;
#&lt;br/&gt;
# additional options for ntpdate&lt;br/&gt;
#NTPOPTIONS=&amp;#8221;-v&amp;#8221;&lt;br/&gt;
NTPOPTIONS=&amp;#8221;-u&amp;#8221;&lt;br/&gt;
NTPSERVERS=&amp;#8221;ntp.ubuntu.com&amp;#8221;&lt;/p&gt;
&lt;p&gt;If you wan to use your own NTP server enter the list of NTP servers under NTPSERVERS&lt;/p&gt;
&lt;p&gt;To avoid stepping the clock you must run ntpdate every 1 or 2 hours using cronjob&lt;/p&gt;
&lt;p&gt;crontab -e&lt;/p&gt;
&lt;p&gt;#Setup NTPDATE&lt;/p&gt;
&lt;p&gt;@hourly /etc/network/if-up.d/ntpdate&lt;/p&gt;
&lt;p&gt;Save and close the file.&lt;/p&gt;
&lt;p&gt;You can also use the following script to run every hour from your cronjob&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#!/bin/bash&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/usr/sbin/ntpdate -s&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/sbin/hwclock --adjust&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/sbin/hwclock --systohc&lt;/code&gt;
&lt;/p&gt;
Tags: &lt;a href=&quot;http://www.debianadmin.com/tag/configure-ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;configure ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/general/&quot; rel=&quot;tag&quot;&gt;general&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/install-ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;install ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-desktop-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu desktop clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-server-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu server clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/network/&quot; rel=&quot;tag&quot;&gt;Network&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/other-linux/&quot; rel=&quot;tag&quot;&gt;Other Linux&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/timeset-ubuntu/&quot; rel=&quot;tag&quot;&gt;timeset ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ubuntu-system-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;ubuntu system clock current automatically&lt;/a&gt;&lt;a href=&quot;http://www.debianadmin.com/tag/configure-ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;configure ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/general/&quot; rel=&quot;tag&quot;&gt;general&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/install-ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;install ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-desktop-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu desktop clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-server-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu server clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/network/&quot; rel=&quot;tag&quot;&gt;Network&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/other-linux/&quot; rel=&quot;tag&quot;&gt;Other Linux&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/timeset-ubuntu/&quot; rel=&quot;tag&quot;&gt;timeset ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ubuntu-system-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;ubuntu system clock current automatically&lt;/a&gt;</description>
            
            <pubDate>Thu, 01 Mar 2007 10:36:32 -0800</pubDate>
        </item>
            
        <item>
            <title>The Republic of Geektronica » Blog Archive » Login Without Visiting the Login Page in Firefox</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/The+Republic+of+Geektronica+%C2%BB+Blog+Archive+%C2%BB+Login+Without+Visiting+the+Login+Page+in+Firefox/vu17</link>
            <description>Automatically login to websites you visit regularly using firefox</description>
            
            <pubDate>Tue, 30 Jan 2007 07:02:08 -0800</pubDate>
        </item>
            
        <item>
            <title>Keeping your System clock current, automatically via Network Time Protocol (NTP)</title>
            <link>http://swik.net/Debian/Debian+Admin+Step+By+Step+Tutorials+and+articles+with+screenshots/Keeping+your+System+clock+current%2C+automatically+via+Network+Time+Protocol+%28NTP%29/ve0g</link>
            <description>&lt;p&gt; NTP, the Network Time Protocol, is used to keep computer clocks accurate over the Internet, or by following an accurate hardware receiver which interprets GPS, DCF-77, NIST or similar time signals.&lt;/p&gt;
&lt;p&gt;ntpdate is a simple NTP client which allows a system&amp;#8217;s clock to be set to match the time obtained by communicating with one or more servers.&lt;/p&gt;
&lt;p&gt;&lt;a id=&quot;more-248&quot;&gt;&lt;/a&gt;ntpdate is optional (but recommended) if you&amp;#8217;re running an NTP server, because initially setting the system clock to an almost-correct time will help the NTP server synchronize faster.&lt;/p&gt;
&lt;p&gt;The ntpdate client by itself is useful for occasionally setting the time on machines that are not on the net full-time, such as laptops.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Install ntp client in Debian&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;#apt-get install ntpdate&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Install ntp client in Ubuntu&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;sudo apt-get install ntpdate&lt;/p&gt;
&lt;p&gt;ntpdate will automatically run while bboting your system. Ubuntu stores script at /etc/network/if-up.d/ntpdate location.&lt;/p&gt;
&lt;p&gt;If you wish to just run script again just type command&lt;/p&gt;
&lt;p&gt;sudo /etc/network/if-up.d/ntpdate&lt;/p&gt;
&lt;p&gt;sudo ntpdate pool.ntp.org&lt;/p&gt;
&lt;p&gt;If you want to use you own ntp servers you need to edit the /etc/default/ntpdate file using the following command&lt;/p&gt;
&lt;p&gt;sudo vi /etc/default/ntpdate&lt;/p&gt;
&lt;p&gt;File looks like below&lt;/p&gt;
&lt;p&gt;# servers to check.   (Separate multiple servers with spaces.)&lt;br/&gt;
NTPSERVERS=&amp;#8221;0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org 3.debian.pool.ntp.org&amp;#8221;&lt;br/&gt;
#&lt;br/&gt;
# additional options for ntpdate&lt;br/&gt;
#NTPOPTIONS=&amp;#8221;-v&amp;#8221;&lt;br/&gt;
NTPOPTIONS=&amp;#8221;-u&amp;#8221;&lt;br/&gt;
NTPSERVERS=&amp;#8221;ntp.ubuntu.com&amp;#8221;&lt;/p&gt;
&lt;p&gt;If you wan to use your own NTP server enter the list of NTP servers under NTPSERVERS&lt;/p&gt;
&lt;p&gt;To avoid stepping the clock you must run ntpdate every 1 or 2 hours using cronjob&lt;/p&gt;
&lt;p&gt;crontab -e&lt;/p&gt;
&lt;p&gt;#Setup NTPDATE&lt;/p&gt;
&lt;p&gt;@hourly /etc/network/if-up.d/ntpdate&lt;/p&gt;
&lt;p&gt;Save and close the file.&lt;/p&gt;
&lt;p&gt;You can also use the following script to run every hour from your cronjob&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#!/bin/bash&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/usr/sbin/ntpdate -s&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/sbin/hwclock --adjust&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/sbin/hwclock --systohc&lt;/code&gt;
&lt;/p&gt;
Tags: &lt;a href=&quot;http://www.debianadmin.com/tag/configure-ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;configure ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/general/&quot; rel=&quot;tag&quot;&gt;general&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/install-ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;install ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-desktop-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu desktop clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-server-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu server clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/network/&quot; rel=&quot;tag&quot;&gt;Network&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/other-linux/&quot; rel=&quot;tag&quot;&gt;Other Linux&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/timeset-ubuntu/&quot; rel=&quot;tag&quot;&gt;timeset ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ubuntu-system-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;ubuntu system clock current automatically&lt;/a&gt;&lt;a href=&quot;http://www.debianadmin.com/tag/configure-ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;configure ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/general/&quot; rel=&quot;tag&quot;&gt;general&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/install-ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;install ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-desktop-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu desktop clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/keeping-ubuntu-server-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;keeping ubuntu server clock current automatically&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/network/&quot; rel=&quot;tag&quot;&gt;Network&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-debian/&quot; rel=&quot;tag&quot;&gt;ntpdate debian&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ntpdate-ubuntu/&quot; rel=&quot;tag&quot;&gt;ntpdate ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/other-linux/&quot; rel=&quot;tag&quot;&gt;Other Linux&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/timeset-ubuntu/&quot; rel=&quot;tag&quot;&gt;timeset ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.debianadmin.com/tag/ubuntu-system-clock-current-automatically/&quot; rel=&quot;tag&quot;&gt;ubuntu system clock current automatically&lt;/a&gt;</description>
            
            <pubDate>Fri, 26 Jan 2007 03:04:44 -0800</pubDate>
        </item>
            
        <item>
            <title>How To: Make Firefox / Thunderbird print to kprinter automatically in KDE / Kubuntu - Ubuntu Forums</title>
            <link>http://swik.net/Kubuntu/del.icio.us%2Ftag%2Fkubuntu/How+To%3A+Make+Firefox+%2F+Thunderbird+print+to+kprinter+automatically+in+KDE+%2F+Kubuntu+-+Ubuntu+Forums/naug</link>
            <description></description>
            
            <pubDate>Mon, 16 Oct 2006 05:02:14 -0700</pubDate>
        </item>
            
        <item>
            <title>I want a Firefox Extension to ... 200+ common problems solved : eConsultant</title>
            <link>http://swik.net/Firefox/del.icio.us%2Ftag%2Ffirefox/I+want+a+Firefox+Extension+to+...+200%2B+common+problems+solved+%3A+eConsultant/ju9a</link>
            <description></description>
            
            <pubDate>Mon, 21 Aug 2006 16:47:33 -0700</pubDate>
        </item>
                </channel>
</rss>
