<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Login on Amit Agarwal Linux Blog</title>
    <link>/tags/login/</link>
    <description>Recent content in Login on Amit Agarwal Linux Blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <lastBuildDate>Fri, 19 Nov 2010 15:13:30 +0000</lastBuildDate>
    
	<atom:link href="/tags/login/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Screen enable/disable logging in all windows</title>
      <link>/2010/11/19/screen-enabledisable-loggin-windows/</link>
      <pubDate>Fri, 19 Nov 2010 15:13:30 +0000</pubDate>
      
      <guid>/2010/11/19/screen-enabledisable-loggin-windows/</guid>
      <description>&lt;!--[ad#ad-2]--&gt;
&lt;p&gt;If you use screen command a lot then this is something that you will like 🙂&lt;/p&gt;
&lt;p&gt;Screen &lt;a class=&#34;zem_slink&#34; title=&#34;GUI widget&#34; rel=&#34;wikipedia&#34; href=&#34;http://en.wikipedia.org/wiki/GUI_widget&#34;&gt;enable/disable&lt;/a&gt; loggin in all windows&lt;/p&gt;
&lt;div class=&#34;codecolorer-container text solarized-light&#34; style=&#34;overflow:auto;white-space:nowrap;width:550px;&#34;&gt;
  &lt;table cellspacing=&#34;0&#34; cellpadding=&#34;0&#34;&gt;
    &lt;tr&gt;
      &lt;td class=&#34;line-numbers&#34;&gt;
        &lt;div&gt;
          1&lt;br /&gt;2&lt;br /&gt;3&lt;br /&gt;
        &lt;/div&gt;
      &lt;/td&gt;
&lt;pre&gt;&lt;code&gt;  &amp;lt;td&amp;gt;
    &amp;lt;div class=&amp;quot;text codecolorer&amp;quot;&amp;gt;
      bindkey ^l at &amp;quot;#&amp;quot; log on&amp;lt;br /&amp;gt; &amp;lt;br /&amp;gt; bindkey ^o at &amp;quot;#&amp;quot; log off
    &amp;lt;/div&amp;gt;
  &amp;lt;/td&amp;gt;
&amp;lt;/tr&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;p&gt;The command when added in screenrc enables logging all open windows by using the C-l (control-l &lt;a class=&#34;zem_slink&#34; title=&#34;Keyboard shortcut&#34; rel=&#34;wikipedia&#34; href=&#34;http://en.wikipedia.org/wiki/Keyboard_shortcut&#34;&gt;key combination&lt;/a&gt;) and disable by C-o . The lines need to be added in separate lines .&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Hotmail login from Linux machine using Firefox.</title>
      <link>/2010/07/15/hotmail-login-from-linux-machine-using-firefox/</link>
      <pubDate>Thu, 15 Jul 2010 02:10:30 +0000</pubDate>
      
      <guid>/2010/07/15/hotmail-login-from-linux-machine-using-firefox/</guid>
      <description>&lt;p&gt;Today I learnt two things. One is that Hotmail has changed the look of the email on the web. Quite good change. Looks good.&lt;/p&gt;
&lt;p&gt;Second is that when loggin in to the hotmail using my Fedora box with Firefox, I was always getting the annoying, you are not on supported browser and saw the fix on &amp;lt;a href=&amp;quot;http://www.linuxquestions.org/questions/linux-newbie-8/hotmail-problems-683894/?posted=1#post3345089&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;this&lt;/a&gt; link. The solution is as simple as changing the &amp;amp;#8221;general.useragent.vendor&amp;amp;#8221; for firefox. The way to do this is :&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Scripts to create logins from bash command – for creating multiple accounts</title>
      <link>/2010/06/09/scripts-to-create-logins-from-bash-command-for-creating-multiple-accounts/</link>
      <pubDate>Wed, 09 Jun 2010 16:57:05 +0000</pubDate>
      
      <guid>/2010/06/09/scripts-to-create-logins-from-bash-command-for-creating-multiple-accounts/</guid>
      <description>&lt;!--[ad#ad-2]--&gt;
&lt;p&gt;Heres the script:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;cat &amp;laquo;EOF &amp;gt; login.sh&lt;br&gt;
for i in  `cat logins` ; do&lt;br&gt;
login=`echo &amp;amp;#8221;$i&amp;amp;#8221;|awk -F&amp;amp;#8221;:&amp;amp;#8221; &#39;{print $2}&amp;amp;#8217;`;&lt;br&gt;
comment=&amp;amp;#8221;`echo &amp;amp;#8221;$i&amp;amp;#8221;|awk -F&amp;amp;#8221;:&amp;amp;#8221; &#39;{print $1}&amp;amp;#8217;`&amp;amp;#8221;;&lt;br&gt;
gr=&amp;amp;#8221;`echo &amp;amp;#8221;$i&amp;amp;#8221;|awk -F&amp;amp;#8221;:&amp;amp;#8221; &#39;{print $3}&amp;amp;#8217;`&amp;amp;#8221;;&lt;br&gt;
echo &amp;amp;#8221;login –&amp;raquo; $login –Comment –&amp;raquo; $comment  –Group –&amp;raquo;$gr  –&amp;amp;#8221;;&lt;br&gt;
echo &amp;amp;#8221;useradd -c &amp;amp;#8221;$comment&amp;amp;#8221; -d /export/home/$login -m -g $gr -s /bin/bash $login&amp;amp;#8221;&lt;br&gt;
useradd -c &amp;amp;#8221;$comment&amp;amp;#8221; -d /export/home/$login -m -g $gr -s /bin/bash $login&lt;br&gt;
done&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;You would need to create file called logins to store the comment, login name and the group. The group must have already been created. Here is an example of the file:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Option to login with any provider.</title>
      <link>/2009/08/20/option-to-login-with-any-provider/</link>
      <pubDate>Thu, 20 Aug 2009 17:16:03 +0000</pubDate>
      
      <guid>/2009/08/20/option-to-login-with-any-provider/</guid>
      <description>&lt;!--[ad#ad-2]--&gt;
&lt;p&gt;I have enabled the following logins on my site.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&amp;quot;http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Amit-Agarwal-›-Log-In_1250790644706.png&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;size-full wp-image-942&amp;quot; title=&amp;quot;Amit Agarwal › Log In&amp;quot; src=&amp;quot;http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Amit-Agarwal-›-Log-In_1250790644706.png&amp;quot; alt=&amp;quot;Amit Agarwal › Log In&amp;quot; width=&amp;quot;349&amp;quot; height=&amp;quot;185&amp;quot; /&amp;gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope you like it that you dont have to remember one more login 🙂&lt;/p&gt;</description>
    </item>
    
  </channel>
</rss>
