Re: newbie Bluetooth questions

2020-07-12 Thread Ed Greshko
On 2020-07-09 12:20, David wrote: > sudo dnf install pulseaudio-module-bluetooth bluez > [sudo]: > Last metadata expiration check: 2:05:16 ago on Wed 08 Jul 2020 09:13:17 PM > CDT. > Package pulseaudio-module-bluetooth-13.99.1-4.fc33.x86_64 is already > installed. > Package bluez-5.54-2.fc33.x86_

Re: unmount automatically mounted USB devices by systemd-udevd

2020-07-12 Thread Angelo Moreschini
Thank you Patick I didn't know fstab can be used to prevent mountage USS HD .thank you for the advice. In every case is better to do it by the script. My empiric rule works... and I'continue to use it :-). Still thank you Angelo On Mon, Jul 13, 2020, 00:16 Patrick O'Callaghan wrote: > On

Re: Samba problems -

2020-07-12 Thread Bob Goodwin
On 2020-07-12 20:40, Ed Greshko wrote: So, the only problem you have is with Thunar, yes? Maybe logging out and logging back in is needed. . Ok, it's about the end of the day here, had to stop for supper. we'll see if it works differently in the morning. I keep wondering if it is something

Re: Samba problems -

2020-07-12 Thread Ed Greshko
On 2020-07-13 08:26, Bob Goodwin wrote: > > > On 2020-07-12 20:17, Ed Greshko wrote: >> If that is what it is with the share mounted then everything should work. >> >> As user bobg, not root, what do you get when you do >> >> touch /media/smb/x > . > [bobg@WS1 ~]$ touch /media/smb/x > [bobg@WS1 ~]$

Re: Samba problems -

2020-07-12 Thread Bob Goodwin
On 2020-07-12 20:17, Ed Greshko wrote: If that is what it is with the share mounted then everything should work. As user bobg, not root, what do you get when you do touch /media/smb/x . [bobg@WS1 ~]$ touch /media/smb/x [bobg@WS1 ~]$ ll /media/smb/ total 4 drwxr-xr-x. 2 bobg bobg 0 Jul 10 17:

Re: Samba problems -

2020-07-12 Thread Ed Greshko
On 2020-07-13 07:46, Bob Goodwin wrote: > > > On 2020-07-12 19:30, Ed Greshko wrote: >> What do you get for >> >> ll -d /media >> >> and >> >> ll -d /media/smb >> >> ? > . > > What do you get for > > ll -d /media > > and > > ll -d /media/smb > > ? > . > [root@WS1 bobg]# ll -d /media > drwxr

Re: Samba problems -

2020-07-12 Thread Bob Goodwin
On 2020-07-12 19:30, Ed Greshko wrote: What do you get for ll -d /media and ll -d /media/smb ? . What do you get for ll -d /media and ll -d /media/smb ? . [root@WS1 bobg]# ll -d /media drwxrwxr-x. 7 root root 4096 Jun 29 13:04 /media [root@WS1 bobg]# ll -d /media/smb drwxr-xr-

Re: Samba problems -

2020-07-12 Thread Ed Greshko
On 2020-07-13 06:15, Bob Goodwin wrote: > > > On 2020-07-12 17:26, Ed Greshko wrote: >> Oh, yes.  Those are needed to make the permissions and ownership correct. > . > New fstab line:  //192.168.50.149/bobg    /media/smb    cifs > uid=bobg,gid=bobg,credentials=/home/bobg/cred   0 0 > > I did 'syst

Re: Samba problems -

2020-07-12 Thread Bob Goodwin
On 2020-07-12 17:26, Ed Greshko wrote: Oh, yes.  Those are needed to make the permissions and ownership correct. . New fstab line:  //192.168.50.149/bobg    /media/smb    cifs uid=bobg,gid=bobg,credentials=/home/bobg/cred   0 0 I did 'systemctl daemon-reload' and umount /media/smb  >  mount

Re: Samba problems -

2020-07-12 Thread Ed Greshko
On 2020-07-13 05:19, Bob Goodwin wrote: > The screen shot had to be copied so J could zoom to the maximum and is > difficult to read Sorry about that. Next time I'll try to remember and increase the font size of the terminal and only take a snapshot of the relevant area. -- The key to gettin

Re: Samba problems -

2020-07-12 Thread Ed Greshko
On 2020-07-13 05:19, Bob Goodwin wrote: > > > On 2020-07-12 16:16, Ed Greshko wrote: >> Have you succeeded in mounting bobg? > . > Yes it mounts as expected with 'mount /media/smb' >> >> Here is what I have >> >> https://imgur.com/gallery/SOdsnlA > . > The screen shot had to be copied so J coul

Re: Samba problems -

2020-07-12 Thread Bob Goodwin
On 2020-07-12 16:16, Ed Greshko wrote: Have you succeeded in mounting bobg? . Yes it mounts as expected with 'mount /media/smb' Here is what I have https://imgur.com/gallery/SOdsnlA . The screen shot had to be copied so J could zoom to the maximum and is difficult to read but my fstab

Re: unmount automatically mounted USB devices by systemd-udevd

2020-07-12 Thread Patrick O'Callaghan
On Sun, 2020-07-12 at 10:10 +0300, Angelo Moreschini wrote: > Hi, > > > I made a script that (using rsync ) run a backup of some > (particular) data of my computer. > > I use an external USB-HD to store data of the backup and, of course, I need > to mount this HD-device before. > > > A problem

Re: Samba problems -

2020-07-12 Thread Ed Greshko
On 2020-07-13 02:29, Bob Goodwin wrote: > ed.gres...@greshko.com wrote: > > Just remember 2 things > > 1.  Check the journal for more info on errors. > > 2.  Use "smbclient -L remote_address" to find the available Sharenames. > > In your case, /home/share was not on the list.  It was "bobg". >

Re: rsync question

2020-07-12 Thread Francis . Montagnac
Hi. On Sun, 12 Jul 2020 16:06:00 -0400 bruce wrote: > assume > /home/test/user1/foo > /var/www/html > a user is in the "/" dir > how can this user copy/rsync "foo" dir to get /var/www/html/foo > i know you could cd to /home/test/user1 and > do > rsync -vv -aR foo/ /var/www/html/ Simply do

rsync question

2020-07-12 Thread bruce
assume /home/test/user1/foo /var/www/html a user is in the "/" dir how can this user copy/rsync "foo" dir to get /var/www/html/foo i know you could cd to /home/test/user1 and do rsync -vv -aR foo/ /var/www/html/ which would get /var/www/html/foo but doing an rsync to a specific target dir..

Samba problems -

2020-07-12 Thread Bob Goodwin
ed.gres...@greshko.com wrote: Just remember 2 things 1.  Check the journal for more info on errors. 2.  Use "smbclient -L remote_address" to find the available Sharenames. In your case, /home/share was not on the list.  It was "bobg". And I still dunno why, what I did to make it different

unmount automatically mounted USB devices by systemd-udevd

2020-07-12 Thread Angelo Moreschini
Hi, I made a script that (using rsync ) run a backup of some (particular) data of my computer. I use an external USB-HD to store data of the backup and, of course, I need to mount this HD-device before. A problem come because systemd-udevd automatically mount plugged USB devices when they are