LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-19-2018, 03:43 PM   #16
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872

Type Ctrl+C to quit dbus-monitor

Could you try with ' udisks --monitor-detail ' and insert your usb key
 
Old 02-19-2018, 04:34 PM   #17
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
The udisks --monitor-detail show:

Monitoring activity from the disks daemon. Press Ctrl+C to cancel.

When I connect the usb still this sentence (anything happen).
 
Old 02-19-2018, 04:44 PM   #18
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,781

Rep: Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431
I'm not exactly sure what changed that is responsible but in my older 14.0 32 bit install although USB sticks would automount I found it difficult to get consistency of the naming convention for the location making command line copying etc more difficult so added the following lines to my /etc/fstab so they would mount the same place every time. Note that this requires accessing the UUID for what sticks you like to mount.

Code:
### /etc/fstab - abridged
######USB Sticks#####
UUID=5424-CC68 /media/USB-1  auto     defaults,user                           0  0
UUID=1002-FB5E /media/USB-2  auto     defaults,user                           0  0
This is no longer needed in 14.2 especially since I went back to KDE which notifies users that a device has been automounted and "what would you like to do with it?". Xfce doesn't provide such service AFAIK and that was my default Desktop on 14.0. In any case, the fstab entry still works and eliminates any guesswork. The "blkid" command will reveal the UUID of any mounted device.
 
Old 02-19-2018, 05:07 PM   #19
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
@enorbet:

I like XFCE, I prove it KDE but is not for me (ja ja).
As I post before, I really have no idea what happen because in the first installation it works.
But it doesn't matter. Now I'm mounting the USB stick and the hard disk manually. The time limit is the saturday, I'll until this day and if can't fixe it, I'll reinstall all the SO (the installation time is short).
Thanks.
 
Old 02-19-2018, 05:46 PM   #20
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,781

Rep: Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431Reputation: 4431
Quote:
Originally Posted by ruy View Post
@enorbet:

I like XFCE, I prove it KDE but is not for me (ja ja).
As I post before, I really have no idea what happen because in the first installation it works.
But it doesn't matter. Now I'm mounting the USB stick and the hard disk manually. The time limit is the saturday, I'll until this day and if can't fixe it, I'll reinstall all the SO (the installation time is short).
Thanks.
If that means yours wasn't the Full Recommended Install then I wholeheartedly also recommend that as it solves a LOT of difficulties and hard drives space is cheap. That said, the fstab entries I posted present no problems when the sticks aren't present but will provide you with a consistent and automated mount. IIRC I found it especially helpful when I was using Xfce. When I upgraded to 14.2 which had a newer version of Xfce there were a few changes that just bothered me and made my desired configuration substantially more problematic, so I went back to KDE and I'm glad I did. It's clean, lean and mean now and easier to get exactly what I want. I liked Xfce for years and understand why many still do and that WM/DE choice is entirely subjective but since you are having this issue, any of these suggestions can potentially solve it.
 
Old 02-19-2018, 06:06 PM   #21
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Maybe try to mount usb key with udisk manually to test
After inserting usb key, run dmesg command and note usb key partition name
Then try to mount it with (say partition is /dev/sdc1):
Code:
udisksctl mount --block-device /dev/sdc1
 
Old 02-19-2018, 06:17 PM   #22
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
@enorbet:

I use all the times the Full Recommended Install (9.5+ gigas in home directory).
I'll still trying to solve this issue of course (this can be useful for anothers users). I use KDE in the past for a short period of time (when I had installed Arch) and don't like (probably is just a visual thing), in addition my notebook is a Compaq that have a cool issue by design, when I use it, it get hot with the time and loose eficiency, then get slow. So I try to use the lighter desktop, I think that is XFCE (really is LXDE but I never use it).
Of course I take every suggestion seriusly, you are very solicitous and know a lot, I'm still newbie.
Thank you.
 
Old 02-19-2018, 06:30 PM   #23
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
@keefaz:

I try with the command that suggest, and the USB stick was mounted in v-fat. In fact, the USB is sdc1.
I usually mount it with fdisk in \mnt, and it works too.
Code:
mount -t vfat /dev/sdc1 /mnt

But the device not appear in any case in the file manager (with the file system, trash, etc.), I mean for access directly with the GUI. Equally I can find it in /mnt/ (with fstab) or v-fat (with your code).
Thank you
 
Old 02-19-2018, 06:36 PM   #24
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
It was a test to check if you were able to mount it via udisk2 as regular user
I think the issue is thunar doesn't lauch udisk via dbus, I don't know why
 
Old 02-20-2018, 07:23 AM   #25
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
A few more infos to check:
Code:
ps -ef | grep [u]disk
ps -ef | grep [T]hunar
(I use [] in regexp to avoid grep command line in ps output)

Is your home dir free of old xfce configuration files? I mean in case of /home as a separate partition from old distribution version reused on a new installation
 
1 members found this post helpful.
Old 02-20-2018, 08:55 AM   #26
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
@keefaz:

Here is the result of the commands:

bash-4.3$ ps -ef | grep [u]disk
rodrigo 1266 1 0 feb19 ? 00:00:00 /usr/libexec/gvfs-udisks2-volume-monitor
root 1270 1 0 feb19 ? 00:00:16 /usr/lib/udisks2/udisksd --no-debug

bash-4.3$ ps -ef | grep [T]hunar
rodrigo 1139 1129 0 feb19 ? 00:02:00 Thunar --sm-client-id 22e804446-6f70-4c45-8543-3c7541d0c86a --daemon

When I reinstall Slackware I delete the old partition table, I create a new one, and format all the partitions (fast format, only for delete the old information). I dislike the old information (old installations in the system), is just personal.
So for ask your question, yes its free (at least should be, because I format it all).
Thank you.
 
Old 02-20-2018, 11:43 AM   #27
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Could you try to uncheck ' Start GNOME services ' in xfce4-session-settings, rm -rf ~/.cache/*, log out Xfce, startx
Then try inserting an usb key
 
Old 02-21-2018, 12:40 PM   #28
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
@keefaz:

The GNOME services was unchecked (I'm don't need uncheck it).
I run the command, log out, restart and nothing happen. It still not working.

Thank you.
 
Old 02-21-2018, 04:40 PM   #29
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Well I don't know where --sm-client-id come from then... I haven't it in my xfce session (with gnome services unchecked)
Do you have anything gnome related automatically started in xfce4-session-settings?
 
Old 02-21-2018, 04:55 PM   #30
ruy
Member
 
Registered: Feb 2018
Posts: 43

Original Poster
Rep: Reputation: Disabled
@keefaz:

No, everything is uncheck (gnome and kde).
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Thunar does not automount USB stick in Windowmaker on Slackware64-current allend Slackware 4 04-18-2016 08:29 AM
32bit -current+XFCE+usb stick=no automount the_penguinator Slackware 18 12-20-2015 11:53 PM
HAL automount permissions differs between USB HD and USB memory stick Olaus Slackware 5 06-28-2010 06:34 PM
FC3 - usb stick automount after kernel compiling mightyMile Linux - Hardware 0 01-19-2006 02:07 PM
usb stick automount mfrangos79 Linux - Hardware 9 09-19-2005 09:55 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:35 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration