- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Windows drives in Linux in a dual boot system
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-14-2004 07:40 PM
07-14-2004 07:40 PM
Windows drives in Linux in a dual boot system
Is it possible...? If yes..how?
Assume that I have both Fat32 and NTFS partitions...
Thanks champs in advance....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2004 08:47 PM
07-14-2004 08:47 PM
Re: Windows drives in Linux in a dual boot system
mount -t vfat /dev/hda1 /mnt
Assuming you want it on /mnt. You can then access the files as a normal unix system.
Beware NTFS though. Unless you are running the very latest 2.6 kernel you may find that writing to the filesystem causes problems that need to be repaired before you unmount it again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2004 08:50 PM
07-14-2004 08:50 PM
Re: Windows drives in Linux in a dual boot system
If it's a fat32, then it's quite easy :
http://www.europe.redhat.com/documentation/rhl9/rhl-gsg-en-9/s1-q-and-a-windows.php3
If it's an NTFS, then basically process is the same, apart from the fact that it's considered as risky to write on it as windows will complain on reboot.
to support NTFS file system, you need to patch your kernel, from here :
http://linux-ntfs.sourceforge.net/downloads.html
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2004 10:19 PM
07-14-2004 10:19 PM
Re: Windows drives in Linux in a dual boot system
With Redhat (and Fedora) fat32 support comes by default
you don't even have to specify the mount type when mounting.
For NTFS you have to add the module to the kernel.This can be done or by downloading the appropriate rpm -for your kenel version or by compiling the kernel by your self.
There's no write support though for ntfs yet.
So you can only mount ntfs as read only.However there's limited read/write support for NTFS 4 (windows NT),but it's not recommened to use it cause it corrupts the file system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2004 11:08 PM
07-14-2004 11:08 PM
Re: Windows drives in Linux in a dual boot system
on the begining,
fat32(vfat) is accessible for rw, but
NTFS is secure for read only (few moths ago still was), write support is problematic - see on the net for following info
As was mentioned, support in kernel is needed
Check this by:
# cat /boot/config-2.xxx| grep -i ntfs
CONFIG_NTFS_FS=m
(with default installation vfat and ntfs support comes like module)
after that make mount point where fs will be connected:
mkdir /win
and mount the fs:
mount -t vfat /dev/hdax /win
add new entry into fstab for automatic mount in boot process:
/dev/hda1 /win vfat users,gid=users,umask=0002,iocharset=xxx,code=437 0 0
hope this will help you
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2004 06:34 AM
07-15-2004 06:34 AM
Re: Windows drives in Linux in a dual boot system
You can backup VFAT files with
You can backup just a file, several files,
a directory, or the entire disk.
I backup an entire windoze 98 disk to tape.
You can then nuke the disk, and (with a little
bit of work) restore from tape.
Works GREAT - and beats the heck out of
the make-believe backup software that is
available for windoze.
regards,
tonyp