Debian

Debian 10 中缺少 LVM 工具

  • June 16, 2021

我有一個使用加密的Debian 10LVM2系統。

目前我有一個 10G 的/var分區,對於我的日常使用來說不夠大docker,所以我決定調整它的大小。

令我驚訝的是,我沒有安裝管理 LVM 的工具,在我的儲存庫中也沒有!此外,Debian wiki 中的文件已經過時。

root@almanzora:~# pvchange
bash: pvchange: command not found
root@almanzora:~# pvck
bash: pvck: command not found
root@almanzora:~# pvcreate
bash: pvcreate: command not found
root@almanzora:~# pvdisplay
bash: pvdisplay: command not found
root@almanzora:~# pvmove
bash: pvmove: command not found
root@almanzora:~# pvs
bash: pvs: command not found
root@almanzora:~# pvscan
bash: pvscan: command not found
root@almanzora:~#

我現在如何在LVM沒有工具的情況下處理我的問題,而不是通過安裝以前版本的舊軟體包來“破壞 Debian”?

請注意,在舊版本的 Debian 中,su命令來自舊shadow源包,但 Debian 10su來自util-linux原始碼並且具有不同的語義。

根據您切換到 root 的準確程度,您現在可能會/sbin/usr/sbinPATH的 .

Debian 10.x 預設不包含任何 */sbin 路徑。使用“export PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH”解決這個問題。

su -在這種特殊情況下,使用(而不是)切換到 rootsu會將適當的目錄添加到PATH.t

引用自:https://unix.stackexchange.com/questions/548669