Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
You can list the partitions with the above. Then you might want to mount the Windows partition manually.
Knoppix usually mount Windows partitions read-only. But if this is not the case you can always mount them.
For the following I assume that your Windows FAT partition is /dev/hda6 (hd - Hard disk, a - 1st hard disk, 6 - sixth partition). If it's NTFS and if your Knoppix doesn't support NTFS things will get a little more complex.
First, create a directory to mount the Windows partition into (or you can use an existing unused one)
Ex:
Code:
mkdir ~/winp
This will create a directory called 'winp' in your home directory.
Then using the following you can mount the Windows partition (/dev/hda5)
Code:
mount /dev/hda6 ~/winp/
or (if it asks for file system type)
Code:
mount -t vfat /dev/hda6 ~/winp/
For options for mounting (eg: read-only, real-time writing) refer the man pages.
After that you can browse you Windows partition at 'winp' directory in your home directory.
samba is for mounting a Linux Disk share for availability in windows. but i want it other way around. from linux to windows share.
Or is there also samba "for windows" package?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.