<?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>Gudasoft &#187; Linux</title>
	<atom:link href="http://www.gudasoft.com/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gudasoft.com</link>
	<description>Impossible is nothing</description>
	<lastBuildDate>Thu, 06 Oct 2011 07:17:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Ubuntu Unity Nonsense</title>
		<link>http://www.gudasoft.com/uncategorized/05/01/1352/ubuntu-unity-nonsense/2011</link>
		<comments>http://www.gudasoft.com/uncategorized/05/01/1352/ubuntu-unity-nonsense/2011#comments</comments>
		<pubDate>Sun, 01 May 2011 15:40:32 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[xfce]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1352</guid>
		<description><![CDATA[Just upgraded the ubuntu to 11.04 (Natty Narwhal) and what a surprise! I got MacOS look and feel. Doing some research and I can&#8217;t believe Gnome3 has the same STUPID look as MacOS OMG!!! What innovation  you see at copying the same OS from MAC. I remember the days when the Linux desktop looks innovating [...]]]></description>
			<content:encoded><![CDATA[<p>Just upgraded the ubuntu to 11.04 (Natty Narwhal) and what a surprise! I got MacOS look and feel.</p>
<p>Doing some research and I can&#8217;t believe Gnome3 has the same STUPID look as MacOS OMG!!!</p>
<p>What innovation  you see at copying the same OS from MAC. I remember the days when the Linux desktop looks innovating and it was pleasure to work with so many options. Now everything is going the Apple way.</p>
<p><a href="http://www.gudasoft.com/wp-content/uploads/2011/05/unity_sux.jpg"><img class="alignnone size-full wp-image-1353" title="unity_sux" src="http://www.gudasoft.com/wp-content/uploads/2011/05/unity_sux.jpg" alt="" width="940" height="327" /></a></p>
<p>I felt depressed is there around at least one windows manager which is not influenced from Apple?</p>
<p>I hate Dock launchers -  looks not innovating &#8211; it looks clumsy and old. Everything which is copied clumsy!</p>
<p>Gnome3 &#8211; you are going on the same path as Unity!</p>
<p>Windows7 &#8211; is 100 times better because it has its OWN LOOK AND FEEL &#8211; I&#8217;d rather work with windows7 than on a Gnome3/Unity. Blah!</p>
<h1>The solution?</h1>
<p><a href="http://www.xfce.org">Xfce</a> desktop is now closes to what Gnome was</p>
<p><a href="http://www.gudasoft.com/wp-content/uploads/2011/05/xfce_logo.png"><img class="alignleft size-full wp-image-1354" title="xfce_logo" src="http://www.gudasoft.com/wp-content/uploads/2011/05/xfce_logo.png" alt="" width="536" height="536" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/05/01/1352/ubuntu-unity-nonsense/2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relaying Postfix SMTP via smtp.gmail.com</title>
		<link>http://www.gudasoft.com/uncategorized/01/08/1219/relaying-postfix-smtp-via-smtp-gmail-com/2010</link>
		<comments>http://www.gudasoft.com/uncategorized/01/08/1219/relaying-postfix-smtp-via-smtp-gmail-com/2010#comments</comments>
		<pubDate>Fri, 08 Jan 2010 08:58:15 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1219</guid>
		<description><![CDATA[This article is from ubuntu-tutorials.com I’ve got a few servers in different places around the country and try to monitor them using the logwatch utility.  One problem that I’ve run into however is that a few of these servers are not able to send their logwatch emails to me, based on email restrictions by the [...]]]></description>
			<content:encoded><![CDATA[<h2>This article is from <a href="http://ubuntu-tutorials.com/2008/11/11/relaying-postfix-smtp-via-smtpgmailcom/">ubuntu-tutorials.com</a></h2>
<p>I’ve got a few servers in different places around the country and try to monitor them using the logwatch utility.  One problem that I’ve run into however is that a few of these servers are not able to send their logwatch emails to me, based on email restrictions by the ISPs.  I spent some time this afternoon researching what was required to have my servers authenticate to my gmail account and send me the mail that way.  This setup assumes Ubuntu 8.04 (or later) and Postfix.</p>
<p><strong>Install the required packages</strong></p>
<blockquote><p><code>sudo aptitude install postfix libsasl2 ca-certificate libsasl2-modules</code></p></blockquote>
<p><strong>Configure Postfix</strong></p>
<p>This tutorial will not outline how to configure your postfix server, but we’ll jump directly to the relayhost section.  You’ll want to add the following lines to your /etc/postfix/main.cf file:</p>
<blockquote><p><code>relayhost = [smtp.gmail.com]:587<br />
smtp_sasl_auth_enable = yes<br />
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd<br />
smtp_sasl_security_options = noanonymous<br />
smtp_tls_CAfile = /etc/postfix/cacert.pem<br />
smtp_use_tls = yes</code></p></blockquote>
<p>The above lines are telling Postfix that you want to relay mail through gmail on a specific port, telling it to authenticate, and where to find the username and password.  The last three lines specify the authentication types supported, where the certificate authority file is and that it should use tls.</p>
<p><strong>Define Username and Password</strong></p>
<p>Next we’ll need to populate the sasl_passwd file.  Create the file /etc/postfix/sasl_passwd with the following contents:</p>
<blockquote><p>[smtp.gmail.com]:587    user.name@gmail.com:password</p></blockquote>
<p>This file should have restrictive permissions and then needs to be translated into a .db that Postfix will read.</p>
<blockquote><p><code>sudo chmod 400 /etc/postfix/sasl_passwd<br />
sudo postmap /etc/postfix/sasl_passwd<br />
</code></p></blockquote>
<p>At this point you can restart Postfix and it should work, however it will complain about not being able to authenticate the certificate.  To take care of this issue we’ll use the ca-certificate package we installed and tell it where it can validate the certificate.</p>
<blockquote><p><code>cat /etc/ssl/certs/Thawte_Premium_Server_CA.pem | sudo tee -a /etc/postfix/cacert.pem</code></p></blockquote>
<p>Go ahead and reload postfix (sudo /etc/init.d/postfix reload) and you should be set.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/01/08/1219/relaying-postfix-smtp-via-smtp-gmail-com/2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardening linux</title>
		<link>http://www.gudasoft.com/english/linux/11/27/1176/hardening-linux/2009</link>
		<comments>http://www.gudasoft.com/english/linux/11/27/1176/hardening-linux/2009#comments</comments>
		<pubDate>Fri, 27 Nov 2009 06:53:25 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1176</guid>
		<description><![CDATA[Check those links if you want to be ontop of the securuty CIS Benchmarks &#8211; contains requirements from the Center for Internet Security (CIS) benchmarks. DCID &#8211; contains requirements from the Director of Central Intelligence Directives (DCID). DISA UNIX STIG &#8211; contains modules that address DISA UNIX Security Technical Implementation Guides (STIGs) security recommendations. FERC [...]]]></description>
			<content:encoded><![CDATA[<p>Check those links if you want to be ontop of the securuty</p>
<ul>
<li><a href="http://www.cisecurity.org/">CIS Benchmarks</a> &#8211; contains requirements from the Center for Internet Security (CIS) benchmarks.</li>
<li>DCID &#8211; contains requirements from the Director of Central Intelligence Directives (DCID).</li>
<li>DISA UNIX STIG &#8211; contains modules that address DISA UNIX Security Technical Implementation Guides (STIGs) security recommendations.</li>
<li>FERC CIP &#8211; contains modules that address the Critical Infrastructure Protection (CIP) standards for electricity distributors.</li>
<li>JAFAN &#8211; the Joint Air Force-Army-Navy (JAFAN) manual established the security policy and procedures for storing, processing, and communicating classified Department of Defence (DoD) Special Access Program (SAP) information in information systems.</li>
<li>NISPOM &#8211; contains modules that address the National Industrial Security Program Operating Manual (NISPOM).</li>
<li>PCI DSS &#8211; Payment Card Industry Security Standards Council includes members from Visa, MasterCard, American Express, Discover, and JCB International Credit Card Company. This council administers the Data Security Standard (DSS).</li>
<li>Web Services Protection &#8211; contains modules that address standard security functionality to provide protection.</li>
</ul>
<p><a href="http://www.ibm.com/developerworks/linux/library/l-seclnx3/">IBM tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/11/27/1176/hardening-linux/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu (9.0.4) on Dell Optiflex 320</title>
		<link>http://www.gudasoft.com/uncategorized/07/01/1001/ubuntu-9-0-4-on-dell-optiflex-320/2009</link>
		<comments>http://www.gudasoft.com/uncategorized/07/01/1001/ubuntu-9-0-4-on-dell-optiflex-320/2009#comments</comments>
		<pubDate>Wed, 01 Jul 2009 08:29:15 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=1001</guid>
		<description><![CDATA[To install ubuntu on Dell system you need to change the default boot loader to grub2 or something else #change the root password to something that you know sudo passwd #become root su mkdir /media/ubuntu mount /dev/sda1 /media/ubuntu # check that you have mounted the right partition. ls /media/ubuntu mount -t proc none /media/ubuntu/proc mount [...]]]></description>
			<content:encoded><![CDATA[<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 162px; text-align: left;" dir="ltr">To install ubuntu on Dell system you need to change the default boot loader to grub2 or something <a href="http://ubuntuforums.org/showthread.php?t=409345">else</a>
#change the root password to something that you know
sudo passwd
#become root
su

mkdir /media/ubuntu
mount /dev/sda1 /media/ubuntu

# check that you have mounted the right partition.
ls /media/ubuntu

mount -t proc none /media/ubuntu/proc
mount -o bind /dev/ /media/ubuntu/dev
cp /etc/resolv.conf /mediaubuntu/etc

chroot /media/ubuntu /bin/bash
/etc/init.d/networking restart
aptitude update
aptitude install grub2

upgrade-....&lt;tab&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/07/01/1001/ubuntu-9-0-4-on-dell-optiflex-320/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Ubuntu workstation configuration</title>
		<link>http://www.gudasoft.com/english/linux/06/24/989/my-ubutno-workstation-configuration/2009</link>
		<comments>http://www.gudasoft.com/english/linux/06/24/989/my-ubutno-workstation-configuration/2009#comments</comments>
		<pubDate>Wed, 24 Jun 2009 18:42:39 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[admini]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=989</guid>
		<description><![CDATA[XOrg configuration https://wiki.ubuntu.com/X/Config/Resolution cvt 1680 1050 75 xrandr &#8211;newmode &#8230;the output from cvt xrandr &#8211;newmode &#8220;1680x1050_75.00&#8243; 187.00 1680 1800 1976 2272 1050 1053 1059 1099 -hsync +vsync xrandr &#8211;addmode DVI-0 1680x1050_75.00 Lenovo Y510 You have to install the latest alsa. Then replace the existing kernel modules with the just build one. Then run depmod -a [...]]]></description>
			<content:encoded><![CDATA[<h1>XOrg configuration</h1>
<ul>
<li>https://wiki.ubuntu.com/X/Config/Resolution</li>
<li>cvt 1680 1050 75</li>
<li> xrandr &#8211;newmode &#8230;the output from cvt<br />
xrandr &#8211;newmode  &#8220;1680x1050_75.00&#8243;  187.00  1680 1800 1976 2272  1050 1053 1059 1099 -hsync +vsync</li>
<li> xrandr &#8211;addmode  DVI-0 1680x1050_75.00</li>
</ul>
<h1>Lenovo Y510</h1>
<p>You have to install the latest alsa.</p>
<p>Then replace the existing kernel modules with the just build one. Then run depmod -a as point kilbasar here</p>
<p>http://ubuntuforums.org/showthread.php?t=687663&amp;page=2</p>
<pre dir="ltr">sudo su
cd /lib/modules/2.6.22-14-generic/ubuntu/media/snd-hda-intel/
mv snd-hda-intel.ko snd-hda-intel.ko.bak
ln -s /lib/modules/2.6.22-14-generic/kernel/sound/pci/hda/snd-hda-intel.ko /lib/modules/2.6.22-14-generic/ubuntu/media/snd-hda-intel/snd-hda-intel.ko
cd /usr/src/alsa/alsa-driver-1.0.16rc2/modules
cp * /lib/modules/2.6.22-14-generic/kernel/sound/
depmod -a</pre>
<h1>Logitech Revolution MX</h1>
<p>http://x4.6times7.org/dokuwiki/doku.php/devlog/blog/howto_logitech_mx_revolution_on_ubuntu</p>
<ul>
<li>The mouse wheel control
<ul>
<li>Download from here http://goron.de/~froese/revoco/ or <a href="http://www.gudasoft.com/wp-content/uploads/2009/06/revoco-0.5.tar.gz">revoco-0.5.tar</a></li>
</ul>
<ul>
<li>make</li>
<li>sudo ./revoco manual=6</li>
<li><tt>lets try to add it in ~/.xprofile next time<br />
</tt></li>
</ul>
</li>
</ul>
<ul>
<li>Here is my xorg.conf</li>
</ul>
<pre>Section "Monitor"
 Identifier "External DVI"
 # 1680x1050 74.89 Hz (CVT 1.76MA) hsync: 82.31 kHz; pclk: 187.00 MHz
 Modeline "1680x1050_75.00"  187.00  1680 1800 1976 2272  1050 1053 1059 1099 -hsync +vsync
 # 1680x1050 59.95 Hz (CVT 1.76MA) hsync: 65.29 kHz; pclk: 146.25 MHz
 Modeline "1680x1050_60.00"  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync
 # 1680x1050 69.88 Hz (CVT) hsync: 76.58 kHz; pclk: 174.00 MHz
 Modeline "1680x1050_70.00"  174.00  1680 1800 1976 2272  1050 1053 1059 1096 -hsync +vsync
 Option "PreferedMode"    "1280x1024_75.00"
EndSection

Section "Screen"
 Identifier    "Configured Screen Device"
 Device    "Configured Video Device"
 SubSection "Display"
 Depth    24
 Modes "1680x1050" "1024x768" "640x480"
 Virtual    2960 1050
 EndSubSection
EndSection

Section "Device"
 Identifier    "Configured Video Device"
 Option    "Monitor-DVI-0" "External DVI"
EndSection</pre>
<h1>My Development setup commands</h1>
<p>I noticed simillar post <a href="http://yobine.tistory.com/?page=3">here</a></p>
<pre>sudo aptitude install mc vim subversion screen pidgin meld curl links2 vim-ruby vim-gnome vim-doc vim-scripts vim-ruby vim-perl \
subversion git-core bluefish kompozer\
libmysqlclient15off libmysqlclient15-dev mysql-common mysql-client \
libmysql-ruby1.8 irb ruby1.8 rdoc ri rake \
apt-utils build-essential ruby1.8-dev mysql-server memcached libxslt1-dev libpcre3-dev zlib1g-dev unzip gzip mytop openssl \
libopenssl-ruby libmagick9-dev imagemagick librmagick-ruby1.8 imagemagick librmagick-ruby-doc  libmagick9-dev ruby1.8-dev \
libdbd-sqlite3-ruby libsqlite3-ruby sqlite3 libsqlite3-dev

ln -s /usr/bin/ruby1.8 /usr/bin/ruby

mkdir ruby_install
cd ruby_install
wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
tar xzvf ruby*
cd rubygems-1.3.5
ruby setup.rb
cd ..
cd ..

ln -s /usr/bin/gem1.8 /usr/bin/gem

gem install rails mysql mongrel mongrel_cluster rails paperclip will_paginate andand \
json feed-normalizer hpricot mechanize ruby-debug uuid ruport ruport-util acts_as_reportable \
rufus-scheduler annotate openwferu-scheduler production_log_analyzer capistrano-ext libxml-ruby twitter capistrano wirble RedCloth
rspec-rails sqlite3-ruby \
--no-ri --no-rdoc

gem install rmagick -v 1.15.12
ruby -rrubygems -e "require 'RMagick'; puts Magick::Long_version;"

cat &gt; /home/guda/.irbrc
require 'rubygems'
require 'wirble'
Wirble.init
Wirble.colorize
require 'logger'
if ENV.include?('RAILS_ENV') &amp;&amp; !Object.const_defined?('RAILS_DEFAULT_LOGGER')
Object.const_set('RAILS_DEFAULT_LOGGER', Logger.new(STDOUT))
end

Gmail notification

http://www.workswithu.com/2009/10/06/gmail-notifier-applets-for-ubuntu/</pre>
<pre></pre>
<pre>What about <a href="http://ubuntu-tweak.com/">http://ubuntu-tweak.com/</a></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/06/24/989/my-ubutno-workstation-configuration/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last thinks that I have read</title>
		<link>http://www.gudasoft.com/uncategorized/02/18/532/last-thinks-that-i-have-read/2009</link>
		<comments>http://www.gudasoft.com/uncategorized/02/18/532/last-thinks-that-i-have-read/2009#comments</comments>
		<pubDate>Wed, 18 Feb 2009 14:45:46 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/uncategorized/02/18/532/last-thinks-that-i-have-read/2009</guid>
		<description><![CDATA[http://railsguts.com/ http://www.espace.com.eg/neverblock http://m.onkey.org/2008/11/17/ruby-on-rack-1 http://m.onkey.org/ http://www.gnome-db.org/Download http://loriholden.com/ http://www.bestechvideos.com/ Flex http://www.adobe.com/devnet/flex/articles/total_training_ch1.html# http://www.adobe.com/devnet/flex/learn/programmer/learningpath.html http://www.deitel.com/ResourceCenters/Programming/AdobeFlex/AdobeFlexVideos/tabid/1699/Default.aspx http://conference.startup-bg.org/2008/?page_id=696]]></description>
			<content:encoded><![CDATA[<p>http://railsguts.com/</p>
<p>http://www.espace.com.eg/neverblock</p>
<p>http://m.onkey.org/2008/11/17/ruby-on-rack-1</p>
<p>http://m.onkey.org/</p>
<p>http://www.gnome-db.org/Download</p>
<p>http://loriholden.com/</p>
<p>http://www.bestechvideos.com/</p>
<p>Flex</p>
<ul>
<li><a href="http://www.adobe.com/devnet/flex/articles/total_training_ch1.html#">http://www.adobe.com/devnet/flex/articles/total_training_ch1.html#</a></li>
<li><a href="http://www.adobe.com/devnet/flex/learn/programmer/learningpath.html">http://www.adobe.com/devnet/flex/learn/programmer/learningpath.html</a></li>
<li><a href="http://www.deitel.com/ResourceCenters/Programming/AdobeFlex/AdobeFlexVideos/tabid/1699/Default.aspx">http://www.deitel.com/ResourceCenters/Programming/AdobeFlex/AdobeFlexVideos/tabid/1699/Default.aspx</a></li>
</ul>
<p><a href="http://conference.startup-bg.org/2008/?page_id=696">http://conference.startup-bg.org/2008/?page_id=696</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/02/18/532/last-thinks-that-i-have-read/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System monitoring</title>
		<link>http://www.gudasoft.com/uncategorized/01/25/502/system-monitoring/2009</link>
		<comments>http://www.gudasoft.com/uncategorized/01/25/502/system-monitoring/2009#comments</comments>
		<pubDate>Sun, 25 Jan 2009 11:44:19 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[monitor]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/uncategorized/01/25/502/system-monitoring/2009</guid>
		<description><![CDATA[http://pandorafms.org/ http://ganglia.info/?page_id=66 ntop]]></description>
			<content:encoded><![CDATA[<p>http://pandorafms.org/</p>
<p>http://ganglia.info/?page_id=66</p>
<p>ntop</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/01/25/502/system-monitoring/2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X Windows for MS Windows</title>
		<link>http://www.gudasoft.com/english/linux/10/16/163/x-windows-for-ms-windows/2008</link>
		<comments>http://www.gudasoft.com/english/linux/10/16/163/x-windows-for-ms-windows/2008#comments</comments>
		<pubDate>Thu, 16 Oct 2008 17:49:57 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=163</guid>
		<description><![CDATA[The one I use is Xming but it is rare. Most often I prefer the integrated in Gnome VNC. The reason I am posting this link is that sometimes I really need and want to connect to my desktop machine in this way but I cant find good software. So I decide that my blog [...]]]></description>
			<content:encoded><![CDATA[<p>The one I use is <a href="http://freedesktop.org/wiki/Xming">Xming</a> but it is rare. Most often I prefer the integrated in Gnome VNC.</p>
<p>The reason I am posting this link is that sometimes I really need and want to connect to my desktop machine in this way but I cant find good software. So I decide that my blog is the perfect place to note this.</p>
<p>xserver</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/10/16/163/x-windows-for-ms-windows/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux screen cheatsheat</title>
		<link>http://www.gudasoft.com/english/linux/10/08/148/linux-screen-cheatsheat/2008</link>
		<comments>http://www.gudasoft.com/english/linux/10/08/148/linux-screen-cheatsheat/2008#comments</comments>
		<pubDate>Wed, 08 Oct 2008 16:22:07 +0000</pubDate>
		<dc:creator>guda</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=148</guid>
		<description><![CDATA[Key Action Notes Ctrl+a c new window Ctrl+a n next window I bind F12 to this Ctrl+a p previous window I bind F11 to this Ctrl+a &#8220; select window from list I have window list in the status line Ctrl+a Ctrl+a previous window viewed Ctrl+a S split terminal horizontally into regions Ctrl+a c to create [...]]]></description>
			<content:encoded><![CDATA[<table class="pixelbeat" border="0">
<tbody>
<tr class="pbtitle">
<td><strong>Key</strong></td>
<td><strong>Action</strong></td>
<td><strong>Notes</strong></td>
</tr>
<tr>
<td>Ctrl+a c</td>
<td>new window</td>
<td></td>
</tr>
<tr>
<td>Ctrl+a n</td>
<td>next window</td>
<td>I bind F12 to this</td>
</tr>
<tr>
<td>Ctrl+a p</td>
<td>previous window</td>
<td>I bind F11 to this</td>
</tr>
<tr>
<td>Ctrl+a &#8220;</td>
<td>select window from list</td>
<td>I have window list in the status line</td>
</tr>
<tr>
<td>Ctrl+a Ctrl+a</td>
<td>previous window viewed</td>
<td></td>
</tr>
<tr class="pbtitle">
<td><strong> </strong></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Ctrl+a S</td>
<td>split terminal horizontally into regions</td>
<td>Ctrl+a c to create new window there</td>
</tr>
<tr>
<td>Ctrl+a :resize</td>
<td>resize region</td>
<td></td>
</tr>
<tr>
<td>Ctrl+a :fit</td>
<td>fit screen size to new terminal size</td>
<td>Ctrl+a F is the same. Do after resizing xterm</td>
</tr>
<tr>
<td>Ctrl+a :remove</td>
<td>remove region</td>
<td>Ctrl+a X is the same</td>
</tr>
<tr>
<td>Ctrl+a tab</td>
<td>Move to next region</td>
<td></td>
</tr>
<tr class="pbtitle">
<td><strong> </strong></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Ctrl+a d</td>
<td>detach screen from terminal</td>
<td>Start screen with -r option to reattach</td>
</tr>
<tr>
<td>Ctrl+a A</td>
<td>set window title</td>
<td></td>
</tr>
<tr>
<td>Ctrl+a x</td>
<td>lock session</td>
<td>Enter user password to unlock</td>
</tr>
<tr>
<td>Ctrl+a [</td>
<td>enter scrollback/copy mode</td>
<td>Enter to start and end copy region. Ctrl+a ] to leave this mode</td>
</tr>
<tr>
<td>Ctrl+a ]</td>
<td>paste buffer</td>
<td>Supports pasting between windows</td>
</tr>
<tr>
<td>Ctrl+a &gt;</td>
<td>write paste buffer to file</td>
<td>useful for copying between screens</td>
</tr>
<tr>
<td>Ctrl+a &lt;</td>
<td>read paste buffer from file</td>
<td>useful for pasting between screens</td>
</tr>
<tr class="pbtitle">
<td><strong> </strong></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Ctrl+a ?</td>
<td>show key bindings/command names</td>
<td>Note unbound commands only in man page</td>
</tr>
<tr>
<td>Ctrl+a :</td>
<td>goto screen command prompt</td>
<td>up shows last command entered</td>
</tr>
</tbody>
</table>
<h1>Configuration</h1>
<p>/etc/screenrc</p>
<pre>  multiuser on
  acladd root mongrel</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/10/08/148/linux-screen-cheatsheat/2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dual Monitors with NVidia</title>
		<link>http://www.gudasoft.com/english/linux/05/20/47/dual-monitors-with-nvidia/2008</link>
		<comments>http://www.gudasoft.com/english/linux/05/20/47/dual-monitors-with-nvidia/2008#comments</comments>
		<pubDate>Tue, 20 May 2008 07:24:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gudasoft.com/?p=47</guid>
		<description><![CDATA[aptitude install nvidia-glx-new aptitude install nvidia-settings Some options that you can put in the Screen section /etc/X11/xorg.conf Option &#8220;NoLogo&#8221; &#8220;True&#8221; Option &#8220;RenderAccel&#8221; &#8220;True&#8221; # This turns on NVidias TwinView Option &#8220;TwinView&#8221; # Option &#8220;MetaModes&#8221; &#8220;1280&#215;1024&#8243; &#8220;1152&#215;864&#8243; &#8220;1024&#215;768&#8243; # LeftOf, RightOf, Below, Above, or Clone. # Option &#8220;TwinViewOrientation&#8221; &#8220;LeftOf&#8221;]]></description>
			<content:encoded><![CDATA[<p>aptitude install nvidia-glx-new<br />
aptitude install nvidia-settings</p>
<p>Some options that you can put in the Screen section</p>
<p>/etc/X11/xorg.conf<br />
    Option         &#8220;NoLogo&#8221; &#8220;True&#8221;<br />
    Option         &#8220;RenderAccel&#8221; &#8220;True&#8221;<br />
    # This turns on NVidias TwinView<br />
    Option &#8220;TwinView&#8221;<br />
    # Option &#8220;MetaModes&#8221;  &#8220;1280&#215;1024&#8243; &#8220;1152&#215;864&#8243; &#8220;1024&#215;768&#8243;<br />
    # LeftOf, RightOf, Below, Above, or Clone.<br />
    # Option &#8220;TwinViewOrientation&#8221; &#8220;LeftOf&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/english/linux/05/20/47/dual-monitors-with-nvidia/2008/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>vino server password fix</title>
		<link>http://www.gudasoft.com/uncategorized/04/22/7/vino-server-password-fix/2008</link>
		<comments>http://www.gudasoft.com/uncategorized/04/22/7/vino-server-password-fix/2008#comments</comments>
		<pubDate>Tue, 22 Apr 2008 09:03:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubunto]]></category>

		<guid isPermaLink="false">http://blog.gudasoft.com/?p=7</guid>
		<description><![CDATA[Gnome has easy to use remote desktop feature provided by the vino server. It was time taking for me to find why the password authentication doesn&#8217;t work, and aways rejects my passwords. I have used the screen System =&#62; Preferences =&#62; Remote Desktop to change the password. I have tried  also to change/hash it directly [...]]]></description>
			<content:encoded><![CDATA[<p>Gnome has easy to use remote desktop feature provided by the vino server.</p>
<p>It was time taking for me to find why the password authentication doesn&#8217;t work, and aways rejects my passwords.</p>
<ul>
<li>I have used the screen System =&gt; Preferences =&gt; Remote Desktop to change the password.</li>
<li>I have tried  also to change/hash it directly in ~/.gconf/desktop/gnome/remote_access/%gconf.xml</li>
</ul>
<p>But it doesn&#8217;t work because I have another version of VNC server installed on my Ubunto box. When I have removed the ~/.vnc directory vino-server manage to login with the passwords</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gudasoft.com/uncategorized/04/22/7/vino-server-password-fix/2008/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

