#26 Le 13/07/2023, à 13:28
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Voilà le smb.conf
cat /etc/samba/smb.conf
#
# 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
#
# Some options that are often worth tuning have been included as
# commented-out examples in this file.
# - When such options are commented with ";", the proposed setting
# differs from the default Samba behaviour
# - When commented with "#", the proposed setting is the default
# behaviour of Samba but the option is considered important
# enough to be mentioned here
#
# 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 = WORKGROUP
# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)
#### 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 = yes
#### Debugging/Accounting ####
# This tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m
# Cap the size of the individual log files (in KiB).
max log size = 1000
# We want Samba to only log to /var/log/samba/log.{smbd,nmbd}.
# Append syslog@1 if you want important messages to be sent to syslog too.
logging = file
# Do something sensible when Samba crashes: mail the admin a backtrace
panic action = /usr/share/samba/panic-action %d
####### Authentication #######
# Server role. Defines in which mode Samba will operate. Possible
# values are "standalone server", "member server", "classic primary
# domain controller", "classic backup domain controller", "active
# directory domain controller".
#
# Most people will want "standalone server" or "member server".
# Running as "active directory domain controller" will require first
# running "samba-tool domain provision" to wipe databases and create a
# new domain.
server role = standalone server
obey pam restrictions = yes
# 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 = yes
# 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\s*\spassword:* %n\n *Retype\snew\s*\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 = yes
# This option controls how unsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user
########## Domains ###########
#
# The following settings only takes effect if 'server role = primary
# classic domain controller', 'server role = backup domain controller'
# or '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
# (this is Samba's default)
# 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
# This allows machine accounts to be created on the domain controller via the
# SAMR RPC pipe.
# The following assumes a "machines" group exists on the system
; add machine script = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u
# This allows Unix groups to be created on the domain controller via the SAMR
# RPC pipe.
; add group script = /usr/sbin/addgroup --force-badname %g
############ 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
# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
; idmap config * : backend = tdb
; idmap config * : range = 3000-7999
; idmap config YOURDOMAINHERE : backend = tdb
; idmap config YOURDOMAINHERE : range = 100000-999999
; template shell = /bin/bash
# Setup usershare options to enable non-root users to share folders
# with the net usershare command.
# Maximum number of usershare. 0 means that usershare is disabled.
# usershare max shares = 100
# Allow users who've been granted usershare privileges to create
# public shares, not just authenticated ones
usershare allow guests = yes
#======================= 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 Directories
; browseable = no
# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
; read only = yes
# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
; create mask = 0700
# 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
# 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
# This might need tweaking when using external authentication schemes
; valid users = %S
# 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
; read only = yes
# 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
[printers]
comment = All Printers
browseable = no
path = /var/spool/samba
printable = yes
guest ok = no
read only = yes
create mask = 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.
# You may need to replace 'lpadmin' with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
; write list = root, @lpadmin
[Photos]
path = /mnt/Photos
browseable = yes
read only = yes
valid users = sdf
write list = sdf
force user = sdf
force group = sdf
guest ok = yes
create mask = 0744
directory mask = 0755
le dossier "Photos" est aperçu sur une autre machine, mais impossible de pénétrer, autant en Anonyme qu'en utilisateur, même avec le mot de passe utilisateur, et "option de partage" répond toujours le même message d'erreur 255.
euh, "create mask" c'est bien 0744 ou plutôt 0755 ?
Alors en fait vu le nombre de HDD , je dirais que ta carte mere comporte un controlleur en plus ( comme la mienne qui permet d ' obtenir 2 port SATA en plus ) avec le contrôleur integré seul c' est 4 HDD .
, en fait les HDD sont sur des docks Orico qui supportent 5 disques de 16 To branchés en USB 3. Gourmands en ressources, je crois que le plein affichage faisait planter le système, en rétrogradant en 1600x1200, cela ne semble plus planter.
Hors ligne
#27 Le 13/07/2023, à 13:47
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
coucou,
j'ai essayé çà, comme le partage graphique refuse toujours de s'effectuer, après lecture de ce post :
net usershare add Photos -l /mnt/Photos com Everyone:f guest_ok=y
[2023/07/13 14:42:08, 0] ../../lib/util/debug.c:1100(reopen_one_log)
reopen_one_log: Unable to open new log file '/mnt/Photos/log.net': Permission non accordée
net usershare add: path com is not an absolute path.
mais j'en arrive toujours au même point et tous les messages parlent de /mnt/Photos/log.net mais aucun log.net n'est trouvé dans le système de fichiers par la recherche
Hors ligne
#28 Le 13/07/2023, à 14:39
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
le post en question traite d' un partage NFS , pas d ' un partage samba , c ' est different .
Alors question , pourquoi tu as choisis au depart un partage samba ?
tu vas partage avec d ' autres ordi qui ont windobz comme systeme d' exploitation ? ou y a que des ordis avec ubuntu ( ou linux ) comme os dessus ?
" sdf " c ' est ton nom d' utilisateur ?
Pour les options du partage :
create mask = 0744
directory mask = 0755
create mask c ' est pour les fichiers .
directory mask c ' est pour les repertoires .
c ' est modifiable au besoin .
le dossier "Photos" est aperçu sur une autre machine, mais impossible de pénétrer, autant en Anonyme qu'en utilisateur, même avec le mot de passe utilisateur, et "option de partage" répond toujours le même message d'erreur 255.
l ' acces en mode anonyme ne fonctionne plus ( il me semble ) .
A partir du client , lorsque tu tentes d ' entrer tu met quel nom d ' utilisateur + MDP ?
si c ' est 'sdf ' sur le serveur , alors il faut que tu mette sdf en nom d ' utilisateur + le mdp que tu as entrée avec la commande :
sudo smbpasswd -a TON NOM UTILISATEUR
montre aussi
grep Photos /etc/mtab
Dernière modification par iznobe (Le 13/07/2023, à 14:53)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#29 Le 13/07/2023, à 16:15
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
sdf est mon nom d'utilisatrice effectivement, c'est ce que j'ai mis un peu partout pour ce partage, j'ai entré aussi un mot de passe (passe-partout ) lors de l'installation de samba, mais je me heurte comme au #26...
le mtab :
grep Photos /etc/mtab
/dev/sdd1 /mnt/Photos ext4 rw,nosuid,nodev,relatime 0 0
je disais à coeur noir au #3 que j'ai commencé par samba pour être visible de mon Mac et des divers phones et tablettes (pour accéder aux médias contenus dans /sdf). Beaucoup ne jurent que par NFS ou SSH mais je vois que pas mal d'autres ont autant de soucis qu'avec samba.
Il y a quelques années, j'avais pendant quelques temps installé une boite virtuelle sur mon Macbook avec Ubuntu installé (18.04 ? je ne sais plus) et le partage-réseau avait été facile à l'époque, ce qui n'est plus le cas maintenant en apparence. Mais je n'ai pas, hélas, gardé assez longtemps Ubuntu pour le manier correctement.
Hors ligne
#30 Le 13/07/2023, à 17:27
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
là je suis pas chez moi , si tu sais editer le fstab a la main , alors dans tous les montages de tes disques externes du doc , remplace :
"rw,nosuid,nodev,relatime "
par " defaults "
faudrait pas que le nosuid en particulier vienne fiche le bazar avec aucune appartenance , ce qui alors vient contrarier samba .
ensuite tu passes ces 2 commandes ( pour demonter puis remonter avec les nouveaux parametres ) :
sudo umount -a
sudo mount -av
et tu redonnes
grep Photos /etc/mtab
tu devrais alors voir ton id d' utilisateur dans le retour .( generalement c ' est : uid=1000 )
si c' est le cas relance le service samba
sudo service smb restart
de memoire , pas sur que ca soit bon , puis verifie a nouveau ce que ca dis pour le partage .
Dernière modification par iznobe (Le 13/07/2023, à 17:31)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#31 Le 13/07/2023, à 18:02
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
de plus en plus intéressant (mais à la fin, je suis toujours invisible ailleurs, en tant qu'utilisatrice ou anonyme ! )
j'avais cette ligne là dans le fstab :
LABEL=Photos /mnt/Photos auto nosuid,nodev,nofail,x-gvfs-show 0 0
que j'ai changée en :
LABEL=Photos /mnt/Photos auto defaults,x-gvfs-show 0 0
après :
grep Photos /etc/mtab
/dev/sdd1 /mnt/Photos ext4 rw,relatime 0 0
n.b. :
sudo service smb restart
Failed to restart smb.service: Unit smb.service not found.
donc j'ai trouvé :
sudo systemctl restart smbd.service
mais toujours pas de partage annoncé par les options graphiques, et /var/lib/samba/usershares vide - alors que je crois que quand un partage est réussi, il se trouve dans ce fichier, ce que j'ignorai auparavant, avec les permissions de l'utilisateur - j'ai lu cela ces jours-ci mais j'ai lu tellement de posts que je ne sais plus où çà se trouve.
Bon, je ne m'affole pas, je suis patiente et persévérante , prends ton temps Iznobe, passe un bon WE , nous y arriverons !
Hors ligne
#32 Le 13/07/2023, à 18:29
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
et sinon , l ' erreur 255 a disparu ?
c' etait l' objectif des modifs du fstab .
pour verifier si le partage est effectif sur le serveur ( la 2eme etape ) installe ce paquet sur le serveur :
sudo apt install smbclient
puis donne le retour de :
smbclient -L 127.0.0.1
si tout se passe bien , il te demandera ton mot de passe . et t ' affichera le partage , genre comme ca :
iznobe@iznobe-PC:~$ smbclient -L 127.0.0.1
Password for [WORKGROUP\iznobe]:
Sharename Type Comment
--------- ---- -------
print$ Disk Printer Drivers
Vidéos Disk
Photos Disk
Musique Disk
Public Disk
IPC$ IPC IPC Service (iznobe-PC server (Samba, Ubuntu))
SMB1 disabled -- no workgroup available
iznobe@iznobe-PC:~$
Dernière modification par iznobe (Le 13/07/2023, à 18:34)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#33 Le 13/07/2023, à 18:42
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
l'erreur 255 persiste
smbclient était déjà installé (?)
smbclient -L 127.0.0.1
Password for [WORKGROUP\sdf]:
Sharename Type Comment
--------- ---- -------
print$ Disk Printer Drivers
Photos Disk
IPC$ IPC IPC Service (sdf-DH310V2 server (Samba, Ubuntu))
Brother-MFC-J6910DW Printer Brother MFC-J6910DW
EPSON-Epson-Stylus-Office-BX635FWD Printer EPSON Epson Stylus Office BX635FWD
Generic-Text-Only Printer Generic Text-Only
Reconnecting with SMB1 for workgroup listing.
Server Comment
--------- -------
Workgroup Master
--------- -------
Photos parait partagé, si je comprends bien, mais mon Mac ne le voit pas
Hors ligne
#34 Le 13/07/2023, à 21:01
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
a priori , malgré l' erreur , le dossier /mnt/photos est bien partagé .
maintenant sur le client ... je ne connais absolument pas les mac ... il faudrait trouver la commande equivalent a smbclient , et indiqué dans la commande l' adresse ip du serveur a la place de 127.0.0.1 .
Sauf que là , je ne peut absolument pas t 'aider ...
ou voir a partit du gestionnaire de fichiers si tu as moyen d' acceder en commande .
Dejà tu peux commencer avec un ping du client sur le serveur peut etre ? ca existe la commande ping sur mac os non ?
sur ubuntu / linux ca donnerait :
ping -c2 ad.ip.du.serveur
tu peux recuperer l' ip du serveur avec
ip a
sur le serveur .
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#35 Le 14/07/2023, à 10:11
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Bonjour Iznobe,
j'ai du fermer l’ordinateur hier soir assez tôt parce qu'à cause de la chaleur, les disques durs envoyaient des messages d'alertes et erreur.
Du Mac, /sdf est reconnu, il demande de monter le serveur, mais pas d'autorisation !! je cherche si c'est Mac ou Ubuntu qui réclame des autors. Je pencherais pour Ubuntu car le partage indique toujours une erreur 255, malgré les résultats des commandes que tu m'as conseillées.
Par contre, malgré ses sécurités, je rentre dans le Mac depuis /sdf sans problème !!
Çà passe par smb://<adresse IP>
Connexion peut-être possible par SSH, car Mac m'indique "connexion refusée" et SSH n'est pas installé sur /sdf. SSH doit être installé par défaut sur Mac comme samba. Un espoir ?
Hors ligne
#36 Le 14/07/2023, à 10:47
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Salut , montre :
hostnamectl
apt policy samba* caja-share*
ls -l /etc/samba/
ls -l /var/lib/samba/usershares
grep -v ^# /etc/samba/smb.conf
cat /etc/os*
getfacl /mnt/Photos
getfacl /mnt/Photos/*
ls -la /mnt/Photos/*
find ~ -ipath "*.*" ! -user $USER -exec ls -ld {} \;
et une question me taraude , cette erreur 255 , tu l' obtiens en faisant quoi precisément ?
Dernière modification par iznobe (Le 14/07/2023, à 12:15)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#37 Le 14/07/2023, à 12:08
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Merci Iznobe,
je sors d'un plantage "calorifique", l'ordi se met en sécurité à cause de la chaleur, malgré les ventilos.
L'erreur 255 se voit en faisant une demande de partage en graphique par le menu du clic droit sur /mnt/Photos et "option de partage" en cochant une ou 2 ou les 3 cases de choix
je réponds à tes commandes :
hostnamectl
Static hostname: sdf-DH310V2
Icon name: computer-desktop
Chassis: desktop
Machine ID: 913d11f0e1c14c3394b9bdf3cefab382
Boot ID: b32e96b3b66b45b1902fd15bfc357a75
Operating System: Ubuntu 20.04.6 LTS
Kernel: Linux 5.15.0-76-generic
Architecture: x86-64
apt policy samba* caja-share*
samba-client:
Installé : (aucun)
Candidat : (aucun)
Table de version :
samba-dev:
Installé : (aucun)
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
samba:
Installé : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
*** 2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
100 /var/lib/dpkg/status
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
samba-dsdb-modules:
Installé : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
*** 2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
100 /var/lib/dpkg/status
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
samba-libs:
Installé : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
*** 2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
100 /var/lib/dpkg/status
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
sambamba:
Installé : (aucun)
Candidat : (aucun)
Table de version :
samba-common:
Installé : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
*** 2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main i386 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages
100 /var/lib/dpkg/status
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
500 http://fr.archive.ubuntu.com/ubuntu focal/main i386 Packages
samba-vfs-modules:
Installé : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
*** 2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
100 /var/lib/dpkg/status
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
samba-common-bin:
Installé : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
*** 2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
100 /var/lib/dpkg/status
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/main amd64 Packages
samba-testsuite:
Installé : (aucun)
Candidat : 2:4.15.13+dfsg-0ubuntu0.20.04.2
Table de version :
2:4.15.13+dfsg-0ubuntu0.20.04.2 500
500 http://fr.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages
2:4.11.6+dfsg-0ubuntu1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/universe amd64 Packages
caja-share:
Installé : 1.24.0-1
Candidat : 1.24.0-1
Table de version :
*** 1.24.0-1 500
500 http://fr.archive.ubuntu.com/ubuntu focal/universe amd64 Packages
100 /var/lib/dpkg/status
ls -l /etc/samba/
total 32
-rw-r--r-- 1 root root 8 mars 30 15:25 gdbcommands
-rw-r--r-- 1 root root 9293 juil. 13 14:37 smb.conf
-rw-r--r-- 1 root root 8942 juil. 11 00:43 'smb (copie).confold'
drwxr-xr-x 2 root root 4096 mars 30 15:25 tls
ls -l /var/lib/samba/usershares
total 0
grep -v : /etc/samba/smb.conf
#
# 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
#
# Some options that are often worth tuning have been included as
# commented-out examples in this file.
# - When such options are commented with ";", the proposed setting
# differs from the default Samba behaviour
# - When commented with "#", the proposed setting is the default
# behaviour of Samba but the option is considered important
# enough to be mentioned here
#
# "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 = WORKGROUP
client min protocol = NT1
server min protocol = NT1
# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)
#### 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 = yes
#### Debugging/Accounting ####
# This tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/log.%m
# Cap the size of the individual log files (in KiB).
max log size = 1000
# We want Samba to only log to /var/log/samba/log.{smbd,nmbd}.
# Append syslog@1 if you want important messages to be sent to syslog too.
logging = file
panic action = /usr/share/samba/panic-action %d
####### Authentication #######
# Server role. Defines in which mode Samba will operate. Possible
# values are "standalone server", "member server", "classic primary
# domain controller", "classic backup domain controller", "active
# directory domain controller".
#
# Most people will want "standalone server" or "member server".
# Running as "active directory domain controller" will require first
# running "samba-tool domain provision" to wipe databases and create a
# new domain.
server role = standalone server
obey pam restrictions = yes
# 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 = yes
# 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
# 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 = yes
# This option controls how unsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user
########## Domains ###########
#
# The following settings only takes effect if 'server role = primary
# classic domain controller', 'server role = backup domain controller'
# or '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
# (this is Samba's default)
# 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 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
; 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
# This allows machine accounts to be created on the domain controller via the
# SAMR RPC pipe.
# The following assumes a "machines" group exists on the system
; add machine script = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u
# This allows Unix groups to be created on the domain controller via the SAMR
# RPC pipe.
; add group script = /usr/sbin/addgroup --force-badname %g
############ 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
# Some defaults for winbind (make sure you're not using the ranges
# for something else.)
; template shell = /bin/bash
# Setup usershare options to enable non-root users to share folders
# with the net usershare command.
# Maximum number of usershare. 0 means that usershare is disabled.
usershare max shares = 1000
# Allow users who've been granted usershare privileges to create
# public shares, not just authenticated ones
usershare allow guests = yes
#======================= 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 Directories
; browseable = no
# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
read only = yes
# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
; create mask = 0775
# 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 = 0775
# 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
# This might need tweaking when using external authentication schemes
; valid users = %S, sdf, nobody
force user = nobody
force group = nogroup
# 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
; read only = yes
# 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
[printers]
comment = All Printers
browseable = no
path = /var/spool/samba
printable = yes
guest ok = no
read only = yes
create mask = 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.
# You may need to replace 'lpadmin' with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
; write list = root, @lpadmin
[Photos]
path = /mnt/Photos
browseable = yes
read only = yes
valid users = sdf
write list = sdf
force user = sdf
force group = sdf
guest ok = yes
create mask = 0744
directory mask = 0755
cat /etc/os*
NAME="Ubuntu"
VERSION="20.04.6 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.6 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
getfacl /mnt/Photos
getfacl : suppression du premier « / » des noms de chemins absolus
# file: mnt/Photos
# owner: sdf
# group: sdf
user::rw-
group::rwx
other::rwx
getfacl /mnt/Photos/*
getfacl: /mnt/Photos/Apache 1 P7020085.JPG: Permission non accordée
getfacl: /mnt/Photos/apache 2 P7020086.JPG: Permission non accordée
getfacl: /mnt/Photos/Aquarium Nathalie P7020079.JPG: Permission non accordée
getfacl: /mnt/Photos/artichaud.jpg: Permission non accordée
getfacl: /mnt/Photos/ATI.jpg: Permission non accordée
getfacl: /mnt/Photos/autre aquarium P7020083.JPG: Permission non accordée
getfacl: /mnt/Photos/Autre coq.jpg: Permission non accordée
getfacl: /mnt/Photos/cheval P5192105.JPG: Permission non accordée
getfacl: /mnt/Photos/chien.jpg: Permission non accordée
getfacl: /mnt/Photos/coq 2.jpg: Permission non accordée
getfacl: /mnt/Photos/Coq auvergne.jpg: Permission non accordée
getfacl: /mnt/Photos/Coq de Nathalie.jpg: Permission non accordée
getfacl: /mnt/Photos/COQUELICOT DRAPEjpg.jpg: Permission non accordée
getfacl: /mnt/Photos/E3021052023: Permission non accordée
getfacl: /mnt/Photos/ecorce.jpg: Permission non accordée
getfacl: /mnt/Photos/ecu 1.jpg: Permission non accordée
getfacl: /mnt/Photos/eucalyptus P5081958.JPG: Permission non accordée
getfacl: /mnt/Photos/genet.jpg: Permission non accordée
getfacl: /mnt/Photos/gouttes d'eau PA140002.JPG: Permission non accordée
getfacl: /mnt/Photos/Guy NB.jpg: Permission non accordée
getfacl: /mnt/Photos/lost+found: Permission non accordée
getfacl: /mnt/Photos/max 1 P7020084.JPG: Permission non accordée
getfacl: /mnt/Photos/mosa 2P5192059.JPG: Permission non accordée
getfacl: /mnt/Photos/mosa 2 P5192060.JPG: Permission non accordée
getfacl: /mnt/Photos/mosa 3 P5192108.JPG: Permission non accordée
getfacl: /mnt/Photos/mosaique P5192058.JPG: Permission non accordée
getfacl: /mnt/Photos/olympus 21052023: Permission non accordée
getfacl: /mnt/Photos/Paon P7020122.JPG: Permission non accordée
getfacl: /mnt/Photos/papa et sa fille 09:48:06.JPG: Permission non accordée
getfacl: /mnt/Photos/PAPA Maman 002 09:48:06.JPG: Permission non accordée
getfacl: /mnt/Photos/PAPA Maman 002 12:43:49.JPG: Permission non accordée
getfacl: /mnt/Photos/PAPY2 14:10:55 14:17:42.JPG: Permission non accordée
getfacl: /mnt/Photos/photos: Permission non accordée
getfacl: /mnt/Photos/PHOTOS: Permission non accordée
getfacl: /mnt/Photos/pissenlit 2 .jpg: Permission non accordée
getfacl: /mnt/Photos/Pissenlit.jpg: Permission non accordée
getfacl: /mnt/Photos/poule 2.jpg: Permission non accordée
getfacl: /mnt/Photos/poule 3.jpg: Permission non accordée
getfacl: /mnt/Photos/Poule de Bathalie.jpg: Permission non accordée
getfacl: /mnt/Photos/poule.jpg: Permission non accordée
getfacl: /mnt/Photos/recupGold2: Permission non accordée
getfacl: /mnt/Photos/recupphotorecphotos: Permission non accordée
getfacl: /mnt/Photos/recupphotos16042023: Permission non accordée
getfacl: /mnt/Photos/sanglier P5192107.JPG: Permission non accordée
ls -la /mnt/Photos/*
ls: impossible d'accéder à '/mnt/Photos/Apache 1 P7020085.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/apache 2 P7020086.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Aquarium Nathalie P7020079.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/artichaud.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/ATI.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/autre aquarium P7020083.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Autre coq.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/cheval P5192105.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/chien.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/coq 2.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Coq auvergne.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Coq de Nathalie.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/COQUELICOT DRAPEjpg.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/E3021052023': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/ecorce.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/ecu 1.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/eucalyptus P5081958.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/genet.jpg': Permission non accordée
ls: impossible d'accéder à "/mnt/Photos/gouttes d'eau PA140002.JPG": Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Guy NB.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/lost+found': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/max 1 P7020084.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/mosa 2P5192059.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/mosa 2 P5192060.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/mosa 3 P5192108.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/mosaique P5192058.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/olympus 21052023': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Paon P7020122.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/papa et sa fille 09:48:06.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/PAPA Maman 002 09:48:06.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/PAPA Maman 002 12:43:49.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/PAPY2 14:10:55 14:17:42.JPG': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/photos': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/PHOTOS': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/pissenlit 2 .jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Pissenlit.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/poule 2.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/poule 3.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/Poule de Bathalie.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/poule.jpg': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/recupGold2': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/recupphotorecphotos': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/recupphotos16042023': Permission non accordée
ls: impossible d'accéder à '/mnt/Photos/sanglier P5192107.JPG': Permission non accordée
find ~ -ipath "*.*" ! -user $USER -exec ls -ld {} \;
-rw-r--r-- 1 root root 2447 avril 15 09:45 /home/sdf/testdisk.log
-rw-r--r-- 1 root root 40960 avril 22 12:48 /home/sdf/photorec.se2
Bon, ben je vois que les permissions des fichiers dans /Photos, malgré plusieurs tentatives en commande et en graphique, ne sont toujours pas attribuées.
Je te remercie chaleureusement pour toute cette aide, c'est vraiement sympa.
J'attends ta réponse avant de faire un chown, chgrp....
Hors ligne
#38 Le 14/07/2023, à 12:18
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
y a clairement un soucis de permission .
je vais manger , puis je re pour te dire ce que j' en pense .
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#39 Le 14/07/2023, à 12:21
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
bon appétit !
Hors ligne
#40 Le 14/07/2023, à 12:46
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Merci
Alors , dans un 1er temps :
sudo chmod +X /mnt/Photos
ls -la /mnt/Photos
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#41 Le 14/07/2023, à 14:15
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
là c'est plus intéressant :
ls -la /mnt/Photos
total 82464
drwxrwxrwx 10 sdf sdf 4096 mai 22 17:47 .
drwxr-xr-x 10 root root 4096 juil. 12 18:38 ..
-rw-rw-r-- 1 sdf sdf 3236512 mai 22 15:57 'Apache 1 P7020085.JPG'
-rw-rw-r-- 1 sdf sdf 3156114 mai 22 15:58 'apache 2 P7020086.JPG'
-rw-rw-r-- 1 sdf sdf 3857058 mai 22 15:53 'Aquarium Nathalie P7020079.JPG'
-rw-rw-r-- 1 sdf sdf 1330948 mai 22 16:04 artichaud.jpg
-rw-rw-rw- 1 sdf sdf 1169843 avril 15 2011 ATI.jpg
-rw-rw-r-- 1 sdf sdf 3310371 mai 22 15:55 'autre aquarium P7020083.JPG'
-rw-rw-r-- 1 sdf sdf 2171569 mai 22 15:43 'Autre coq.jpg'
-rw-rw-r-- 1 sdf sdf 6088380 mai 22 17:36 'cheval P5192105.JPG'
-rw-rw-r-- 1 sdf sdf 1069304 mai 22 17:23 chien.jpg
-rw-rw-r-- 1 sdf sdf 1516364 mai 22 17:11 'coq 2.jpg'
-rw-rw-r-- 1 sdf sdf 1675257 mai 22 17:06 'Coq auvergne.jpg'
-rw-rw-r-- 1 sdf sdf 1936620 mai 22 15:34 'Coq de Nathalie.jpg'
-rw-rw-r-- 1 sdf sdf 310719 avril 11 14:56 'COQUELICOT DRAPEjpg.jpg'
drwxrwxrwx 2 sdf sdf 12288 mai 21 18:26 E3021052023
-rw-rw-r-- 1 sdf sdf 690587 mai 22 16:33 ecorce.jpg
-rw-rw-r-- 1 sdf sdf 1440616 mai 22 17:45 'ecu 1.jpg'
-rw-rw-r-- 1 sdf sdf 3656158 mai 22 16:30 'eucalyptus P5081958.JPG'
-rw-rw-r-- 1 sdf sdf 210126 mai 22 16:38 genet.jpg
-rw-rw-r-- 1 sdf sdf 3876229 mai 22 16:11 "gouttes d'eau PA140002.JPG"
-rw-rw-r-- 1 sdf sdf 1513547 mai 22 16:55 'Guy NB.jpg'
drwxrwxrwx 2 sdf sdf 16384 avril 16 17:21 lost+found
-rw-rw-r-- 1 sdf sdf 2816549 mai 22 15:56 'max 1 P7020084.JPG'
-rw-rw-r-- 1 sdf sdf 5181717 mai 22 17:28 'mosa 2P5192059.JPG'
-rw-rw-r-- 1 sdf sdf 5404190 mai 22 17:29 'mosa 2 P5192060.JPG'
-rw-rw-r-- 1 sdf sdf 3839380 mai 22 17:39 'mosa 3 P5192108.JPG'
-rw-rw-r-- 1 sdf sdf 5400878 mai 22 17:27 'mosaique P5192058.JPG'
drwxrwxrwx 13 sdf sdf 69632 mai 22 15:27 'olympus 21052023'
-rw-rw-r-- 1 sdf sdf 4784024 mai 22 15:47 'Paon P7020122.JPG'
-rwxrwxrwx 1 sdf sdf 1902389 nov. 5 2009 'papa et sa fille 09:48:06.JPG'
-rwxrwxrwx 1 sdf sdf 604491 févr. 15 2008 'PAPA Maman 002 09:48:06.JPG'
-rwxrwxrwx 1 sdf sdf 604491 févr. 15 2008 'PAPA Maman 002 12:43:49.JPG'
-rwxrwxrwx 1 sdf sdf 139874 juin 5 1998 'PAPY2 14:10:55 14:17:42.JPG'
drwxrwxrwx 2 sdf sdf 135168 janv. 3 2023 photos
drwxrwxrwx 6 sdf sdf 4096 avril 19 12:29 PHOTOS
-rw-rw-r-- 1 sdf sdf 778748 mai 22 16:22 'pissenlit 2 .jpg'
-rw-rw-r-- 1 sdf sdf 762717 mai 22 16:19 Pissenlit.jpg
-rw-rw-r-- 1 sdf sdf 812304 mai 22 17:20 'poule 2.jpg'
-rw-rw-r-- 1 sdf sdf 830574 mai 22 17:16 'poule 3.jpg'
-rw-rw-r-- 1 sdf sdf 2814759 mai 22 15:37 'Poule de Bathalie.jpg'
-rw-rw-r-- 1 sdf sdf 738311 mai 22 17:08 poule.jpg
drwxrwxrwx 14 sdf sdf 4096 avril 19 13:09 recupGold2
drwxrwxrwx 15 sdf sdf 4096 avril 19 13:07 recupphotorecphotos
drwxrwxrwx 13 sdf sdf 4096 avril 19 12:48 recupphotos16042023
-rw-rw-r-- 1 sdf sdf 4475256 mai 22 17:37 'sanglier P5192107.JPG'
ÇÀ y est !! c'est lisible sur l'autre machine ! donc montage et permissions, c'était bête comme chou !
mais, malgré le succès, toujours erreur 255 et var/lib/samba/usershares vide, comme quoi les lignes de commande sont plus puissantes que le reste des manœuvres.
Donc, je dois vérifier les permissions sur les autres disques, écrire sur smb.conf leurs critères de partage, faut-il modifier aussi les lignes du fstab pour les autres disques ?
Hors ligne
#42 Le 14/07/2023, à 15:02
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
tu peux deja faire les permissions pour les autres partages + le smb.conf et voir ce que ca dis avec les options par defaut de " disks " , au besoin modifier le fstab qu ' ensuite l' ordre n' est pas vraiment important .
tant que tout est correct . si besoin de modif le fstab , il faudra demonter puis remonter les partitions .
apres modif du smb.conf , il faut relancer le service samba .
ca devrait aller maintenant que tu as la marche a suivre .
par contre laisser les permisions en 777 , c' est vraiment pas terrible . , au minimum , il faudrait faire un chmod 666 de façon a enlever au moins l' execution .
et meme etre plus restrictif selon ce que tu as besoin de faire sur le client .
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#43 Le 14/07/2023, à 16:57
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
OK, Iznobe.
Je vais faire tout çà trèèèès doucement car l'explorateur de disques (Caja) fait planter la machine et génère des corruptions de systèmes de fichiers. Je ne sais pas si c'est la chaleur (il fait 32° dans la pièce) ou quoi, mais c'est très instable.
En tout cas nous ne sommes pas loin de la résolution du problème de partage et réseau local. Je vais vérifier attentivement les permissions.
Merci très très beaucoup pour toute cette aide très précieuse. J'ai appris beaucoup de choses et t'en remercie chaleureusement.
Hors ligne
#44 Le 14/07/2023, à 17:44
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
fais voir
ls /var/crash
As tu tenté de reinstaller caja ?
lister les paquets installés avec
dpkg -l caja* | grep ii
en faire la liste , puis :
sudo apt install --reinstall tous les paquets de la liste
tu peux aussi tenter de supprimer ta config perso pour ce gestionnaire de fichiers
il suffit de supprimer dans ton dossier perso le fichier ou dossier caché ( qui commence par un point donc ) nommé caja ( .caja ) soit a la racine de ton dossier perso , soit dans " .config/caja " .
Dernière modification par iznobe (Le 14/07/2023, à 17:50)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#45 Le 15/07/2023, à 11:33
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Bonjour Iznobe,
tu m'aides encore précieusement.
Effectivement, si Caja ouvre plusieurs fenêtres, il plante, je pense en partie par la grande quantité de données sur les divers HDD.
ls /var/crash
_usr_bin_marco.1000.crash _usr_bin_shares-admin.1000.upload
_usr_bin_plank.1000.crash _usr_bin_shares-admin.1000.uploaded
_usr_bin_shares-admin.1000.crash _usr_sbin_update-apt-xapian-index.0.crash
Mais il y a des blocages même au niveau post-BIOS, que j'attribue à la chaleur car ce n'était pas le cas les semaines précédentes.
Je lis que dans les crash il y a shares-admin que j'ai installé pour ces fameux problèmes de partage, mais qui ne fonctionne pas du tout comme indiqué dans la documentation. Marco et Plank font partie de l'interface bureau, et sont peut-être trop gourmands en ressources (j'ai pourtant un I7 à 3.2 GHz et 64 Go de RAM !!).
Je vais suivre ton conseil de réinstallation de l'explorateur de fichiers. Peut-être faut-il créer un autre fil de discussion au sujet des différents explorateurs (Caja, Dolphin, Konqueror, Nautilus...) et de leur stabilité et efficacité, n'étant probablement pas la seule à avoir des problèmes d'affichage des fenêtres d'explorations et de recherches ? qu'en penses-tu ?
Hors ligne
#46 Le 15/07/2023, à 11:38
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
ba tu peux commencer par faire dejà les 3 propositions que je t ' ai indiqué , si ca persiste alors oui il vaudra mieux ouvrir une nouvelle discussion pour ce soucis .
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#47 Le 15/07/2023, à 19:18
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Bonsoir Iznobe,
J'ai suivi tes conseils. Pour l'instant, çà va, mais je suis très prudente avec l'activité de la machine.
Mais le problème de ce fil est résolu, ayant pu intégrer /mnt/Musical dans le réseau et il est visible par les autres appareils. Ainsi, le partage réseau consiste (si j'ai bien compris) à monter les médias à partager automatiquement au démarrage (inscrits dans le fstab), installer samba, inscrire dans le smb.conf les renseignements des médias à partager, vérifier les permissions, tout cela en ligne de commande car les gestes en graphique se heurtent à des erreurs et.... en voiture Simone !
Crop bien, comme disait mon petit-fils à 4 ans ! Je mets RÉSOLU pour ce fil de discussion. Un grand merci à Iznobe (une bouteille de Champagne virtuelle ! )
Hors ligne
#48 Le 15/07/2023, à 21:41
- iznobe
Re : [RÉSOLU] encore un 'net usershare' qui bloque
merci , mais je n' aime pas trop le champagne
Parfois il est preferable de mettre les mains directement dans le " camboui " .
D ' une part on apprend des choses et on comprend mieux ce que l' on fait et d' autre part avec un peu d ' aide , c ' est pas si compliqué que ca .
Puis c ' est en forgeant qu ' on devient forgeron , n ' est ce pas
A +
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#49 Le 15/07/2023, à 22:56
- Coeur Noir
Re : [RÉSOLU] encore un 'net usershare' qui bloque
tout cela en ligne de commande car les gestes en graphique se heurtent à des erreurs
Oui car malheureusement il n'y a plus d'utilitaire graphique simple pour gérer les partages Samba sous Ubuntu. Ça existait dans' l'temps…
Et malheureusement bis, les options de partage proposés par la plupart des explorateurs de fichiers sont toutes pétées - sauf Nautilus qui est le seul à jour vis à vis de Samba.
Les autres explorateurs « dérivés » ( forks ) d'anciennes versions de Nautilus sont à la ramasse à ce sujet ( Nemo, Caja… )
Je ne sais pas trop ce que donnent Thunar ( xfce/xubuntu ) ou Dolphin ( plasma-kde/kubuntu ) à cet égard.
Depuis quelques années maintenant, le niveau de sécurité de base pour les partages Samba - c'est USER.
C'est à dire qu'ils s'attendent à un utilisateur authentifié par un identifiant et un mot de passe, c'est devenu le minimum syndical.
Un utilisateur au sens de Samba - un utilisateur créé dans la config' de Samba.
Tu peux n'en créer qu'un, et depuis toutes les autres machines qui accèdent à des partages Samba, renseigner l'id et le mdp de passe de cet unique utilisateur Samba.
Dernière modification par Coeur Noir (Le 15/07/2023, à 23:03)
Débuter ⋅ Doc ⋅ Bien rédiger ⋅ Retour commande ⋅ Insérer image | illustrations & captures d'écran < ⋅ >
Hors ligne
#50 Le 16/07/2023, à 12:26
- Maminette
Re : [RÉSOLU] encore un 'net usershare' qui bloque
Je "plussois" comme on dit !
Encore Merci pour votre aide
Hors ligne