【ubuntu】 ecryptfs加密(安装、使用、卸载)

【ubuntu】 ecryptfs加密(安装、使用、卸载)

一、安装软件与使用

1.安装ecryptfs

在终端下输入:

bash 复制代码
sudo apt-get install ecryptfs-utils

2.创建登录密码和挂载密码

bash 复制代码
ecryptfs-setup-private

输入密码。

最后两行,yes, no

bash 复制代码
Would you like to proceed with the mount (yes/no)?  yes  你从未用这个密码挂载过,是否继续?
Would you like to append sig [86a764759a1f7625] to
[/root/.ecryptfs/sig-cache.txt]
in order to avoid this warning in the future (yes/no)?  no  是否将此次挂载信息记录下来以免下次报警?
Not adding sig to user sig cache file; continuing with mount.

3. 挂载文件夹

mount -t ecryptfs /opt/test /opt/test

一直回车

4. 在文件夹里创建文档

5.卸载文件夹

umount -t ecryptfs /opt/test

2.卸载软件

1. 卸载private文件夹

由于我有一个private挂载了, 我先卸载

bash 复制代码
sudo umount /home/xiaoxin/Private

2. 删除.ecryptfs文件夹

bash 复制代码
(base) xiaoxin@xiaoxin:~$ ls -a
 .               .java                 .selected_editor
 ..              .local                sensors
 .bash_history   log                   snap
 .bash_logout    .mozilla              .sogouinput
 .bashrc         Music                 .ssh
 .cache          .nv                   .sudo_as_admin_successful
 .conda          .nvidia-settings-rc  'Sunlogin Files'
 .config         .pam_environment      Templates
 .dbus           Pictures              .thunderbird
 Desktop         .pki                  .ut_storage
 .dmrc           .presage              Videos
 Documents       .Private              .vscode
 Downloads       Private               .wget-hsts
 .ecryptfs       .profile              .Xauthority
 .gem            .psensor              .xinputrc
 .gnupg          Public                .xsession-errors
 .imagej         .python_history       .xsession-errors.old

根目录下删除

bash 复制代码
(base) xiaoxin@xiaoxin:~$ sudo rm -rf .ecryptfs

3. apt remove

bash 复制代码
sudo apt-get remove ecryptfs-utils libecryptfs0
相关推荐
乙己4073 小时前
计算机网络——网络层
运维·服务器·计算机网络
飞行的俊哥3 小时前
Linux 内核学习 3b - 和copilot 讨论pci设备的物理地址在内核空间和用户空间映射到虚拟地址的区别
linux·驱动开发·copilot
hunter2062065 小时前
ubuntu向一个pc主机通过web发送数据,pc端通过工具直接查看收到的数据
linux·前端·ubuntu
不会飞的小龙人6 小时前
Docker Compose创建镜像服务
linux·运维·docker·容器·镜像
不会飞的小龙人6 小时前
Docker基础安装与使用
linux·运维·docker·容器
张3蜂6 小时前
docker Ubuntu实战
数据库·ubuntu·docker
白粥行7 小时前
linux-ubuntu学习笔记碎记
linux·ubuntu
jerry-897 小时前
通过配置核查,CentOS操作系统当前无多余的、过期的账户;但CentOS操作系统存在共享账户r***t
linux
小歆8848 小时前
100%全国产化时钟服务器、全国产化校时服务器、全国产化授时服务器
运维·服务器
涛ing8 小时前
21. C语言 `typedef`:类型重命名
linux·c语言·开发语言·c++·vscode·算法·visual studio