LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 07-15-2004, 01:32 AM   #16
rassej
LQ Newbie
 
Registered: Jul 2004
Location: Helsingborg, Sweden
Posts: 2

Rep: Reputation: 0

I have the same problem as above, ive got a NTFS partition on hdb and i want to mount it so that i can use all my stuff, really i dont have anything thats usable riht now on my Linux drive..
 
Old 07-15-2004, 01:53 AM   #17
hoarenet
LQ Newbie
 
Registered: Jun 2004
Distribution: Mandrake 10
Posts: 29

Rep: Reputation: 15
I'm using Mandrake 10 and my windows partion is FAT.

KDE automatically shows (mounts) the windows partion and I can copy any of the files. I even accidentally opened a file, instead of copying it first, from Open Office but, as an earlier poster suggested, this is not a good a good idea
 
Old 07-15-2004, 02:09 AM   #18
Matt.Ramos
Member
 
Registered: Jul 2004
Location: Hopatcong, New Jersey
Posts: 70

Rep: Reputation: 15
This is what i'm getting.. What's wrong?

Code:
root@home:/home/matt# mount /dev/hda1 /windows -t ntfs
mount: wrong fs type, bad option, bad superblock on /dev/hda1,
       or too many mounted file systems
 
Old 07-17-2004, 08:23 AM   #19
krkda
LQ Newbie
 
Registered: Jul 2004
Location: Central Coast, Australia
Distribution: Mandriva 2006
Posts: 12

Rep: Reputation: 0
Redhat 9 actually doesnt support it!!!

According to RedHat, it's kernel acutally doesnt include anything to mount an NTFS file system due to concerns with read write access.

Please read this link for more info:
http://www.pcuser.com.au/pcuser/hs2....256BE6002DCE0A

I had the same trouble with red hat but Mandrake 9.1 does it automatically when you install it for you!!!
 
Old 07-17-2004, 03:43 PM   #20
elyk
Member
 
Registered: Jun 2004
Distribution: Slackware
Posts: 241

Rep: Reputation: 49
If you can't mount an ntfs partition because it's not in the kernel, try "modprobe ntfs" or something similar, then try it. That should give you ntfs support (read-only, of course) as a module.
 
Old 11-09-2004, 03:57 PM   #21
flux*
Newbie
 
Registered: Mar 2004
Location: Denmark
Posts: 19

Rep: Reputation: 0
open /etc/fstab as root and the fellowing line:
/dev/hda1 /mnt/windows vfat noauto,user 0 0
remember to swich /dev/hda1 with the right partition or harddisk. Also remember to create the /mnt/windows dir.
Now you can (u)mount the drive with: (u)mount /mnt/windows
 
Old 11-26-2004, 09:48 PM   #22
PICOspark
Member
 
Registered: Oct 2004
Location: Mandalay, Myanmar.
Distribution: Redhat 9, FreeBSD
Posts: 35

Rep: Reputation: 15
Re: Mount Shared Windows Dir on Different Machine

Quote:
Originally posted by jadeski
If your windows is on another machine and is connected into your LAN (where your linux box is also connected), you can use the smb command:

#smbmount //win-machine-name/shared-dir-name /mount-point

If shared-dir-name is password protected, then you would need to type-in the password.
Hello...

I cant's that's...

I got that's message...

Could not resolve mount point /mount-point

that's why??

PICO
 
Old 11-29-2004, 04:33 AM   #23
flux*
Newbie
 
Registered: Mar 2004
Location: Denmark
Posts: 19

Rep: Reputation: 0
Have you created a mount point? (for example: "/mnt/windows" or "/media/windows")
# mkdir /mount-point
If the mount destination don't exist you can't mount the file system
 
Old 03-04-2005, 10:38 AM   #24
Honoriu
LQ Newbie
 
Registered: Mar 2004
Location: Romania
Posts: 19

Rep: Reputation: 0
yes you can... try to fined : kernel-module-ntfs-2.6.9-1.667smp-2.1.20-0.rr.3.3.i686.rpm (that is for Fedora Core 3) but search for kernel-module-ntfs and you will find it...
So after installing it you will be able to monut ntfs like you did with fat32(/etc/fstab.... )the problem is you will not be able to write on ntfs from linux. You only will be able to copy. I think yoy should give access 777 (chmod 777) to the mount point, but I'm not shure). I had not tried.
Good luck.
 
Old 03-05-2005, 04:22 AM   #25
DaFrawg
LQ Newbie
 
Registered: Jun 2004
Location: The Netherlands
Distribution: Slackware 10.1, Debian Sarge
Posts: 28

Rep: Reputation: 15
Quote:
Originally posted by DaFrawg
Okay, I have a problem mounting an NTFS-partition. If I say

# mount -t ntfs /dev/hda1/ /mnt/hda1/

the kernel says that ntfs is not supported, but the help files of Red Hat 9 say that it IS supported.
I'm not using Red Hat 9 anymore, I installed Slackware and it works fine now. I was a real newbie at the time I wrote it, and I know now that

# modprobe ntfs

could be a solution. If not, download the latest ntfs package, configure, make, make install, modprobe ntfs, mount.
 
Old 03-26-2005, 04:26 PM   #26
alan_the_eagle
LQ Newbie
 
Registered: Mar 2005
Location: Glenrothes, Scotland
Distribution: Red Hat Enterprise
Posts: 3

Rep: Reputation: 0
Re: Mount Shared Windows Dir on Different Machine

Quote:
Originally posted by jadeski
If your windows is on another machine and is connected into your LAN (where your linux box is also connected), you can use the smb command:

#smbmount //win-machine-name/shared-dir-name /mount-point

If shared-dir-name is password protected, then you would need to type-in the password.
Thanks for this tip!

How would I set it up to automatically mount whenever I boot up?

cheers

Alan
 
Old 03-28-2005, 08:28 AM   #27
DaFrawg
LQ Newbie
 
Registered: Jun 2004
Location: The Netherlands
Distribution: Slackware 10.1, Debian Sarge
Posts: 28

Rep: Reputation: 15
Put it in your rc.* scripts (located in /etc/rc.d/) or the scripts in init.d (but I have Slackware, so I don't have that directory). You have to be root to be able to edit those. Maybe mount can be used too, but I'm not sure how. If you can do it through mount instead of smbmount, you could even put those things in fstab. Otherwise, I'd choose to add a few lines to rc.local.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Why can't I mount my Windows hard drive from Linux? axess_denied Linux - Hardware 23 10-23-2006 11:53 PM
how to mount aonther linux hard drive ciberrust Linux - Hardware 12 04-11-2005 01:10 PM
mount windows hard drive without partitioning ultrashawn Linux - Hardware 1 04-09-2005 07:19 AM
Running Windows Games In Linux From Windows Hard Drive Darkstar274 Linux - Games 2 12-25-2003 11:19 PM
how do i mount my windows partitions and secondary hard drive in RH9 kasperl Linux - Newbie 5 10-22-2003 05:26 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration