Results 1 to 10 of 37
ok, I'm trying to share a disc to a windows network.
I add the shares in the samba.conf, then go to save it and I dont have permission...( seems I ...
- 01-02-2005 #1Just Joined!
- Join Date
- Jan 2005
- Posts
- 26
cant save anything??
ok, I'm trying to share a disc to a windows network.
I add the shares in the samba.conf, then go to save it and I dont have permission...( seems I dont have permission to do anything in linux!!! getting annoying!) So how do I give myself permission to do things without having to be logged in as root??
Another thing...I have a second hd installed that shows up in harddrake but it doesnt show up in mounts...is it supposed to?
- 01-02-2005 #2
Re: cant save anything??
You will have to mount the drive I think with
Originally Posted by Frunple replace hdb with the disk name and /mnt/disk2 with were you want tomount your drive.Code:mount /dev/hdb /mnt/disk2
p.s. you might have to use su;
dylunio
- 01-02-2005 #3Just Joined!
- Join Date
- Jan 2005
- Posts
- 26
ok, in harddrake the name is hdb so I used that :
mount /dev/hdb /mnt/disk2
exactly what I typed.
I got back:
mount: mount point /mnt/disk2 does not exist
????
- 01-02-2005 #4
The mount point you specified didn't exist so you have to create it with :
now try and mount the driveCode:mkdir /mnt/disk2
dylunio
- 01-03-2005 #5Just Joined!
- Join Date
- Jan 2005
- Posts
- 26
now I have to specify fs type.
So I did:
mount [-t ext3] /dev/hdb /mnt/disk2
didnt work.
- 01-03-2005 #6
I think itshould be :
and I take it that the drive is ext3 and not another kind.Code:mount -t ext3 /dev/hdb /mnt/disk2
dylunio
- 01-03-2005 #7Just Joined!
- Join Date
- Jan 2005
- Posts
- 26
yes it is ext3.
I tried that as well and get:
mount: wrong fs type, bad option, bad superblock on /dev/hdb,
or too many mounted file systems
anymore ideas?
sorry to keep going here but I have some stuff on that drive that I need to get.
Thanks for all your help.
- 01-03-2005 #8
are you sure that /dev/hdb is the drive you want? hdb was only an example
- 01-03-2005 #9
do you have any other drives/partitions you can unmount and then try and mount hdb?
grasping at straws: try another file system type maybe? like ext2?
dylunio
- 01-03-2005 #10
Originally Posted by lakerdonald ok, in harddrake the name is hdb so I used that :
mount /dev/hdb /mnt/disk2


Reply With Quote
