[SOLVED] I have some mounting issues 05 April 2021, 20:43:42 So, I installed artix(runit as my init system) and I came across some issues(I don't know if they are issues or it is supposed to work like this). So first of all, I use pcmanfm as my file manager and as far as I can see, it can't recognize the trash folder. It's not appearing on the left side even tho in the file manager settings the trash folder is checked. Also, on the left, where I usually saw my other disks as mountable, I had to click on them and just mount, now I can't mount them from the file manager, I would have to manually mount them in the terminal. Also, on the left side of the file manager, the mounted linux partitions are always shown(root, home and boot). Is this normal behaviour or did I do something wrong?(I am using udisks and udiskie for auto mounting but still I can't mount them from the file manager, they are just not recognized) Last Edit: 06 April 2021, 10:27:32 by nous
Re: I have some mounting issues Reply #1 – 05 April 2021, 21:16:08 mission gvfs? install gvfs , gvfs is only optional dep for pcmanfm!!read https://wiki.archlinux.org/index.php/PCManFM#Installation
Re: I have some mounting issues Reply #3 – 05 April 2021, 21:28:45 gvfs: The first is to simply autostart or run the installed file manager in daemon mode (i.e. as a background process). For example, when using PCManFM the following command would be added to the autostart file:Code: [Select]pcmanfm -d &https://wiki.archlinux.org/index.php/File_manager_functionality#File_manager_daemon <-- could this not help you? some partitions, which you want not see, you can hide https://wiki.archlinux.org/index.php/Udisks#Hide_selected_partitions
Re: I have some mounting issues Reply #4 – 05 April 2021, 21:55:40 Quote from: alium – on 05 April 2021, 21:28:45gvfs: The first is to simply autostart or run the installed file manager in daemon mode (i.e. as a background process). For example, when using PCManFM the following command would be added to the autostart file:Code: [Select]pcmanfm -d &https://wiki.archlinux.org/index.php/File_manager_functionality#File_manager_daemon <-- could this not help you? some partitions, which you want not see, you can hide https://wiki.archlinux.org/index.php/Udisks#Hide_selected_partitionsI will be looking into the hiding part, but pcmanfm -d didn't help. I tried it before
Re: I have some mounting issues Reply #5 – 06 April 2021, 00:33:33 So, in case anyone comes across this, I found a fix. I added this in my Xsession (lightdm) script:if which dbus-run-session >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS";theneval "$(dbus-launch --sh-syntax --exit-with-session)"fi 1 Likes