<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to access a window pc from linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928236#M26701</link>
    <description>Cedric has the most concise, and applicable, answer, but one thing to note: when you specify the password on the command line, it goes into your .bash_history file and could be maliciously used. If you leave off the password, it will prompt you for it before mounting. This will, of course, break any silent operations (start-up, scripts, etc.) so be aware of this caveat.&lt;BR /&gt;&lt;BR /&gt;Example: mount -t smbfs -o username=pouet //my_windows_pc_name/share_name /mnt/ntserver</description>
    <pubDate>Mon, 04 Jun 2007 14:30:21 GMT</pubDate>
    <dc:creator>Tony Berry</dc:creator>
    <dc:date>2007-06-04T14:30:21Z</dc:date>
    <item>
      <title>How to access a window pc from linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928231#M26696</link>
      <description>Dear all,&lt;BR /&gt;&lt;BR /&gt;I am having smb in linux. but how should i access a windows pc frm linux other than ftp. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If any one knows pls tell me.&lt;BR /&gt;&lt;BR /&gt;Rgds&amp;amp;Thanx&lt;BR /&gt;Guna</description>
      <pubDate>Thu, 18 Jan 2007 06:01:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928231#M26696</guid>
      <dc:creator>Guna_2</dc:creator>
      <dc:date>2007-01-18T06:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a window pc from linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928232#M26697</link>
      <description>Hi, this should work fine :&lt;BR /&gt;&lt;BR /&gt;1)Get the windows username/password&lt;BR /&gt;2)On linux create the required mount point:&lt;BR /&gt;mkdir -p /mnt/ntserver&lt;BR /&gt;3)Munt the windows share like this :&lt;BR /&gt;mount -t smbfs -o username=pouet,password=tagada //my_windows/share /mnt/ntserver&lt;BR /&gt;&lt;BR /&gt;Hope that will helps,&lt;BR /&gt;Cedric.</description>
      <pubDate>Thu, 18 Jan 2007 06:47:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928232#M26697</guid>
      <dc:creator>Cédric MELLON</dc:creator>
      <dc:date>2007-01-18T06:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a window pc from linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928233#M26698</link>
      <description>hi Guna,&lt;BR /&gt; you can mount the windows file in linux.&lt;BR /&gt; First checkout in which device your windows files are present. &lt;BR /&gt; Just do "cat /etc/grub.conf".&lt;BR /&gt;&lt;BR /&gt;  See the device name that will boot the windows, something like /dev/hda5,or /dev/hda6 ...etc.&lt;BR /&gt; This is the device name for windows&lt;BR /&gt; Use that device name while mounting.&lt;BR /&gt; First create dir &lt;BR /&gt;&lt;BR /&gt;  # mkdir /mnt/C &lt;BR /&gt;  then mount that device on that dir using mount command. &lt;BR /&gt;&lt;BR /&gt;  # mount -t fstype device dir&lt;BR /&gt;Eg:&lt;BR /&gt;  # mount -t vfat /dev/hda5 /mnt/C&lt;BR /&gt;&lt;BR /&gt;  -t for temparory mounting.&lt;BR /&gt;&lt;BR /&gt;  if you want to do permanent mounting &lt;BR /&gt;  edit /etc/fstab and add the following..&lt;BR /&gt; in my eg:&lt;BR /&gt;&lt;BR /&gt;   /dev/hda5  /mnt/C vfat defaults 0 0&lt;BR /&gt;&lt;BR /&gt;  and then save that file.This will do mount the windows file while loading.&lt;BR /&gt;  You can unmount that device .&lt;BR /&gt; # umount /dev/hda5 &lt;BR /&gt; Suppose if you have D,E dir in windows, you can mount that device also,&lt;BR /&gt; Just check ... hda6,hda7..etc.&lt;BR /&gt; Example:&lt;BR /&gt;  # mkdir D&lt;BR /&gt;  # mount -t vfat /dev/hda6 /mnt/D&lt;BR /&gt;   I think this will works for you.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;sharath</description>
      <pubDate>Mon, 22 Jan 2007 02:07:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928233#M26698</guid>
      <dc:creator>diamond</dc:creator>
      <dc:date>2007-01-22T02:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a window pc from linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928234#M26699</link>
      <description>Diamond,&lt;BR /&gt;&lt;BR /&gt;The subject is mount window's share to linux.It seems confusing from your input:&lt;BR /&gt;1. mount -t , t here means type of the file system, not temporary unless we miss things here.&lt;BR /&gt;2. there is no authentication in your input, does that mean any share from window can be pulled to linux?&lt;BR /&gt;&lt;BR /&gt;can you tell what environment provide you these input?</description>
      <pubDate>Thu, 24 May 2007 09:29:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928234#M26699</guid>
      <dc:creator>John Guster</dc:creator>
      <dc:date>2007-05-24T09:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a window pc from linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928235#M26700</link>
      <description>you can use rdesktop in linux to access the windows PC.&lt;BR /&gt;&lt;BR /&gt;you can also specify the folders on the linux machine which are to be shared during the session.(you will see them as network drives on the windows pc)&lt;BR /&gt;&lt;BR /&gt;For more details and downloads&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.rdesktop.org/" target="_blank"&gt;http://www.rdesktop.org/&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://sourceforge.net/projects/rdesktop/" target="_blank"&gt;http://sourceforge.net/projects/rdesktop/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;cheers</description>
      <pubDate>Thu, 31 May 2007 12:44:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928235#M26700</guid>
      <dc:creator>Srimalik</dc:creator>
      <dc:date>2007-05-31T12:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a window pc from linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928236#M26701</link>
      <description>Cedric has the most concise, and applicable, answer, but one thing to note: when you specify the password on the command line, it goes into your .bash_history file and could be maliciously used. If you leave off the password, it will prompt you for it before mounting. This will, of course, break any silent operations (start-up, scripts, etc.) so be aware of this caveat.&lt;BR /&gt;&lt;BR /&gt;Example: mount -t smbfs -o username=pouet //my_windows_pc_name/share_name /mnt/ntserver</description>
      <pubDate>Mon, 04 Jun 2007 14:30:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-access-a-window-pc-from-linux/m-p/3928236#M26701</guid>
      <dc:creator>Tony Berry</dc:creator>
      <dc:date>2007-06-04T14:30:21Z</dc:date>
    </item>
  </channel>
</rss>

