LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 12-23-2003, 07:21 PM   #1
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Rep: Reputation: 15
Mounting


.

Last edited by ChaosZ3RO; 03-08-2005 at 07:49 AM.
 
Old 12-23-2003, 08:01 PM   #2
320mb
Senior Member
 
Registered: Nov 2002
Location: pikes peak
Distribution: Slackware, LFS
Posts: 2,577

Rep: Reputation: 48
are you trying to mount it as a user or root?
change the line to
Code:
 users, umask=000
 
Old 12-23-2003, 08:59 PM   #3
Skyline
Senior Member
 
Registered: Jun 2003
Distribution: Debian/other
Posts: 2,104

Rep: Reputation: 45
or alternately

defaults,umask=000
 
Old 12-23-2003, 09:23 PM   #4
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Original Poster
Rep: Reputation: 15
.

Last edited by ChaosZ3RO; 03-08-2005 at 07:49 AM.
 
Old 12-23-2003, 09:49 PM   #5
Skyline
Senior Member
 
Registered: Jun 2003
Distribution: Debian/other
Posts: 2,104

Rep: Reputation: 45
Have you created a mount point in /mnt ?

ie - su to Root user in an xterm then

mkdir /mnt/windows
 
Old 12-23-2003, 09:51 PM   #6
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Original Poster
Rep: Reputation: 15
.

Last edited by ChaosZ3RO; 03-08-2005 at 07:48 AM.
 
Old 12-23-2003, 09:54 PM   #7
Skyline
Senior Member
 
Registered: Jun 2003
Distribution: Debian/other
Posts: 2,104

Rep: Reputation: 45
So if you manually navigate to /mnt as a normal user and click on the windows directory icon - what happens?
 
Old 12-23-2003, 09:58 PM   #8
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Original Poster
Rep: Reputation: 15
.

Last edited by ChaosZ3RO; 03-08-2005 at 07:48 AM.
 
Old 12-23-2003, 10:01 PM   #9
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Original Poster
Rep: Reputation: 15
And yes, that's as a normal user.
 
Old 12-23-2003, 10:41 PM   #10
Berhanie
Senior Member
 
Registered: Dec 2003
Location: phnom penh
Distribution: Fedora
Posts: 1,625

Rep: Reputation: 165Reputation: 165
A few thoughts come to mind:

First, make sure your windows parition is really mounted.
Check with the "mount" command to make sure your
/dev/ha3 is mentioned.

Second, if you are trying to mount a Windows XP partition,
the filesystem type should be ntfs rather than vfat.
 
Old 12-23-2003, 10:42 PM   #11
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
After you created /mnt/windows you need to do as root ->
# mount /dev/hda3 /mnt/windows to see it. And what type of filesystem is your Windoze part? What OS are you using?

It won't automatically mount it again until you restart your X window session. You can do this by Ctl + Alt + Backspace, then login again and do startx again. It should be there after all that.

Here's what my three Windoze parts I have in /etc/fstab look like ->
Code:
/dev/hda5        /WinE            vfat        users,umask=1000,rw,auto 0 0
/dev/hdb1        /WinD            vfat        users,umask=1000,rw,auto 0 0
/dev/hdb6        /AppSwap         vfat        users,umask=1000,rw,auto 0 0
I'm able to read and write as a normal user with Konqueror when I click on that Home icon on the desktop. There's nothing special to do, because this automounts them when you boot. Now, if you don't want them mounted like that, there's other steps. NB: I don't mount my Windoze OS partition, just 3 with Programs and Data. I also have them backed up, so if something happens it's not a problem.
 
Old 12-24-2003, 01:00 AM   #12
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Original Poster
Rep: Reputation: 15
.

Last edited by ChaosZ3RO; 03-08-2005 at 07:48 AM.
 
Old 12-24-2003, 01:24 AM   #13
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Quote:
Originally posted by ChaosZ3RO
I'm using Windows XP, but I have a seperate FAT32 that I store everything I use on. That's the one I'm trying to mount.
Okay, then, you should be able to mount it just fine. Mine are all FAT32 and I have no problem on either of my comps mounting under Slack.

Where are you at with the problem now? Can you mount it and read/write to it? If not, could you post the results of
# fdisk -l (you gotta be root for this)
and
$ cat /etc/fstab (you can be a normal user for this)

You should have this ->
Code:
dev/hda3        /mnt/windows            vfat        users,umask=1000,rw,auto 0 0
if you want to read and write whilst in Slack, but if not, use this ->
Code:
/dev/hda3        /mnt/windows            vfat        users,umask=1000,ro,auto 0 0
which makes the feller read only. The difference being rw as read/write, or ro as read only. Either one allows everyone (users) on your Slack box to see it, and mounts it (auto) automatically.

See how easy *nix is once the esoteric documentation is sorted out? Beats the pants off of that Gates feller's OS. Heck, his little diddy can't see my *nix partitions no matter what he does! Ha! Ha! I kinda like that


Last edited by Bruce Hill; 12-24-2003 at 01:26 AM.
 
Old 12-24-2003, 01:49 AM   #14
ChaosZ3RO
Member
 
Registered: Jul 2003
Distribution: Debian
Posts: 108

Original Poster
Rep: Reputation: 15
.

Last edited by ChaosZ3RO; 03-08-2005 at 07:47 AM.
 
Old 12-24-2003, 02:00 AM   #15
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Quote:
Originally posted by ChaosZ3RO
Well I figured out my problem... -_- thanks to your suggestion for fdisk -l, I figured out I have no hda3.... the one I wanted was hda6 =\ Thanks for all the help though =D
That's why I suggested the fdisk -l output. Now, isn't it gratifying to fix your own problems in this wonderful Slack *nix OS?

 
  


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
Mounting an ISO image from a CD different than mounting from HD? NoTiG Linux - Software 4 08-03-2005 04:40 PM
Gnome 2.6 Right click mounting and the mounting system Acetylcholine Linux - Hardware 0 07-25-2004 07:34 AM
Mounting HDD vs. Mounting Filesystem snailophone Linux - Hardware 4 08-12-2003 11:00 AM
Mounting mounting extended partition and its Logical drives desbyleo Linux - Newbie 10 02-18-2002 03:13 PM
mounting Cybergod1983 Linux - General 1 10-08-2001 03:28 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 05:06 PM.

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