<?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: mounting Windows drive to Linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984041#M77398</link>
    <description>smbmount is used when you have windows filesystem shared on a another machine and you want to mount it on a local machine.&lt;BR /&gt;&lt;BR /&gt;in this case, you just need to mount the filesystem.&lt;BR /&gt;&lt;BR /&gt;1. fdisk -l &lt;HD_NAME&gt;&lt;BR /&gt;&lt;BR /&gt;this will list all the partition names and the partition type (Device and System Columns).&lt;BR /&gt;&lt;BR /&gt;2. ensure that the partition type (also the filesystem type) is compiled in your kernel.&lt;BR /&gt;&lt;BR /&gt;cat /proc/filesystems.&lt;BR /&gt;&lt;BR /&gt;3. If it is a fat filesystem, then by default it is supported. if it is an ntfs file system, you need to either recompile your kernel with the support enabled, or install an rpm (assuming an RPM based system ) from here&lt;BR /&gt;&lt;A href="http://linux-ntfs.sourceforge.net/" target="_blank"&gt;http://linux-ntfs.sourceforge.net/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;4. after this, just mount the filesystem&lt;BR /&gt;&lt;BR /&gt;mount /dev/&lt;DEVICENAME&gt; /mnt/&lt;POINT&gt;&lt;BR /&gt;&lt;BR /&gt;pls revert if you need more help.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;-balaji (back after a training.)&lt;/POINT&gt;&lt;/DEVICENAME&gt;&lt;/HD_NAME&gt;</description>
    <pubDate>Thu, 29 May 2003 10:17:28 GMT</pubDate>
    <dc:creator>Balaji N</dc:creator>
    <dc:date>2003-05-29T10:17:28Z</dc:date>
    <item>
      <title>mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984038#M77395</link>
      <description>How to mount a Windows drive to Linux?</description>
      <pubDate>Thu, 29 May 2003 07:36:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984038#M77395</guid>
      <dc:creator>Yong Shiuh Rong</dc:creator>
      <dc:date>2003-05-29T07:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984039#M77396</link>
      <description>Try smbmount.&lt;BR /&gt;man smbmount should give you all the info you need.</description>
      <pubDate>Thu, 29 May 2003 08:54:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984039#M77396</guid>
      <dc:creator>Darren Chambers</dc:creator>
      <dc:date>2003-05-29T08:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984040#M77397</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;1st check that your samba is runing...&lt;BR /&gt;&lt;BR /&gt;//system/share /dest/mount smbfs username=user,pasword=pass 0 0 &lt;BR /&gt;&lt;BR /&gt;Same format as every other line. &lt;BR /&gt;&lt;BR /&gt;&lt;SOURCE&gt; &lt;DEST&gt; &lt;FSTYPE&gt; &lt;OPTS&gt; &lt;FREQ&gt; &lt;CHKORD&gt; &lt;BR /&gt;&lt;BR /&gt;The source being: &lt;BR /&gt;//NTMachine/Share &lt;BR /&gt;&lt;BR /&gt;Destination path: &lt;BR /&gt;/mnt/YourMountPath &lt;BR /&gt;&lt;BR /&gt;File System Type: &lt;BR /&gt;'smb' of 'smbfs' &lt;BR /&gt;(This was introduced by the Samba sources into the kernel years ago. I remember having to grab kernel patches from Samba and recompiling kernels to do this! Once upon a time, you had to use the tools 'smbmount' and 'smbumount' in order to do what you can now do with 'mount -tsmbfs -ousername=blah //machine/share /mount/pint'. This sill uses the 'smbmount' commands in the background, but they don't have to be used explicitly any more) &lt;BR /&gt;&lt;BR /&gt;Options field: &lt;BR /&gt;username=WindowsUser,password=UserPassword &lt;BR /&gt;(There are of course more options, these are outlined in 'man smbmount') &lt;BR /&gt;&lt;BR /&gt;The last two are the same as always (outlined in 'man fstab'). &lt;BR /&gt;&lt;BR /&gt;&lt;/CHKORD&gt;&lt;/FREQ&gt;&lt;/OPTS&gt;&lt;/FSTYPE&gt;&lt;/DEST&gt;&lt;/SOURCE&gt;</description>
      <pubDate>Thu, 29 May 2003 09:49:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984040#M77397</guid>
      <dc:creator>Punithan</dc:creator>
      <dc:date>2003-05-29T09:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984041#M77398</link>
      <description>smbmount is used when you have windows filesystem shared on a another machine and you want to mount it on a local machine.&lt;BR /&gt;&lt;BR /&gt;in this case, you just need to mount the filesystem.&lt;BR /&gt;&lt;BR /&gt;1. fdisk -l &lt;HD_NAME&gt;&lt;BR /&gt;&lt;BR /&gt;this will list all the partition names and the partition type (Device and System Columns).&lt;BR /&gt;&lt;BR /&gt;2. ensure that the partition type (also the filesystem type) is compiled in your kernel.&lt;BR /&gt;&lt;BR /&gt;cat /proc/filesystems.&lt;BR /&gt;&lt;BR /&gt;3. If it is a fat filesystem, then by default it is supported. if it is an ntfs file system, you need to either recompile your kernel with the support enabled, or install an rpm (assuming an RPM based system ) from here&lt;BR /&gt;&lt;A href="http://linux-ntfs.sourceforge.net/" target="_blank"&gt;http://linux-ntfs.sourceforge.net/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;4. after this, just mount the filesystem&lt;BR /&gt;&lt;BR /&gt;mount /dev/&lt;DEVICENAME&gt; /mnt/&lt;POINT&gt;&lt;BR /&gt;&lt;BR /&gt;pls revert if you need more help.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;-balaji (back after a training.)&lt;/POINT&gt;&lt;/DEVICENAME&gt;&lt;/HD_NAME&gt;</description>
      <pubDate>Thu, 29 May 2003 10:17:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984041#M77398</guid>
      <dc:creator>Balaji N</dc:creator>
      <dc:date>2003-05-29T10:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984042#M77399</link>
      <description>Balaji, &lt;BR /&gt;&lt;BR /&gt;No coffee yet? smbmount is normally used for mounting "remote" filesystems running on a windows machine.&lt;BR /&gt;&lt;BR /&gt;fat,vfat and ntfs is used on "local" file systems -no?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2003 11:33:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984042#M77399</guid>
      <dc:creator>James Wilson_5</dc:creator>
      <dc:date>2003-05-29T11:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984043#M77400</link>
      <description>1) Create a directory under Linux that will link to your Windows drive/partition: &lt;BR /&gt;# mkdir /mnt/win&lt;BR /&gt;2) Mount your Windows drive and link it to this new directory under Linux (Windows disk in this example is /dev/hda1):&lt;BR /&gt;Win98/ME:&lt;BR /&gt;# mount -t vfat /dev/hda1 /mnt/win&lt;BR /&gt;WinNT/Win2000/WinXP:&lt;BR /&gt;mount -t ntfs /dev/hda1 /mnt/win&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2003 11:53:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984043#M77400</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2003-05-29T11:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: mounting Windows drive to Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984044#M77401</link>
      <description>hi james,&lt;BR /&gt;&lt;BR /&gt;yes did have coffee and am relaxed. &lt;BR /&gt;&lt;BR /&gt;but the initial thought i had after reading the question was that he wanted mount a windows dirve which meant a local windows drive. had it been a remote box, he might have told windows share.&lt;BR /&gt;&lt;BR /&gt;but it is how u interpret.&lt;BR /&gt;&lt;BR /&gt;good day.&lt;BR /&gt;-balaji (me off to home)</description>
      <pubDate>Thu, 29 May 2003 11:57:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-windows-drive-to-linux/m-p/2984044#M77401</guid>
      <dc:creator>Balaji N</dc:creator>
      <dc:date>2003-05-29T11:57:33Z</dc:date>
    </item>
  </channel>
</rss>

