1

我有 5 个 truecrypt 加密驱动器。运行 ubuntu 13.04。我正在尝试在脚本中运行以下命令来安装我的驱动器。

truecrypt -t /dev/disk/by-uuid/25f8c629-d0c8-4c39-b4c2-aacba38b5882 /media/P --password="$password"  -k "" --protect-hidden=no

由于 truecrypt 的工作方式,我无法使用它,因为 UUID 只有在安装驱动器后才能访问。

是否可以使用硬盘序列号或型号做同样的事情?一些更永久的东西?

我无法使用 /dev/,因为它们几乎每次重新启动 PC 时都会随机变化。这是由于我的 2 个驱动器通过 PCI 卡连接。

4

1 回答 1

0

请改用磁盘 ID:

#!/bin/bash

# Run this script as root to avoid entering the root password twice

secret=0xa52f2c38

# Generate tempfile
tempfile=fdisk.tmp
sudo fdisk -l > $tempfile

# --------------------------------------------------------------------------
# Locate secret drive and mount it
# --------------------------------------------------------------------------
num=$[ $(grep -n "^Disk identifier: $secret" $tempfile | cut -f1 -d:) - 5 ]
if [ $num \> 0 ] # num will be greater than 0 if drive exists
then

 # Get line containing /dev
 # ----------------------------------------------------------------------
 dev=$(sed -n "${num}p" $tempfile | cut -f2 -d' ' | sed 's/://')
 truecrypt $dev /media/secret

# Check (Create .truecrypt on the mounted volumen beforehand)
# ----------------------------------------------------------------------
 if [ ! -f /media/secret/.truecrypt ]
 then
   zenity --error --text="There was a problem mounting secret"
 fi
fi

rm $tempfile

脚本的来源是:http ://delightlylinux.wordpress.com/2012/05/21/mounting-truecrypt-volumes-by-disk-id/ 如果您对脚本的内容有理解困难,建议您通读一遍是在做。解释很透彻。

于 2014-01-02T08:08:01.237 回答