[CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
Hi all, I'm tearing my hair off trying to understand the difference between C7 & C8 for mounting a cifs FS with fstab I'm building a Plex media server on C8 and duplicated the fstab entries over from my current C7 installation My data (music & movies) are on CIFS shares on a Synology NAS. The pac

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Fred Smith
On Fri, Apr 03, 2020 at 04:00:42PM +0200, Patrick DERWAEL wrote: > Hi all, > > > These are my current fstab entries on the C7 box > > //192.168.1.200/mp3 /home/plex/Musique cifs > user=plex,pass=plex,ro,auto,vers=3.0 > //192.168.1.200/videos /home/plex/Vidéos cifs > user=plex,pass=plex,ro,auto,

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
Le ven. 3 avr. 2020 à 16:13, Fred Smith a écrit : > On Fri, Apr 03, 2020 at 04:00:42PM +0200, Patrick DERWAEL wrote: > > Hi all, > > > > > > > These are my current fstab entries on the C7 box > > > > //192.168.1.200/mp3 /home/plex/Musique cifs > > user=plex,pass=plex,ro,auto,vers=3.0 > > //192.1

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Simon Matter via CentOS
> Hi all, > > I'm tearing my hair off trying to understand the difference between C7 & > C8 > for mounting a cifs FS with fstab > > I'm building a Plex media server on C8 and duplicated the fstab entries > over from my current C7 installation > My data (music & movies) are on CIFS shares on a Synol

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
Le ven. 3 avr. 2020 à 17:02, Simon Matter via CentOS a écrit : > > Hi all, > > > > I'm tearing my hair off trying to understand the difference between C7 & > > C8 > > for mounting a cifs FS with fstab > > > > I'm building a Plex media server on C8 and duplicated the fstab entries > > over from my

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Jonathan Billings
On Fri, Apr 03, 2020 at 04:00:42PM +0200, Patrick DERWAEL wrote: > //192.168.1.200/mp3 /home/plex/Musique cifs > user=plex,pass=plex,workgroup=DERWAEL,ro,auto,vers=3.0 > //192.168.1.200/videos /home/plex/Vidéos cifs > user=plex,pass=plex,workgroup=DERWAEL,ro,auto,vers=3.0 > //192.

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
Le ven. 3 avr. 2020 à 17:54, Jonathan Billings a écrit : > On Fri, Apr 03, 2020 at 04:00:42PM +0200, Patrick DERWAEL wrote: > > //192.168.1.200/mp3 /home/plex/Musique cifs > > user=plex,pass=plex,workgroup=DERWAEL,ro,auto,vers=3.0 > > //192.168.1.200/videos /home/plex/Vidéos cifs

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Frank Cox
On Fri, 3 Apr 2020 18:01:27 +0200 Patrick DERWAEL wrote: > # > # After editing this file, run 'systemctl daemon-reload' to update systemd > # units generated from this file. I assume that you have done this part too? -- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com _

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
Done that and rebooted as well Patrick Derwael Rue de la Fontaine 3 4210 Burdinne +32.(0)479.80.50.79 Le ven. 3 avr. 2020 à 18:11, Frank Cox a écrit : > On Fri, 3 Apr 2020 18:01:27 +0200 > Patrick DERWAEL wrote: > > > # > > # After editing this file, run 'sy

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Leon Fauster via CentOS
Am 03.04.20 um 18:01 schrieb Patrick DERWAEL: Le ven. 3 avr. 2020 à 17:54, Jonathan Billings a écrit : On Fri, Apr 03, 2020 at 04:00:42PM +0200, Patrick DERWAEL wrote: //192.168.1.200/mp3 /home/plex/Musique cifs user=plex,pass=plex,workgroup=DERWAEL,ro,auto,vers=3.0 //192.168.1.200

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
User & pass are present According to the man pages, workgroup is supported I have changed it to domain, but that didn't change a thing [root@plexvm ~]# cat /etc/fstab # # /etc/fstab # Created by anaconda on Fri Apr 3 14:02:23 2020 # # Accessible filesystems, by reference, are maintained under '/

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Chris Schanzle via CentOS
On 4/3/20 12:48 PM, Patrick DERWAEL wrote: User & pass are present According to the man pages, workgroup is supported I have changed it to domain, but that didn't change a thing [root@plexvm ~]# cat /etc/fstab # # /etc/fstab # Created by anaconda on Fri Apr 3 14:02:23 2020 # # Accessible files

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
That was my initial setup before trying the abbreviations, but anyway: [root@plexvm ~]# nano /etc/fstab [root@plexvm ~]# cat /etc/fstab # # /etc/fstab # Created by anaconda on Fri Apr 3 14:02:23 2020 # # Accessible filesystems, by reference, are maintained under '/dev/disk/'. # See man pages fst

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Simon Matter via CentOS
> That was my initial setup before trying the abbreviations, but anyway: > > [root@plexvm ~]# nano /etc/fstab > [root@plexvm ~]# cat /etc/fstab > > # > # /etc/fstab > # Created by anaconda on Fri Apr 3 14:02:23 2020 > # > # Accessible filesystems, by reference, are maintained under '/dev/disk/'. >

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Patrick DERWAEL
Exactly the same... 😤😤😤 [root@plexvm ~]# mount -t cifs //192.168.1.200/mp3 /home/plex/Musique --verbose -o username=plex,password=plex,domain=DERWAEL,ro,auto,vers=3.0 mount.cifs kernel mount options: ip=192.168.1.200,unc=\\192.168.1.200\mp3,vers=3.0,user=plex,domain=DERWAEL,pass= mount er

Re: [CentOS] Mounting CIFS shares on C8

2020-04-03 Thread Phelps, Matthew
On Fri, Apr 3, 2020 at 4:09 PM Patrick DERWAEL wrote: > Exactly the same... 😤😤😤 > > > [root@plexvm ~]# mount -t cifs //192.168.1.200/mp3 /home/plex/Musique > --verbose -o username=plex,password=plex,domain=DERWAEL,ro,auto,vers=3.0 > mount.cifs kernel mount options: > > ip=192.168.1.200,unc=\\192.

Re: [CentOS] Mounting CIFS shares on C8

2020-04-04 Thread Patrick DERWAEL
Hi Matt, Yes all the directories do exist, are empty and (as far as I know) have the proper permissions [root@plexvm ~]# ls -l /home/plex total 0 drwxrwx--- 2 plex plex 6 Apr 3 15:41 Music drwxrwx--- 2 plex plex 6 Apr 3 15:41 Musique drwxrwx--- 2 plex plex 6 Apr 3 15:41 Séries drwxrwx--- 2 ple

Re: [CentOS] Mounting CIFS shares on C8

2020-04-04 Thread Simon Matter via CentOS
Then, what I'd try is 1) With an other directory like /mnt/xxx just to make sure it's not something with /home that it doesn't like. 2) See what it's doing by running it with strace -f mount. Regards, Simon > Exactly the same... 😤😤😤 > > > [root@plexvm ~]# mount -t cifs //192.168.1.200/mp3 /

Re: [CentOS] Mounting CIFS shares on C8

2020-04-04 Thread Patrick DERWAEL
Ok guys, issue solved. This was a RTFM issue I have scratched my VM and restarted the installation. When I came to the fstab update, I noticed a mistake in the NAS IP... so obviously, cifs could not find my shares... I'm pretty sure this is the result of my frustrated house elf which has deli