|
|
@ -47,6 +47,7 @@ ubuntu2204.exe config --default-user <默认用户名> |
|
|
|
\end{enumerate} |
|
|
|
|
|
|
|
\section{vhd 文件挂载} |
|
|
|
\subsection{Windows 下用 WSL 工具} |
|
|
|
使用 Microsoft Store 中的 WSL 可以直接挂载: |
|
|
|
\begin{minted}[bgcolor=lightgray!30,fontsize=\small]{bash} |
|
|
|
wsl --mount --vhd <pathToVHD> |
|
|
@ -56,6 +57,21 @@ wsl --mount --vhd <pathToVHD> |
|
|
|
wsl --mount --vhd e:\wsl2\rk3588\rk3588.vhdx --partition 1 --name rk3588 |
|
|
|
\end{minted} |
|
|
|
|
|
|
|
\subsection{linux 下用 qemu-nbd} |
|
|
|
安装 qemu-nbd 工具: |
|
|
|
\begin{minted}[bgcolor=lightgray!30,fontsize=\small]{bash} |
|
|
|
apt-get install qemu-utils |
|
|
|
\end{minted} |
|
|
|
加载 nbd 驱动: |
|
|
|
\begin{minted}[bgcolor=lightgray!30,fontsize=\small]{bash} |
|
|
|
modprobe nbd nbds_max=64 |
|
|
|
\end{minted} |
|
|
|
|
|
|
|
用 qemu-nbd 加载: |
|
|
|
\begin{minted}[bgcolor=lightgray!30,fontsize=\small]{bash} |
|
|
|
qenum-nbd -c /dev/nbd0 /path/to/vhdx |
|
|
|
\end{minted} |
|
|
|
|
|
|
|
\section{USB 设备共享} |
|
|
|
在 windows 上安装 \href{https://github.com/dorssel/usbipd-win/releases}{usbipd-win}。使用方法可以参考这里:\\ |
|
|
|
\url{https://learn.microsoft.com/zh-cn/windows/wsl/connect-usb}。 |
|
|
|