今天晚上早些时候,我不得不使用命令行安装一个加密的外部硬盘。多亏了这些说明,我成功了,但我想知道命令的-b
开关是做什么的udisksctl
。我查看了手册页并没有提及它。是否表明正在解密的是块设备?
Alcuin Arundel's questions
我在 ThinkPad X200 上使用 Ubuntu MATE 16.04。出于某种原因,我无法在启动时访问 GRUB 菜单。当我shift
在启动屏幕后立即点击时,GRUB loading
(或类似的东西)短暂出现,然后我得到一个空白屏幕,然后正常的启动过程重新开始,我发现自己有正常的 LUKS 密码提示(我正在使用完整-磁盘加密)。
然后我尝试在 中禁用图形终端/etc/default/grub
,但后来我得到error: no video mode activated
了,它再次继续正常的启动过程。
这是我的/etc/default/grub
文件的内容
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet systemd.unit=multi-user.target consoleblank=0"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
我试图在 Ubuntu 16.04 中找到 gnome 终端配置文件,但没有任何运气。我希望光标不要停止闪烁,并且可能有一个我可以更改的超时参数,但我找不到执行此操作的文件。我知道它可以通过 dconf-editor 来完成,但由于某种原因这不起作用(我想我删除了一些依赖项或其他)。
我在scp
从远程计算机传输文件时遇到了一点困难。问题显然与文件所在目录的名称有关。它们位于名为(和之间有空格)的 CD 驱动器photos 4
上。当我尝试转移时,我使用了以下命令:photos
4
scp [remote username]@192.168.1.X:/media/[remote username]/photos\ 4/file.jpg /home/[username]/Pictures
但是,我收到一条错误消息作为回报No directory: /media/[remote username]/photos
。我认为反斜杠会转义空格,以便将目录读取为photos 4
.
有人可以告诉我我在这里做错了什么吗?
(顺便说一句,我复制file.jpg
到远程计算机的桌面,然后运行命令:
scp [remote username]@192.168.1.X:/home/[remote username]/Desktop/file.jpg /home/[username]/Pictures
它起作用了,因此转义序列似乎是罪魁祸首。我只是无法弄清楚它有什么问题。)
我已经尝试过几次使用磁盘工具加密 1GB SD 卡。我以为一切都很顺利,直到我尝试解锁它。当我输入密码时,它看起来好像设备已打开,但随后我收到一条消息:
无法显示此位置。您没有查看“[磁盘名称]”内容所需的权限
有什么想法我可能做错了吗?
编辑:我应该补充一点,我在 Lubuntu 14.04 笔记本电脑上格式化了 SD,并试图在另一台运行常规 Ubuntu 14.04 的笔记本电脑上打开它。
命令的人mv
说有一个-i
选项可以在执行命令之前提示 ay/n,但它对我不起作用。每次我使用mv -i
时,文件都会自动重命名而不会发出提示。知道这里发生了什么吗?