Ecryptfs: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
m (Text replacement - "[[Kategorie:" to "[[Category:")
m (Text replacement - "<source" to "<syntaxhighlight")
Line 3: Line 3:
===ecryptfs-mount-private -> mount: No such file or directory===
===ecryptfs-mount-private -> mount: No such file or directory===
====Problem====
====Problem====
<source lang=bash>
<syntaxhighlight lang=bash>
user@host:~$ ecryptfs-mount-private  
user@host:~$ ecryptfs-mount-private  
Enter your login passphrase:
Enter your login passphrase:
Line 11: Line 11:
</source>
</source>
The keys are correctly unlocked
The keys are correctly unlocked
<source lang=bash>
<syntaxhighlight lang=bash>
user@host:~$ keyctl list @u
user@host:~$ keyctl list @u
2 keys in keyring:
2 keys in keyring:
Line 18: Line 18:
</source>
</source>
But no luck:
But no luck:
<source lang=bash>
<syntaxhighlight lang=bash>
$ ls -al
$ ls -al
total 20
total 20
Line 30: Line 30:


====Workaround====
====Workaround====
<source lang=bash>
<syntaxhighlight lang=bash>
user@host:~$ keyctl link @u @s
user@host:~$ keyctl link @u @s
user@host:~$ ecryptfs-mount-private
user@host:~$ ecryptfs-mount-private
user@host:~$  
user@host:~$  
</source>
</source>

Revision as of 23:26, 25 November 2021

Tipps&Tricks

ecryptfs-mount-private -> mount: No such file or directory

Problem

<syntaxhighlight lang=bash> user@host:~$ ecryptfs-mount-private Enter your login passphrase: Inserted auth tok with sig [affecaffeeaffe00] into the user session keyring mount: No such file or directory user@host:~$ </source> The keys are correctly unlocked <syntaxhighlight lang=bash> user@host:~$ keyctl list @u 2 keys in keyring: 1013878144: --alswrv 2223 2223 user: affecaffeeaffe01 270316877: --alswrv 2223 2223 user: affecaffeeaffe02 </source> But no luck: <syntaxhighlight lang=bash> $ ls -al total 20 drwx------ 3 ansible admin 8 Dez 7 09:12 . drwxr-xr-x 6 root root 6 Dez 7 09:10 .. lrwxrwxrwx 1 root root 32 Dez 7 09:11 .Private -> /home/.ecryptfs/ansible/.Private lrwxrwxrwx 1 root root 33 Dez 7 09:11 .ecryptfs -> /home/.ecryptfs/ansible/.ecryptfs lrwxrwxrwx 1 root root 52 Dez 7 09:12 README.txt -> /usr/share/ecryptfs-utils/ecryptfs-mount-private.txt lrwxrwxrwx 1 root root 56 Dez 7 09:11 ecryptfs-mount-private.desktop -> /usr/share/ecryptfs-utils/ecryptfs-mount-private.desktop </source>

Workaround

<syntaxhighlight lang=bash> user@host:~$ keyctl link @u @s user@host:~$ ecryptfs-mount-private user@host:~$ </source>