• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Zugriff auf externe PLatte

ewsg

Newbie
Hallo;

Ich habe ein Suse 11 und daran zwei externe PLatten du beim booten automatisch erkannt und gempountet werden, aber leider nur ohne schreibzugriff.
Das Dateisystem der PLatten ist NTFS und sollte auch so bleiben, da dort auch schon viele daten sind.

Per Samba kann ich auf die PLatten zugreifen ich kann alles lesen aber nichts verändern. Dies habe ich schon hinbekommen.

Wie schaffe ich es nun die Platte so zu mounten dass ich 1. schreibrechte darauf bekomme und 2 keine Authentifizierung brauche.

Danke im vorraus.
 
OP
E

ewsg

Newbie
Das ist der Inhalt der fstab:

Code:
/dev/disk/by-id/scsi-SATA_ST3160815AS_6RX1AX02-part1	swap	swap	defaults 0 0
/dev/disk/by-id/scsi-SATA_ST3160815AS_6RX1AX02-part2	/	ext3	acl,user_xattr 1 1
proc	/proc	proc	defaults 0 0
sysfs	/sys	sysfs	noauto 0 0
debugfs	/sys/kernel/debug	debugfs	noauto 0 0
usbfs	/proc/bus/usb	usbfs	noauto 0 0
devpts	/dev/pts	devpts	mode=0620,gid=5 0 0
 

towo

Moderator
Teammitglied
SuFu ==> ntfs-3g

Wie soll per Samba geschrieben werden können, wenn es unter Linux nicht geht?
 
OP
E

ewsg

Newbie
Hier die Ausgabe von mount

Code:
/dev/disk/by-id/scsi-SATA_ST3160815AS_6RX1AX02-part1	swap	swap	defaults 0 0
/dev/disk/by-id/scsi-SATA_ST3160815AS_6RX1AX02-part2	/	ext3	acl,user_xattr 1 1
proc	/proc	proc	defaults 0 0
sysfs	/sys	sysfs	noauto 0 0
debugfs	/sys/kernel/debug	debugfs	noauto 0 0
usbfs	/proc/bus/usb	usbfs	noauto 0 0
devpts	/dev/pts	devpts	mode=0620,gid=5 0 0
 
OP
E

ewsg

Newbie
So noch mal

Code:
/dev/sda2 on / type ext3 (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
securityfs on /sys/kernel/security type securityfs (rw)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/dev/sr0 on /media/SU1100.001 type iso9660 (ro,nosuid,nodev,uid=1000)
/dev/sdc1 on /media/My Book type vfat (rw,nosuid,nodev,uid=1000)
 
OP
E

ewsg

Newbie
Ok dann ist es Vfat. Sie war vorher aber an einen WIn rechner angeschlossen.
Wie bekomme ich da nun schreibzugriff.
 
OP
E

ewsg

Newbie
OK das kann sein.
Ich komme mit dem Notebook WIN auf die PLatte möchte nun dort schreiben. Aber er sagt ich habe keine Berechtigung.
Wie schaffe ich das ohne Anmeldung.
 

towo

Moderator
Teammitglied
Also aus Deinem Gestammel werde ich nicht wirklich schlau.
Dir is schon klar, daß man Samba vernünftig konfigurieren muß?
 
OP
E

ewsg

Newbie
Ja das ist mir klar.

Das ist es auch. Wenn ich mich mit dem Notebook einen Explorer aufmache und dort \\linuxrechner\ angebe sehe ich die Ordner und meine Externe PLatte.

Ich kann alles auf dieser Platte lesen aber nicht darauf schreiben.
Meine smb.conf sagt folgendes:

Code:
# smb.conf is the main Samba configuration file. You find a full commented
# version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the
# samba-doc package is installed.
# Date: 2008-06-06
[global]
	workgroup = MSHEIMNETZ
	printing = cups
	printcap name = cups
	printcap cache time = 750
	cups options = raw
	map to guest = Bad User
	include = /etc/samba/dhcp.conf
	logon path = \\%L\profiles\.msprofile
	logon home = \\%L\%U\.9xprofile
	logon drive = P:
	usershare allow guests = Yes
	add machine script = /usr/sbin/useradd  -c Machine -d /var/lib/nobody -s /bin/false %m$
	domain logons = No
	domain master = No
	security = user
	public = yes
	guest ok = Yes

[homes]
	comment = Home Directories
	valid users = %S, %D%w%S
	browseable = No
	read only = No
	inherit acls = Yes

[profiles]
	comment = Network Profiles Service
	path = %H
	read only = No
	store dos attributes = Yes
	create mask = 0600
	directory mask = 0700

[users]
	comment = All users
	path = /home
	read only = No
	inherit acls = Yes
	veto files = /aquota.user/groups/shares/

[groups]
	comment = All groups
	path = /home/groups
	read only = No
	inherit acls = Yes

[printers]
	comment = All Printers
	path = /var/tmp
	printable = Yes
	create mask = 0600
	browseable = No

[print$]
	comment = Printer Drivers
	path = /var/lib/samba/drivers
	write list = @ntadmin root
	force group = ntadmin
	create mask = 0664
	directory mask = 0775

[netlogon]

[media]
	browseable = Yes
	comment = media
	path = /media/
	read only = No
	public = Yes
	guest ok = Yes

[mediactr]
	path = /media/MEDIACTR
	guest ok = Yes
	read only = No
	browseable = Yes
	create mask = 0777

[salvatore]
	path = /home/salvatore/
	guest ok = yes
	public = yes
	browseable = Yes
	read only = No
 
Oben