<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Thanks to antville.org</title>
    <link>https://oksoft.antville.org/</link>
    <description>Adding Value with limited resources</description>
    <language>en</language>
    <pubDate>Wed, 17 Jun 2026 19:54:59 GMT</pubDate>
    <dc:date>2026-06-17T19:54:59Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>install ubuntu GUI on EC2 instance</title>
      <link>https://oksoft.antville.org/stories/2325842/</link>
      <description>&lt;p&gt;#!/bin/bashset -e&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Switching to text mode (stop GNOME crash)...&amp;quot;sudo systemctl set-default multi-user.target&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Removing GNOME...&amp;quot;sudo apt purge -y ubuntu-desktop gnome-shell ubuntu-session gdm3sudo apt autoremove -y&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Updating packages...&amp;quot;sudo apt update&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Installing FULL Xubuntu desktop (Firefox + LibreOffice + full GUI)...&amp;quot;sudo apt install -y xubuntu-desktop&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Installing XRDP...&amp;quot;sudo add-apt-repository -y universesudo apt updatesudo apt install -y xrdp&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Enabling XRDP...&amp;quot;sudo systemctl enable xrdpsudo systemctl restart xrdp&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Configuring XRDP to use Xfce...&amp;quot;echo &amp;quot;startxfce4&amp;quot; | sudo tee /etc/skel/.xsessionecho &amp;quot;startxfce4&amp;quot; &amp;gt; ~/.xsession&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; If UFW exists, allow RDP...&amp;quot;sudo ufw allow 3389 || true&lt;/p&gt;&lt;p&gt;sudo useradd -m dbaecho &amp;quot;dba:india162&amp;quot; | sudo chpasswdsudo usermod -aG sudo dba&lt;/p&gt;&lt;p&gt;echo &amp;quot;===&amp;gt; Repair complete. Rebooting...&amp;quot;sudo reboot&lt;/p&gt;</description>
      <pubDate>Mon, 17 Nov 2025 04:06:24 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2325842/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2025-11-17T04:06:24Z</dc:date>
    </item>
    <item>
      <title>Extract words</title>
      <link>https://oksoft.antville.org/stories/2319889/</link>
      <description>&lt;p&gt;Extract all incorrect words in first.txt file and all correct ones in second.txt file using the following sed command.&lt;/p&gt;&lt;p&gt;sed -n 's/.&lt;em&gt;&amp;quot;([&amp;quot;]&lt;/em&gt;)&amp;quot;.*/\1/p' DocumentList.xml &amp;gt; first.txt&lt;/p&gt;&lt;p&gt;sed -n 's/[&amp;quot;]&lt;em&gt;&amp;quot;[&amp;quot;]&lt;/em&gt;&amp;quot;[&amp;quot;]&lt;em&gt;&amp;quot;([&amp;quot;]&lt;/em&gt;)&amp;quot;.*/\1/p' DocumentList.xml &amp;gt; second.txt&lt;/p&gt;</description>
      <pubDate>Sun, 13 Oct 2024 10:18:25 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2319889/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2024-10-13T10:18:25Z</dc:date>
    </item>
    <item>
      <title>Why do I care for Linux?</title>
      <link>https://oksoft.antville.org/stories/2295157/</link>
      <description>&lt;p&gt;I don't care that much for other software. Linux is more than a kernel or an operating system. It is a symbol money does not rule everything. You don't pay for Linux. You don't have to watch ads when using it. In return, please be a little more friendly and tolerant to the people who build it. While Linux is built by professionals today, there is more heart and soul poured into it than in other operating systems.&lt;/p&gt;&lt;p&gt;&lt;a href="http://beza1e1.tuxen.de/my_linux_history.html"&gt;beza1e1.tuxen.de&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 17 Dec 2020 09:27:17 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2295157/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-12-17T09:27:17Z</dc:date>
    </item>
    <item>
      <title>backup mysql users </title>
      <link>https://oksoft.antville.org/stories/2285835/</link>
      <description>&lt;p&gt;3 steps to install percona utility...&lt;/p&gt;&lt;p&gt;yum install perl-DBI perl-Data-Dumper perl-DBD-MySQL&lt;/p&gt;&lt;p&gt;wget percona.com/get/pt-show-grants &lt;/p&gt;&lt;p&gt;perl pt-show-grants -h 1.2.3.4 -uroot -pPasswd&lt;/p&gt;</description>
      <pubDate>Thu, 13 Feb 2020 13:49:56 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285835/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-13T13:49:56Z</dc:date>
    </item>
    <item>
      <title>clear tmp folder</title>
      <link>https://oksoft.antville.org/stories/2285285/</link>
      <description>&lt;p&gt;Here is following commands to clear unwanted stuff from the /tmp partition on the server?&lt;/p&gt;&lt;p&gt;tmpwatch –mtime –all 48 /tmp&lt;/p&gt;&lt;p&gt;The above command will remove all files and folders from the /tmp which have not been accessed in the last couple of days (24×2=48). You can modify the number of hours as required.&lt;/p&gt;</description>
      <pubDate>Sat, 08 Feb 2020 14:41:13 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285285/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-08T14:41:13Z</dc:date>
    </item>
    <item>
      <title>change your server time to IST</title>
      <link>https://oksoft.antville.org/stories/2285284/</link>
      <description>&lt;p&gt;If you need to change your server clock to another timezone for e.g. (Indian Standard Time), you can do so by modifying the /etc/localtime file:&lt;/p&gt;&lt;p&gt;mv /etc/localtime /etc/localtime.bak&lt;/p&gt;&lt;p&gt;ln -s /usr/share/zoneinfo/Asia/Calcutta /etc/localtime&lt;/p&gt;</description>
      <pubDate>Sat, 08 Feb 2020 14:39:38 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285284/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-08T14:39:38Z</dc:date>
    </item>
    <item>
      <title>Transfer root emails to another email address</title>
      <link>https://oksoft.antville.org/stories/2285283/</link>
      <description>&lt;p&gt;If you have root access to the server then open the file /etc/aliases in your favorite editor. Look for the section  Person who should get root mail  and make the change as required.&lt;/p&gt;&lt;p&gt;vim /etc/aliases&lt;/p&gt;&lt;p&gt;Person who should get root’s mail  ##root:   &lt;a href="mailto:info@unixserveradmin.com"&gt;info@unixserveradmin.com&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 08 Feb 2020 14:32:42 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285283/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-08T14:32:42Z</dc:date>
    </item>
    <item>
      <title>special strings in cron</title>
      <link>https://oksoft.antville.org/stories/2285282/</link>
      <description>&lt;p&gt;Instead of the first five fields, you can use any one of eight special strings. It will not just save your time but it will improve readability.&lt;/p&gt;&lt;p&gt;Special string    Meaning@reboot ——&amp;gt; Run once, at startup.@yearly ——&amp;gt; Run once a year, “0 0 1 1 *”.@annually –&amp;gt; (same as @yearly)@monthly —&amp;gt; Run once a month, “0 0 1 * *”.@weekly —–&amp;gt; Run once a week, “0 0 * * 0″.@daily ——–&amp;gt; Run once a day, “0 0 * * *”.@midnight –&amp;gt; (same as @daily)@hourly —–&amp;gt; Run once an hour, “0 * * * *”.&lt;/p&gt;&lt;p&gt;For e.g. run ntpdate every hour:@hourly /path/to/ntpdatevim /etc/ssh/sshd_config&lt;/p&gt;</description>
      <pubDate>Sat, 08 Feb 2020 14:30:01 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285282/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-08T14:30:01Z</dc:date>
    </item>
    <item>
      <title>while loop</title>
      <link>https://oksoft.antville.org/stories/2284297/</link>
      <description>&lt;p&gt;This is a sample shell script while loop&lt;/p&gt;&lt;p&gt;while read mydbdoecho &amp;quot;time scp /home/backup/mysql/$mydb/ticket.txt.gz 1.2.3.4:/tmp/$mydb.txt.gz &amp;quot;done &amp;lt;&amp;lt; dblistakolaIIakolakodblist&lt;/p&gt;</description>
      <pubDate>Sun, 26 Jan 2020 12:24:23 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2284297/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-01-26T12:24:23Z</dc:date>
    </item>
    <item>
      <title>Selecting from error log</title>
      <link>https://oksoft.antville.org/stories/2284291/</link>
      <description>&lt;p&gt;grep &amp;quot;error&amp;quot; error_log |awk -F[ {'print $4'} &lt;br /&gt;| sort | sed -e 's/]//g' | grep -v &amp;quot;/var/www/html/&amp;quot; &lt;br /&gt;| grep -v &amp;quot;/usr/local/src/code&amp;quot; | awk {'print $2'} &lt;br /&gt;| grep -v &amp;quot;75.142.246.205&amp;quot; |uniq | awk -F. {'print $1&amp;quot;.&amp;quot;$2&amp;quot;.&amp;quot;$3&amp;quot;/24&amp;quot;'} |uniq&lt;/p&gt;&lt;p&gt;114.80.93/24119.63.193/24124.115.0/24205.234.253/24&lt;/p&gt;</description>
      <pubDate>Sun, 26 Jan 2020 10:40:26 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2284291/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-01-26T10:40:26Z</dc:date>
    </item>
  </channel>
</rss>

