2020年7月12日 星期日

使用 virtualbox 6.1 遇到 invalid setting detected, 解決法

在 Ubuntu 20.04 下初次安裝 virtualbox 6.1,但掛戴 iso 檔時,出現了錯誤訊息: "invlid setting detected",內容是說 hardware virtualization 不支援。 解決的方法是重新開機進入 BIOS 設定,Advanced --> CPU configuration --> 將 "Intel Virtualization Technology" 打開 (Enable)。 這樣再使用 virtualbox,就正常了。

2020年7月7日 星期二

HP Ink Tank Wireless 419 scanner in Ubuntu 20.04

I have an HP Ink Tank Wireless 419 Printer/Scanner.

To use its scanner function in Ubuntu 20.04,
just use "simple-scan."

Just install it by:
$ sudo apt install simple-scan

and type
$ simple-scan

It will search the  HP Ink Tank Wireless 419 and scan normally.



p.s.
The other scanner utility "xsane" can not function properly with HP Ink Tank Wireless 419.

2020年7月6日 星期一

在 Ubuntu 上如何將 home folder 改成加密的 folder

如果在安裝的時候,沒有選擇將 home 資料夾加密。
事後,仍可以用以下方法,建立一個加密的 home 資料夾。

首先,先用 adduser 指令新加一個暫時的使用者,例如 testuser,再設定它有 sudo 權限。登入 testuser 後,執行以下指令:

sudo apt-get install ecryptfs-utils

sudo ecryptfs-migrate-home -u USER

其中 USER 為要備份為加密 home 使用者 login 的 id。

日後,如果要修改加密的 passphrase,要用這個指令 ecryptfs-rewrap-passphrase
https://linux.die.net/man/1/ecryptfs-rewrap-passphrase

參考:
https://askubuntu.com/questions/27911/encrypt-home-drive-after-installation/27918#27918

https://blog.dustinkirkland.com/2011/02/long-overdue-introduction-ecryptfs.html