<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6353461934874208974</id><updated>2011-10-14T17:35:52.106+05:30</updated><title type='text'>Microsoft/RedHat</title><subtitle type='html'>Get The best knowledge of Microsoft and RedHat network</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://brchavan.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://brchavan.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Balasaheb Ratan Chavan</name><uri>http://www.blogger.com/profile/04845958383665832504</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://4.bp.blogspot.com/-Ycuvf3gKIi4/TpglkizTGOI/AAAAAAAAAE4/tYrx6UNhTPg/s220/Capture.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6353461934874208974.post-487893248491769241</id><published>2011-07-05T17:01:00.001+05:30</published><updated>2011-07-05T17:03:38.230+05:30</updated><title type='text'>Important OpenSSH client tools</title><content type='html'>&lt;strong&gt;Important OpenSSH client tools - scp, sftp, ssh, ssh-keygen, ssh-copy-id, slogin &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;scp&lt;/strong&gt;&lt;br /&gt;The scp tool is used to copy files from one computer to another while encrypting the data.&lt;br /&gt;&lt;br /&gt;Example 1 – Below command will copy myfile.txt securely to a remote machine: &lt;br /&gt;&lt;br /&gt;[root@RHEL04 ~]# scp myfile.txt tintin@192.168.1.106:&lt;br /&gt;The authenticity of host '192.168.1.106 (192.168.1.106)' can't be established.&lt;br /&gt;RSA key fingerprint is 88:8e:46:35:ac:dc:5e:73:f2:ce:9a:29:41:f5:73:fb.&lt;br /&gt;Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;Warning: Permanently added '192.168.1.106' (RSA) to the list of known hosts.&lt;br /&gt;tintin@192.168.1.106's password: &lt;br /&gt;myfile.txt 100% 48KB 47.9KB/s 00:00 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Example 2 – Below command will copy mynewfile.txt securely from a remote machine to your machine: &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;[root@RHEL04 ~]# scp tintin@192.168.1.106:mynewfile.txt mylocalfile.txt&lt;br /&gt;tintin@192.168.1.106's password: &lt;br /&gt;mynewfile.txt 100% 575KB 575.1KB/s 00:00&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Note: To see more details about the status of command, use the verbose mode (-v).&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;sftp&lt;/strong&gt;&lt;br /&gt;The sftp tool is an FTP like command-line tool, which can be used to securely transfer files from one system to another.&lt;br /&gt;&lt;br /&gt;Exmple: &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;[root@RHEL04 ~]# sftp root@192.168.1.105&lt;br /&gt;Connecting to 192.168.1.105...&lt;br /&gt;root@192.168.1.105's password: &lt;br /&gt;sftp&gt; &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;help&lt;br /&gt;Available commands:&lt;br /&gt;cd path Change remote directory to 'path'&lt;br /&gt;lcd path Change local directory to 'path'&lt;br /&gt;chgrp grp path Change group of file 'path' to 'grp'&lt;br /&gt;chmod mode path Change permissions of file 'path' to 'mode'&lt;br /&gt;chown own path Change owner of file 'path' to 'own'&lt;br /&gt;help Display this help text&lt;br /&gt;get remote-path [local-path] Download file&lt;br /&gt;lls [ls-options [path]] Display local directory listing&lt;br /&gt;ln oldpath newpath Symlink remote file&lt;br /&gt;lmkdir path Create local directory&lt;br /&gt;lpwd Print local working directory&lt;br /&gt;ls [path] Display remote directory listing&lt;br /&gt;lumask umask Set local umask to 'umask'&lt;br /&gt;&lt;br /&gt;mkdir path Create remote directory&lt;br /&gt;progress Toggle display of progress meter&lt;br /&gt;&lt;br /&gt;put local-path [remote-path] Upload file&lt;br /&gt;&lt;br /&gt;pwd Display remote working directory&lt;br /&gt;&lt;br /&gt;exit Quit sftp&lt;br /&gt;&lt;br /&gt;quit Quit sftp&lt;br /&gt;&lt;br /&gt;rename oldpath newpath Rename remote file&lt;br /&gt;&lt;br /&gt;rmdir path Remove remote directory&lt;br /&gt;&lt;br /&gt;rm path Delete remote file&lt;br /&gt;&lt;br /&gt;symlink oldpath newpath Symlink remote file&lt;br /&gt;&lt;br /&gt;version Show SFTP version&lt;br /&gt;&lt;br /&gt;!command Execute 'command' in local shell&lt;br /&gt;! Escape to local shell&lt;br /&gt;? Synonym for help&lt;br /&gt;sftp&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;ssh&lt;/strong&gt;&lt;br /&gt;The ssh command is used to securely log in to a remote system or execute a command on a remote system. &lt;br /&gt;&lt;br /&gt;The most important OpenSSH utility is ssh, which is a secure alternative for rlogin, rsh, and telnet. The ssh command allows users to remotely log in to a system from another system using an encrypted transfer protocol. Every transfer starting with the username and password sent for authentication is encrypted so it can’t be easily read if intercepted. The system being connected to is considered the server. The system being connected from is called the client.&lt;br /&gt;&lt;br /&gt;To log in to a system with ssh, use the following command, where &lt;hostname&gt; is the hostname, fully qualified domain name, or IP address of the remote system. &lt;br /&gt;&lt;br /&gt;The following example shows how to use ssh command.&lt;br /&gt;&lt;br /&gt;[root@RHEL04 ~]# ssh root@RHEL05&lt;br /&gt;The authenticity of host 'rhel05 (192.168.1.105)' can't be established.&lt;br /&gt;RSA key fingerprint is 60:7f:ec:a0:6f:c4:cd:54:5c:53:06:61:53:4f:47:25.&lt;br /&gt;Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;Warning: Permanently added 'rhel05' (RSA) to the list of known hosts.&lt;br /&gt;root@rhel05's password: &lt;br /&gt;Last login: Fri Aug 7 12:38:51 2009 from 192.168.1.104&lt;br /&gt;[root@RHEL05 ~]# hostname&lt;br /&gt;RHEL05.mynet.com&lt;br /&gt;&lt;br /&gt;If you want only to execute one command on a remote machine and view the output, you can pass the command as an argument as shown below.&lt;br /&gt;&lt;br /&gt;[root@RHEL01 ~]# ssh root@RHEL03.omnisecu.com "hostname"&lt;br /&gt;root@rhel03.omnisecu.com's password: &lt;br /&gt;RHEL03.omnisecu.com&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;ssh-keygen&lt;/strong&gt;&lt;br /&gt;Generates SSH DSA/RSA public/private key pairs. ssh-keygen can create RSA keys for use by SSH protocol version 1 and RSA or DSA keys for use by SSH protocol version 2. The type of key to be generated is specified with the -t option. If invoked without any arguments, ssh-keygen will generate an RSA key for use in SSH protocol 2 connections.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;[root@RHEL04 .ssh]# ssh-keygen&lt;/strong&gt; &lt;br /&gt;Generating public/private rsa key pair.&lt;br /&gt;Enter file in which to save the key (/root/.ssh/id_rsa): &lt;br /&gt;Enter passphrase (empty for no passphrase): &lt;br /&gt;Enter same passphrase again: &lt;br /&gt;Your identification has been saved in /root/.ssh/id_rsa.&lt;br /&gt;Your public key has been saved in /root/.ssh/id_rsa.pub.&lt;br /&gt;The key fingerprint is:&lt;br /&gt;1d:6e:09:e3:60:b2:4f:08:ac:e2:33:47:c1:c8:24:a7 root@RHEL04.mynet.com&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;ssh-copy-id&lt;/strong&gt;&lt;br /&gt;The ssh-copy-id tool is used to install your key in a remote machine’s authorized_keys&lt;br /&gt;&lt;br /&gt;[root@RHEL04 .ssh]# ssh-copy-id -i id_rsa.pub root@192.168.1.105&lt;br /&gt;10&lt;br /&gt;The authenticity of host '192.168.1.105 (192.168.1.105)' can't be established.&lt;br /&gt;RSA key fingerprint is 60:7f:ec:a0:6f:c4:cd:54:5c:53:06:61:53:4f:47:25.&lt;br /&gt;Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;Warning: Permanently added '192.168.1.105' (RSA) to the list of known hosts.&lt;br /&gt;root@192.168.1.105's password: &lt;br /&gt;Now try logging into the machine, with "ssh 'root@192.168.1.105'", and check in:&lt;br /&gt;&lt;br /&gt;.ssh/authorized_keys&lt;br /&gt;&lt;br /&gt;to make sure we haven't added extra keys that you weren't expecting.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6353461934874208974-487893248491769241?l=brchavan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brchavan.blogspot.com/feeds/487893248491769241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://brchavan.blogspot.com/2011/07/important-openssh-client-tools.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/487893248491769241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/487893248491769241'/><link rel='alternate' type='text/html' href='http://brchavan.blogspot.com/2011/07/important-openssh-client-tools.html' title='Important OpenSSH client tools'/><author><name>Balasaheb Ratan Chavan</name><uri>http://www.blogger.com/profile/04845958383665832504</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://4.bp.blogspot.com/-Ycuvf3gKIi4/TpglkizTGOI/AAAAAAAAAE4/tYrx6UNhTPg/s220/Capture.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6353461934874208974.post-7042122242341426459</id><published>2010-10-06T19:57:00.003+05:30</published><updated>2010-10-06T20:37:25.955+05:30</updated><title type='text'>History of Linux</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_c1ftzRqVlNc/TKyQnQSX-fI/AAAAAAAAAEA/4ZFxeERntME/s1600/Linus_Torvalds.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 209px; height: 320px;" src="http://3.bp.blogspot.com/_c1ftzRqVlNc/TKyQnQSX-fI/AAAAAAAAAEA/4ZFxeERntME/s320/Linus_Torvalds.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5524949846938089970" /&gt;&lt;/a&gt;&lt;br /&gt;The History of Linux began in 1991 with the commencement of a personal project by a Finnish student, Linus Torvalds, to create a new operating system kernel.&lt;br /&gt;&lt;br /&gt;Since then the resulting Linux kernel has been marked by constant growth throughout its history. Since the initial release of its source code in 1991, it has grown from a small number of C files under a license prohibiting commercial distribution to its state in 2009 of over 370 megabytes of source under the GNU General Public License.&lt;br /&gt;&lt;br /&gt;In 1991, in Helsinki, Linus Torvalds began a project that later became the Linux kernel. It was initially a terminal emulator, which Torvalds used to access the large UNIX servers of the university. He wrote the program specifically for the hardware he was using and independent of an operating system because he wanted to use the functions of his new PC with an 80386 processor&lt;br /&gt;Linus Torvalds had wanted to call his invention Freax, a portmanteau of "freak", "free", and "x" (as an allusion to Unix). During the start of his work on the system, he stored the files under the name "Freax" for about half of a year. Torvalds had already considered the name "Linux," but initially dismissed it as too egotistical.[7]&lt;br /&gt;&lt;br /&gt;In order to facilitate development, the files were uploaded to the FTP server (ftp.funet.fi) of FUNET in September 1991. Ari Lemmke, Torvald's coworker at the University of Helsinki who was one of the volunteer administrators for the FTP server at the time, did not think that "Freax" was a good name. So, he named the project "Linux" on the server without consulting Torvalds.[7] Later, however, Torvalds consented to "Linux".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6353461934874208974-7042122242341426459?l=brchavan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brchavan.blogspot.com/feeds/7042122242341426459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://brchavan.blogspot.com/2010/10/history-of-linux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/7042122242341426459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/7042122242341426459'/><link rel='alternate' type='text/html' href='http://brchavan.blogspot.com/2010/10/history-of-linux.html' title='History of Linux'/><author><name>Balasaheb Ratan Chavan</name><uri>http://www.blogger.com/profile/04845958383665832504</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://4.bp.blogspot.com/-Ycuvf3gKIi4/TpglkizTGOI/AAAAAAAAAE4/tYrx6UNhTPg/s220/Capture.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_c1ftzRqVlNc/TKyQnQSX-fI/AAAAAAAAAEA/4ZFxeERntME/s72-c/Linus_Torvalds.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6353461934874208974.post-8880678555135233391</id><published>2010-06-21T09:34:00.002+05:30</published><updated>2010-06-21T09:38:16.162+05:30</updated><title type='text'>How to Join to my blog?</title><content type='html'>&lt;strong&gt;Eyes step&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;1.Click on &lt;strong&gt;followers&lt;/strong&gt;&lt;br /&gt;2.Join with your account&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6353461934874208974-8880678555135233391?l=brchavan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://brchavan.blogspot.com/feeds/8880678555135233391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://brchavan.blogspot.com/2010/06/how-to-join-to-my-blog.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/8880678555135233391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/8880678555135233391'/><link rel='alternate' type='text/html' href='http://brchavan.blogspot.com/2010/06/how-to-join-to-my-blog.html' title='How to Join to my blog?'/><author><name>Balasaheb Ratan Chavan</name><uri>http://www.blogger.com/profile/04845958383665832504</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://4.bp.blogspot.com/-Ycuvf3gKIi4/TpglkizTGOI/AAAAAAAAAE4/tYrx6UNhTPg/s220/Capture.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6353461934874208974.post-4602220732002042908</id><published>2010-06-18T09:12:00.002+05:30</published><updated>2010-06-18T09:20:21.838+05:30</updated><title type='text'>MY View</title><content type='html'>Hello Everybody &lt;br /&gt;This is a great opportunity to me to gives best knowledge of computer networking to all of you.&lt;br /&gt;In This blog site you finds the best Notes, Images, Audio, and Video of networking.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6353461934874208974-4602220732002042908?l=brchavan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='enclosure' type='' href='http://view.com' length='0'/><link rel='replies' type='application/atom+xml' href='http://brchavan.blogspot.com/feeds/4602220732002042908/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://brchavan.blogspot.com/2010/06/my-view.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/4602220732002042908'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6353461934874208974/posts/default/4602220732002042908'/><link rel='alternate' type='text/html' href='http://brchavan.blogspot.com/2010/06/my-view.html' title='MY View'/><author><name>Balasaheb Ratan Chavan</name><uri>http://www.blogger.com/profile/04845958383665832504</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://4.bp.blogspot.com/-Ycuvf3gKIi4/TpglkizTGOI/AAAAAAAAAE4/tYrx6UNhTPg/s220/Capture.JPG'/></author><thr:total>0</thr:total></entry></feed>
