Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
smbmount als user
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
schober
n00b
n00b


Joined: 16 Mar 2004
Posts: 7

PostPosted: Tue Mar 16, 2004 9:40 am    Post subject: smbmount als user Reply with quote

Hi!

ich möchte ein sambashare als user mounten, aber die funktioniert nicht.
Fehlermeldung: only root can do that

auszüge aus der fstab
//192.168.1.2/public /mnt/public smbfs defaults,noauto,users

so nun kann ich aber leider nur als root mouten.
mein mountbefehl

mount -t smbfs -o username=name,password=geheim //192.168.1.2/public /mnt/public

hab mal was von anpassungen in der mtab gelesen.

vielleicht hilft das weiter

thanks
schober
Back to top
View user's profile Send private message
Inte
Veteran
Veteran


Joined: 15 Jul 2003
Posts: 1387
Location: Mannheim, GER

PostPosted: Tue Mar 16, 2004 9:45 am    Post subject: Reply with quote

Hi schober. Willkommen im Forum.

Sollte es in der /etc/fstab nicht user anstatt users heißen? Und warum gibst Du den Quellpfad der Freigabe an? Steht doch alles in der fstab. :wink:

Warum machst Du denn kein
Code:
smbmount //192.168.1.2/public /mnt/public


Gruß, Inte.
_________________
Gentoo Linux - Die Metadistribution


Last edited by Inte on Tue Mar 16, 2004 9:50 am; edited 1 time in total
Back to top
View user's profile Send private message
schober
n00b
n00b


Joined: 16 Mar 2004
Posts: 7

PostPosted: Tue Mar 16, 2004 9:49 am    Post subject: Reply with quote

Hi,

danke für die schnelle Antwort. Leider klappt das so auch nicht
Fehlermeldung:
6020: session setup failed: ERRDOS - ERRnoaccess (Access denied.)
SMB connection failed

Schob
Back to top
View user's profile Send private message
Earthwings
Bodhisattva
Bodhisattva


Joined: 14 Apr 2003
Posts: 7753
Location: Germany

PostPosted: Tue Mar 16, 2004 9:55 am    Post subject: Reply with quote

Kannst du es denn als root auf diese Weise mounten?

@Inte: users ist wie user, nur kann es jeder Benutzer (un)mounten.
Back to top
View user's profile Send private message
schober
n00b
n00b


Joined: 16 Mar 2004
Posts: 7

PostPosted: Tue Mar 16, 2004 9:57 am    Post subject: Reply with quote

ja mit root kann ich mounten und umounten.

also muss irgendwie an der mount berechtigung liegen, darum eben ja auch users in der fstab.
gibts da evtl. ne gruppenzugehörigkeit, vgl. su und wheel?
Back to top
View user's profile Send private message
Inte
Veteran
Veteran


Joined: 15 Jul 2003
Posts: 1387
Location: Mannheim, GER

PostPosted: Tue Mar 16, 2004 10:03 am    Post subject: Reply with quote

Hab da gerade was gefunden. Ist sogar noch ganz frisch: https://forums.gentoo.org/viewtopic.php?p=954247#954247
amne wrote:
flammenflitzer wrote:

olaf@Roadrunner olaf $ mount -t iso9660 /dev/cdroms/cdrom1 /mnt/cdrom
mount: Nur »root« kann dies tun
In dieser Form darf es auch nur root machen. Wenn du einfach
Code:
mount /mnt/cdrom
eintippst, wird die fstab gecheckt und da dort auch schon user bei den Optionen dabeisteht, sollte alles gehen.

Scheinbar darfst Du als Benutzer keine Optionen angeben, sondern nur das Zielverzeichnis.

Gruß, Inte.
_________________
Gentoo Linux - Die Metadistribution


Last edited by Inte on Tue Mar 16, 2004 10:42 am; edited 1 time in total
Back to top
View user's profile Send private message
Earthwings
Bodhisattva
Bodhisattva


Joined: 14 Apr 2003
Posts: 7753
Location: Germany

PostPosted: Tue Mar 16, 2004 10:05 am    Post subject: Reply with quote

Falls obiges noch nicht ausreicht, versuch mal
Code:

chown <username>:users /mnt/public
chmod 775 /mnt/public

um die Rechte von /mnt/public anzupassen. <username> natürlich sinnvoll ersetzen. Brauchst Du z.B. für Schreibrechte.
Back to top
View user's profile Send private message
schober
n00b
n00b


Joined: 16 Mar 2004
Posts: 7

PostPosted: Tue Mar 16, 2004 10:11 am    Post subject: Reply with quote

danke für die schnellen Antworten

@Earthwings geht leider nicht

@Inte: hab das gerade mlal probiert. Hier die Fehlermeldung

smbmnt must be installed suid root for direct user mounts (1000,1000)
smbmnt failed: 1

darauf hin hab ich chmod +s /usr/sbin/smbmnt gesetzt. auch kein erfolg
wenn ich auch bei smbmount und smbumount das suid setz. kommt beim mounten die Fehlermeldung, dass das suid nicht gesetzt sein darf??

hoffe ihr wisst weiter
Schob
Back to top
View user's profile Send private message
leuenberger
Tux's lil' helper
Tux's lil' helper


Joined: 13 Jul 2003
Posts: 147
Location: Zurich, ZH, Schweiz

PostPosted: Tue Mar 16, 2004 10:11 am    Post subject: Reply with quote

Die Aussage user=users ist nicht ganz richtig. man mount sagt:

Code:
user   Allow  an ordinary user to mount the file system.  The name of the mounting user is written to mtab so
       that he can unmount the file system again.  This option implies the options noexec, nosuid, and  nodev
       (unless overridden by subsequent options, as in the option line user,exec,dev,suid).

users  Allow  every  user  to  mount  and  unmount  the file system.  This option implies the options noexec,
       nosuid,  and  nodev  (unless   overridden   by   subsequent   options,   as   in   the   option   line
       users,exec,dev,suid).


Gruss Reto
Back to top
View user's profile Send private message
schober
n00b
n00b


Joined: 16 Mar 2004
Posts: 7

PostPosted: Tue Mar 16, 2004 10:15 am    Post subject: Reply with quote

ich weiss, drum hab ich ja auch users stehen, dass es auf jedenfall gehen müsste.
sonst noch nen tipp?
Back to top
View user's profile Send private message
leuenberger
Tux's lil' helper
Tux's lil' helper


Joined: 13 Jul 2003
Posts: 147
Location: Zurich, ZH, Schweiz

PostPosted: Tue Mar 16, 2004 10:22 am    Post subject: Reply with quote

Probiers mal so:
/etc/fstab
Code:
//server-ip/share  /import/share  smbfs username=user%passwort,noauto,users  0 0

dann
Code:
chmod 4755 smbmnt

und dann
Code:
mount /import/share

Gruss Reto
Back to top
View user's profile Send private message
schober
n00b
n00b


Joined: 16 Mar 2004
Posts: 7

PostPosted: Tue Mar 16, 2004 10:31 am    Post subject: Reply with quote

... leider auch kein erfolg.
das chmod 4755 smbmnt hat doch auch nur das suid gesetzt, oder?

hoffe wir lösen das ganz noch *G*
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum