#1 Le 27/12/2007, à 15:37
- jaws
[Résolu] Partage fichier Ubuntu <---> Windows
Bonjour tous le monde
alors voila cala fait des mois que je me casse les c***** a essayer de configurer samba pour pouvoir accès de mon pc portable (windows) a certains répertoires de mon pc fixe (ubuntu) sans mot de passe. Mais quand ca fonctionne ce n'est que temporaire... Bref je voudrais pour utiliser le partage unix pour pouvoir partager imprimante et repertoire de mon pc ubuntu pour y avoir accès depuis mon pc windows.
J'ai fais une recherche sur notre ami google et j'ai trouver ca :
http://www.microsoft.com/france/windows/sfu/decouvrez/detail.mspx
Pensez vous que c'est une solution?
Merci d'avance !
Dernière modification par jaws (Le 27/12/2007, à 19:17)
Hors ligne
#2 Le 27/12/2007, à 16:35
- bertrand0
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Si vous avez du mal à utiliser et configurer samba, je pense que vous en aurez encore plus à configurer nfs. (c'est mon avis perso, mais je suppose que ça peut dépendre de votre façon de penser...)
Il y a beaucoup de méthodes différentes pour contrôler samba:
1)Vous pouvez utiliser nautilus pour définir un partage samba/cifs anonyme sans mot de passe. (Bouton droit sur un dossier, puis "dossier partagé", et s'il le demande taper le mot de passe et sélectionner partage windows/samba).
2)Vous pouvez définir un partage anonyme permanent dans le fichier /etc/samba/smb.conf, en ajoutant une section:
[mon_partage]
path = /chemin/complet/vers/le/dossier
guest ok = yes
read only = yes #mettre à no pour autoriser l'écriture
3)Sinon, vous pouvez également utiliser la commande net pour créer des partages via la ligne de commande; Pour l'activer, vous devez créer un répertoire pour stocker les infos de partage:
sudo mkdir -p /var/local/usershares
sudo chown root:admin /var/local/usershares
sudo chmod 1770 /var/local/usershares
Pour l'activer vous devez également ajouter les lignes suivantes dans la section [global] du fichier /etc/samba/smb.conf:
[global]
usershare path = /var/local/usershares
usershare max shares = 10 #Nb max de partages utilisateur
usershare allow guests = yes #autorise les partages sans mot de passe
usershare owner only = yes #ne partager que les fichiers appartenant au créateur du partage
Puis taper "sudo /etc/init.d/samba restart" pour relancer le serveur samba.
Ceci fait, vous pouvez créer des partages permanents et anonymes ainsi:
Pour un partage en lecture seule
net usershare add nom_du_partage chemin_complet_vers_le_dossier "" everyone:r guest_ok=y
Pour une partage lecture/écriture:
net usershare add nom_du_partage chemin_complet_vers_le_dossier "" everyone:f guest_ok=y
Ou les supprimer avec:
net usershare delete nom_du_partage
Toute la doc: "man smb.conf" et "net help"
Ceux qui écrivent comme ils parlent, quoiqu'ils parlent très bien, écrivent mal.
Buffon, Discours sur le style
Hors ligne
#3 Le 27/12/2007, à 16:42
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
merci pour ta réponse
j'ai essayer beaucoup de possibiliter avec les "guest ok", "security =" mais a chaque fois il me demandais une authentification. De plus, sous windows l'utilisateur "invité" était préselectionner et impossible de le modifier...
je vais essayer ce que tu ma mis et je post les résulats dans qulques minutes
merci beaucoup!
Hors ligne
#4 Le 27/12/2007, à 17:07
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
ok pour certains trucs ca fonctionne mais pour partager un disque dur entier ca ne fonctionne pas. Fautl alors faire une authentification? Peut-on demander une authentification pou certains répertoires et pas d'autres?
merci d'avance!
Hors ligne
#5 Le 27/12/2007, à 17:41
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
j'ai trouver pas mal d'info sur le forum sur le partge de disque dur avec samba. Je pense être enfin tirer d'affaire ^^
Dieu sait combien de pages sur samba j'ai visiter et je n'avais jamais réussi a le configurer correctement... Merci de ton aide!
Hors ligne
#6 Le 27/12/2007, à 17:54
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
ok pour certains trucs ca fonctionne mais pour partager un disque dur entier ca ne fonctionne pas. Fautl alors faire une authentification? Peut-on demander une authentification pou certains répertoires et pas d'autres?
merci d'avance!
Je pense que tu parles de partition en disant disque.
Pour les partitions de type windows (fat32 ou ntfs) on les partage en partageant leur point de montage tout simplement.
Pour les ext3 on partage des dossiers.
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#7 Le 27/12/2007, à 18:02
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
oui je voulais dire les partitions.
Ma partition windows (ntfs) est inaccessible en partage meme quand je partage son point de montage
Idem pour les fat32 (partition externe)
J'ai vu un de tes post ou tu mettais dessayer un chmod 755, cela n'a rien changer...
Je vais essayer d'inclure ma partition externe dans le fstab voir si sa change quelque chose. Ou pourais-je trouver l'Uuid ?
Hors ligne
#8 Le 27/12/2007, à 18:15
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Fais voir les sections du smb.conf qui correspondent à ces partitions, ainsi que la section global.
PS: ntfs-3g et ntfs-config installés et partition montée par fstab ? Les droits sur les partitions windows se donnent dans la ligne de commande du montage du fstab
Dernière modification par figaro (Le 27/12/2007, à 18:33)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#9 Le 27/12/2007, à 18:20
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
je te donne mon smb.conf complet
#
# Sample configuration file for the Samba suite for Debian GNU/Linux.
#
#
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options most of which
# are not shown in this example
#
# Any line which starts with a ; (semi-colon) or a # (hash)
# is a comment and is ignored. In this example we will use a #
# for commentary and a ; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command
# "testparm" to check that you have not made any basic syntactic
# errors.
#
#======================= Global Settings =======================
[global]
## Browsing/Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup =MSHOME
# server string is the equivalent of the NT Description field server (Samba, Ubuntu)
server string = Samba %v
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
; wins support = no
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no
# What naming service and in what order should we use to resolve host names
# to IP addresses
; name resolve order = lmhosts host wins bcast
#### Networking ####
# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
; interfaces = 127.0.0.0/8 eth0
# Only bind to the named interfaces and/or networks; you must use the
# 'interfaces' option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself. However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
; bind interfaces only = true
#### Debugging/Accounting ####
# This tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m
# Put a capping on the size of the log files (in Kb).
max log size = 100
# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
; syslog only = no
# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
syslog = 0
# Do something sensible when Samba crashes: mail the admin a backtrace
panic action = /usr/share/samba/panic-action %d
####### Authentication #######
# "security = user" is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba-HOWTO-Collection/ServerType.html
# in the samba-doc package for details.
security = share
# You may wish to use password encryption. See the section on
# 'encrypt passwords' in the smb.conf(5) manpage before enabling.
encrypt passwords = true
# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.
passdb backend = tdbsam
obey pam restrictions = yes
; guest account = nobody
invalid users = root
# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
; unix password sync = no
# For Unix password sync to work on a Debian GNU/Linux system, the following
# parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for
# sending the correct chat script for the passwd program in Debian Sarge).
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n *password\supdated\ssuccessfully* .
# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
; pam password change = no
########## Domains ###########
# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no
#
; domain logons = yes
#
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of the user's profile directory
# from the client point of view)
# The following required a [profiles] share to be setup on the
# samba server (see below)
; logon path = \\%N\profiles\%U
# Another common choice is storing the profile in the user's home directory
; logon path = \\%N\%U\profile
# The following setting only takes effect if 'domain logons' is set
# It specifies the location of a user's home directory (from the client
# point of view)
; logon drive = H:
; logon home = \\%N\%U
# The following setting only takes effect if 'domain logons' is set
# It specifies the script to run during logon. The script must be stored
# in the [netlogon] share
# NOTE: Must be store in 'DOS' file format convention
; logon script = logon.cmd
# This allows Unix users to be created on the domain controller via the SAMR
# RPC pipe. The example command creates a user account with a disabled Unix
# password; please adapt to your needs
; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u
########## Printing ##########
# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
; load printers = yes
# lpr(ng) printing. You may wish to override the location of the
# printcap file
; printing = bsd
; printcap name = /etc/printcap
# CUPS printing. See also the cupsaddsmb(8) manpage in the
# cupsys-client package.
; printing = cups
; printcap name = cups
# When using [print$], root is implicitly a 'printer admin', but you can
# also give this right to other users to add drivers and set printer
# properties
; printer admin = @lpadmin
############ Misc ############
# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting
; include = /home/samba/etc/smb.conf.%m
# Most people will find that this option gives better performance.
# See smb.conf(5) and /usr/share/doc/samba-doc/htmldocs/speed.html
# for details
# You may want to add the following on a Linux system:
# SO_RCVBUF=8192 SO_SNDBUF=8192
socket options = TCP_NODELAY
# The following parameter is useful only if you have the linpopup package
# installed. The samba maintainer and the linpopup maintainer are
# working to ease installation and configuration of linpopup and samba.
; message command = /bin/sh -c '/usr/bin/linpopup "%f" "%m" %s; rm %s' &
# Domain Master specifies Samba to be the Domain Master Browser. If this
# machine will be configured as a BDC (a secondary logon server), you
# must set this to 'no'; otherwise, the default behavior is recommended.
; domain master = auto
# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
; idmap uid = 10000-20000
; idmap gid = 10000-20000
; template shell = /bin/bash
#======================= Share Definitions =======================
# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user's home directory as \\server\username
[homes]
comment = Home de %U
browseable = no
# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only "username" can connect to \\server\username
valid users = %S
# By default, the home directories are exported read-only. Change next
# parameter to 'yes' if you want to be able to write to them.
writable = no
# File creation mask is set to 0600 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0664.
create mask = 0600
# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
directory mask = 0700
#Fin pour homes
# Un-comment the following and create the netlogon directory for Domain Logons
# (you need to configure Samba to act as a domain controller too.)
;[netlogon]
; comment = Network Logon Service
; path = /home/samba/netlogon
; guest ok = yes
; writable = no
; share modes = no
# Un-comment the following and create the profiles directory to store
# users profiles (see the "logon path" option above)
# (you need to configure Samba to act as a domain controller too.)
# The path below should be writable by all users so that their
# profile directory may be created the first time they log on
;[profiles]
; comment = Users profiles
; path = /home/samba/profiles
; guest ok = no
; browseable = no
; create mask = 0600
; directory mask = 0700
wins support = no
[printers]
comment = All Printers
browseable = no
path = /tmp
printable = yes
public = no
writable = no
create mode = 0700
# Windows clients look for this share name as a source of downloadable
# printer drivers
[print$]
comment = Printer Drivers
path = /var/lib/samba/printers
browseable = yes
read only = yes
guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# Replace 'ntadmin' with the name of the group your admin users are
# members of.
; write list = root, @ntadmin
# A sample share for sharing your CD-ROM with others.
[Samba server's CD/DVD-ROM]
comment = Graveur CD-DVD
writable = no
locking = no
path = /cdrom
public = yes
guest ok = yes
# The next two parameters show how to auto-mount a CD-ROM when the
# cdrom share is accesed. For this to work /etc/fstab must contain
# an entry like this:
#
# /dev/scd0 /cdrom iso9660 defaults,noauto,ro,user 0 0
#
# The CD-ROM gets unmounted automatically after the connection to the
#
# If you don't want to use auto-mounting/unmounting make sure the CD
# is mounted on /cdrom
#
preexec = /bin/mount /cdrom0
postexec = /bin/umount /cdrom0
# Répertoires
[Films]
path = /home/adrien/Vidéos
guest ok = yes
read only = no
# Partitions
[HP_PAVILION]
path = /media/HP_PAVILION
guest ok = yes
read only = no
Imprimante ok
Le CD-ROM : Inaccessible
Films ok
HP_PAVILION Inaccesible
Dernière modification par jaws (Le 27/12/2007, à 18:21)
Hors ligne
#10 Le 27/12/2007, à 18:24
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Tes partitions et dossiers ne sont pas browseables !
Fais voir aussi ton fstab
cat /etc/fstab
pour voir le montage de la partition windows.
PS: tu es sur de l'orthographe et de la casse pour le point de montage de ta partition ?
Pour le CD vérifies le point de montage dans le fstab.
Dernière modification par figaro (Le 27/12/2007, à 18:29)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#11 Le 27/12/2007, à 18:32
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda3
UUID=67046b93-9f71-4e0c-b4b5-d6e39629c33c / ext3 defaults,errors=remount-ro 0 1
# /dev/sda6
UUID=ba06dec0-b3ad-402f-aefa-33869444c3a3 /home ext3 defaults 0 2
# /dev/sda1
# UUID=05DA-5601 /media/sda1 vfat ro,nosuid,utf8,umask=007,gid=46 0 1
# /dev/sda2
UUID=DCDCDE13DCDDE7B2 /media/HP_PAVILION ntfs defaults,umask=007,gid=46 0 1
# /dev/sda5
UUID=6b21bee8-6662-4d37-aca3-475579afa9d7 none swap sw 0 0
# Lecteurs
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto,exec 0 0
# Western Digital Extern Drive 300GB
UUID=B58D-0217 /media/WD_EXTDRIVE vfat defaults 0 2
J'ai vérifier l'orthographe,, il n'y a pas d'erreur
rajouter ma partition externe (WD EXTDRIVE) n'a rien changer
pour les cd je vais regarder
Hors ligne
#12 Le 27/12/2007, à 18:35
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
pour les cd je vais regarder
c'est ok maintenant en fait j'avais dans le smb.conf "public = yes" et "guest ok = yes", cela devait faire un conflit
maintenant les partitions...
Dernière modification par jaws (Le 27/12/2007, à 18:35)
Hors ligne
#13 Le 27/12/2007, à 18:36
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
# /dev/sda2
UUID=DCDCDE13DCDDE7B2 /media/HP_PAVILION ntfs defaults,umask=007,gid=46 0 1
As-tu installé ntfs-3g et ntfs-config comme demandé précédemment ?
Si oui ou non lis cela : http://doc.ubuntu-fr.org/tutoriel/ntfs
Dernière modification par figaro (Le 27/12/2007, à 18:36)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#14 Le 27/12/2007, à 18:39
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
# Western Digital Extern Drive 300GB
UUID=B58D-0217 /media/WD_EXTDRIVE vfat defaults 0 2
Ce n'est pas correct pour une partition fat32 que tu veux lire. Va un peu lire la doc la dessus.
Vousêtes tous un peu fatigants à ne pas lire la doc et à improviser, ou à prendre le forum pour une hot-line : tous ces problèmes sont traités dans la doc. !
Dernière modification par figaro (Le 27/12/2007, à 18:41)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#15 Le 27/12/2007, à 18:40
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
il me manquait un des deux paquets
cependant, d'après le tutoriel, je n'en ai pas besoin car je suis sous gutsy (j'ai oublier de le préciser)
Hors ligne
#16 Le 27/12/2007, à 18:42
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
il me manquait un des deux paquets
cependant, d'après le tutoriel, je n'en ai pas besoin car je suis sous gutsy (j'ai oublier de le préciser)
Gutsy ou pas si tu n'as pas le paquet avec l'outil tu ne vas pas configurer. Du reste ton fstab est ave ntfs et pas ntfs-3g.
Dernière modification par figaro (Le 27/12/2007, à 18:44)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#17 Le 27/12/2007, à 18:44
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
je l'ai configurer cela n'a rien changer
pour la partition fat32 je ne vois pas ou est l'erreur dans le fstab... :s
Hors ligne
#18 Le 27/12/2007, à 18:46
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
http://doc.ubuntu-fr.org/partitions_windows?s=fat32#ajouter_une_partition_de_systeme_de_fichiers_fat32
un peu fainéant sur les bords !
Travailles un peu !
so long
Dernière modification par figaro (Le 27/12/2007, à 18:48)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#19 Le 27/12/2007, à 18:48
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
ok excuse moi je n'étais pas tomber sur la bonne page
j'ai rectifier je reboot
Dernière modification par jaws (Le 27/12/2007, à 18:58)
Hors ligne
#20 Le 27/12/2007, à 18:53
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
c'est maintenant ok pour la partition ntfs HP_PAVILION
ne vas toujours pas pour la fat32 WD_EXTDRIVE
mon fstab :
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# Entry for /dev/sda3 :
UUID=67046b93-9f71-4e0c-b4b5-d6e39629c33c / ext3 defaults,errors=remount-ro 0 1
# Entry for /dev/sda6 :
UUID=ba06dec0-b3ad-402f-aefa-33869444c3a3 /home ext3 defaults 0 2
# Entry for /dev/sda2 :
UUID=DCDCDE13DCDDE7B2 /media/HP_PAVILION ntfs-3g defaults,locale=fr_FR.UTF-8 0 1
# Entry for /dev/sda5 :
UUID=6b21bee8-6662-4d37-aca3-475579afa9d7 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto,exec 0 0
# Entry for /dev/sdb1 :
UUID=B58D-0217 /media/WD_EXTDRIVE vfat rw,user,auto,exec,gid=100,uid=1000,umask=002,iocharset=utf8,codepage=850,shortname=mixed 0 0
Hors ligne
#21 Le 27/12/2007, à 18:54
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Et pour la ntfs mets nfts-3g à la place de ntfs dans le fstab.
Bonne continuation.
Pas la peine de rebooter
sudo umount -a
sudo mount -a
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#22 Le 27/12/2007, à 18:57
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Et pour la ntfs mets nfts-3g à la place de ntfs dans le fstab.
C'est ce qu'il y a deja non?
Hors ligne
#23 Le 27/12/2007, à 19:02
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Cela n'était pas dans le fstab de ton post 11
Mais comme tu as installé ntfs-config il l'a fait à ta place
Dernière modification par figaro (Le 27/12/2007, à 19:10)
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#24 Le 27/12/2007, à 19:12
- figaro
Re : [Résolu] Partage fichier Ubuntu <---> Windows
Pour le disque externe amovible :
Vois cela ici
Le blog de figaro (astuces diverses et tutos Samba pour débutants)
Le blog de cep (astuces Linux avancées)
Debian Lenny 6.0.1, Ubuntu 10.04.2, Ubuntu Remix 9.10, Ubuntu Netbook 10.04
Hors ligne
#25 Le 27/12/2007, à 19:12
- jaws
Re : [Résolu] Partage fichier Ubuntu <---> Windows
J'ai fais les modifications dans le smb.conf (car avant la partition externe était monter dans /media/WD EXTDRIVE et j'ai remplacer l'espace par un _ ) et maintenant ca fonctionne!
Une toute petite dernière question, dans le smb.conf :
public = yes
est il l'équivalent de
guest ok = yes
?
En tous cas merci beaucoup pour ton aide et le temps que tu as passer! La prochaine fois je passerai un peu plus de temps sur la documentation ^^
Hors ligne