See Post #15 above.
And here's my /etc/fstab entry for the ESP (as I edited it to be following the thread I linked to in Post #5):
(TwoFistedJustice: in the above fstab clip, the symbol # preceding a line indicates the line is only a comment line and has no programming effect. You probably know this but thought I'd say it in case. Thus, the line I finally used is the last line:
UUID=C896-1CFF /boot/efi vfat umask=0022 0 1
)
But ... I would heed kubicle's comment that it might be safer to simply use sudo -i (to open krusader as root). This is also explained in your thread here and in the thread I linked to in Post #5.
And here's my /etc/fstab entry for the ESP (as I edited it to be following the thread I linked to in Post #5):
Code:
# /boot/efi was on /dev/sda1 during installation # This statement only gives read/write access to root: # UUID=C896-1CFF /boot/efi vfat umask=0077 0 1 # NOTE: Next line gives full permissions to everyone on /boot/efi: # UUID=C896-1CFF /boot/efi vfat umask=0000 0 1 # Note, kubicle: If you are going to edit the efi fstab umask, it would be safer to use umask=0022, # which doesn't give straight write access... # you could still open the files with normal (not root) kate since it has read access, # and it should still ask for password when you try to save, like this: UUID=C896-1CFF /boot/efi vfat umask=0022 0 1
UUID=C896-1CFF /boot/efi vfat umask=0022 0 1
)
But ... I would heed kubicle's comment that it might be safer to simply use sudo -i (to open krusader as root). This is also explained in your thread here and in the thread I linked to in Post #5.
Comment