openwrt cfdisk
时间: 2023-09-12 09:05:47 浏览: 212
openwrt 基础知识
OpenWrt does not come with the `cfdisk` utility by default. However, you can install it using the package manager `opkg`. To install `cfdisk` on OpenWrt, follow these steps:
1. Connect to your OpenWrt device via SSH or LuCI web interface.
2. Update the package lists by running the command:
```
opkg update
```
3. Install `cfdisk` by running the command:
```
opkg install cfdisk
```
After the installation is complete, you can use the `cfdisk` command to manage disk partitions on your OpenWrt device.
阅读全文