- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: sharing hard disk between w2k & linux on the s...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 06:35 PM
07-29-2002 06:35 PM
My m/c has dual OS - windows2000 and linux(red hat 7.3).
I have a spare hard disk in the m/c and I want to use that disk as data disk and make it accessible by both the OS. What is the File system type should I set it to? I formatted it as NTFS under w2k and I can't see the disk when I boot with Linux.
Thanks in advance,
Vimala.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 08:13 PM
07-29-2002 08:13 PM
Re: sharing hard disk between w2k & linux on the same m/c
If you enable NTFS support in "make menuconfig" or "make xconfig" then reconfigure your kenel, then you will be able to read NTFS from Linux.
I am not sure current NTFS driver support R/W or Read ONLY. It was said NTFS driver is read only.
Talking about from WIN2K to Linux,
you will not see the Linux partition from Win2K file manager.
You may use following.
http://www.it.fht-esslingen.de/~zimmerma/software/ltools.htm
I think use fat partition for your data exchange purpose is the best.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 07:21 AM
07-30-2002 07:21 AM
Re: sharing hard disk between w2k & linux on the same m/c
I think writing to an ntfs partition from
linux is still experimental , so theres
the possibility you can have data corruption.
regards,
steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 10:29 AM
07-30-2002 10:29 AM
Solutionon both machines in a non-experimental mode
then partition that disk as vfat. In
Linux's fdisk it will show up as "Win95 FAT32" ; in Win2k the option is FAT32.
To mount that disk so you can see in in
Linux you have to....
1) Create a directory
e.g. (mkdir /mnt/shared)
2) Mount the drive
e.g. (mount -t vfat /dev/whatever /mnt/shared)
(You may already have NTFS support in your kernel so try "mount -t nfts ....." for fun.)
A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 04:56 PM
07-30-2002 04:56 PM
Re: sharing hard disk between w2k & linux on the same m/c
hth
Mark