Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
03-12-2005, 05:30 AM
|
#1
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Rep:
|
simple question
how do i see my windows directories and file in fedora core 3 linux?
All i can see is the linux drive, hardware finder finds the device, and calls it hda and hda1 or something.
but i can't see any of my files and folders,
Please help me. Please. Pretty Please
|
|
|
03-12-2005, 05:34 AM
|
#2
|
LQ Guru
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522
Rep:
|
hi there
visit the "My help pages" section at
www.linux-iips.tk
and u can get some docs on mounting drives in linux
regards
|
|
|
03-12-2005, 05:41 AM
|
#3
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Original Poster
Rep:
|
will try that out, thankyou times infiniti
|
|
|
03-12-2005, 05:56 AM
|
#4
|
Member
Registered: Feb 2005
Location: Kerala(God's own country)
Distribution: Redhat-8
Posts: 35
Rep:
|
for viewing a widows drive from linx u have to mount it to linux directory tree.
1)crere a directory say "wind" in ur linux directory.
2)suppose if ur windows is installed in ur first primary partition it will be taken as hda1
so type "mount /dev/hda1 wind" at command prompt
3)now u can see the files in ur windows directory under wind folder
4)usually only root can do this
try this
|
|
|
03-12-2005, 06:40 AM
|
#5
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Original Poster
Rep:
|
Well what an experience. figured out after a while what window to get up to enter in these commands. did that, after a while of fumbling around linux i used this thing which asked me for some password then i got into root i think.
Anyway it said and i quote "fs type not supported by kernel" i'm using fedora core 3.
the file system is a standard xp ntfs volume.
Where should i go from here?
|
|
|
03-12-2005, 06:56 AM
|
#6
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Original Poster
Rep:
|
fs type not supported by kernel?
Well what an experience. figured out after a while what window to get up to enter in these commands. did that, after a while of fumbling around linux i used this thing which asked me for some password then i got into root i think.
Anyway it said and i quote "fs type not supported by kernel" i'm using fedora core 3.
the file system is a standard xp ntfs volume.
Where should i go from here?
|
|
|
03-12-2005, 06:59 AM
|
#7
|
Member
Registered: Jan 2005
Location: Between the chair and the desk
Distribution: Debian Sarge, kernel 2.6.13
Posts: 666
Rep:
|
After becoming root (meaning you have to open up the window you mentioned and which probably it's a console) by using 'su', type 'mount -t ntfs -o ro,noexec,umask=000 /dev/hda1 /mnt/hda1' *if* you have already a /mnt/hda1 directory created. If not, create one with 'mkdir /mnt/hda1'.
This is what fssengg was trying to tell you.
Note that I presumed it is hda1; might be not. Also, instead of /mnt/hda1 you can create a directory with another name and location as you wish. And finally, you can "play" around with the umask settings to allow users certain rights over the partition.
|
|
|
03-12-2005, 07:01 AM
|
#8
|
Senior Member
Registered: Feb 2004
Location: Somerset, England
Distribution: Slackware 10.2, Slackware 10.0, Ubuntu 9.10
Posts: 1,938
Rep:
|
NTFS is a horrible filesystem and as such isn't directly supported in the linux kernel. There is an RPM kernel module available somewhere which will give you read access, but writing is still not safe.
Try:
modprobe ntfs
as root
|
|
|
03-12-2005, 07:04 AM
|
#9
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Original Poster
Rep:
|
is that "-o ro" or "-oro,noexec,unmask"? silly question but it's important i get the syntax right since it takes ages for me to return to windows.
also i created a dir called wind under mnt. the command i used was correct for the hard drive, twas just the ntfs thing.
i typed "mount /dev/hda1 /mnt/wind"
|
|
|
03-12-2005, 07:10 AM
|
#10
|
Member
Registered: Jan 2005
Location: Between the chair and the desk
Distribution: Debian Sarge, kernel 2.6.13
Posts: 666
Rep:
|
It is '-o ro...'. This is the syntax most of the command line programs use: 'program_name -option"space"option_value'. I hope it's clearer this time as what I typed as "space" should be interpreted by a single blank character.
And it's not "unmask" but "umask".
|
|
|
03-12-2005, 07:13 AM
|
#11
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Original Poster
Rep:
|
Why was i able to read all files from the hard drive when i booted using a knoppix cd? Does the knoppix cd contain the modules you are talking about?
|
|
|
03-12-2005, 07:31 AM
|
#13
|
LQ Guru
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522
Rep:
|
Quote:
Originally posted by thegreat1
Well what an experience. figured out after a while what window to get up to enter in these commands. did that, after a while of fumbling around linux i used this thing which asked me for some password then i got into root i think.
Anyway it said and i quote "fs type not supported by kernel" i'm using fedora core 3.
the file system is a standard xp ntfs volume.
Where should i go from here?
|
hi there
for ntfs support on fedora core 3
either recompile ur kernel or get the ntfs module from
linux-ntfs.sourceforge.net
regards
|
|
|
03-12-2005, 07:35 AM
|
#14
|
LQ Newbie
Registered: Mar 2005
Location: UK
Distribution: Sony
Posts: 9
Original Poster
Rep:
|
sorry
|
|
|
03-12-2005, 07:59 AM
|
#15
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
The Knoppix kernel is probably configured to read from NTFS partitions and the one from Fedora isn't. If you need this feature in Fedora, you may have to recompile your kernel.
|
|
|
All times are GMT -5. The time now is 12:43 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|