We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d1e8d commit 21b15c7Copy full SHA for 21b15c7
1 file changed
Linux.md
@@ -258,6 +258,11 @@ $ cat /proc/meminfo
258
259
[Ubuntu设置系统防火墙](https://help.ubuntu.com/community/UFW)
260
261
+格式化U盘(需卸载/取消挂载后才能格式化)
262
+```
263
+$ sudo fdisk -l
264
+$ sudo mkfs.vfat -F 32 /dev/sdb1即可将u盘格式化为fat32格式
265
266
267
刻录镜像文件制作U盘启动盘
268
```
@@ -478,3 +483,10 @@ index-url = http://pypi.douban.com/simple
478
483
#index-url = http://mirrors.aliyun.com/pypi/simple/
479
484
480
485
由于最新的 pip 安装需要使用的 https 加密,所以在此需要添加 trusted-host
486
+
487
488
+pip 安装 gnureadline 报错: /usr/bin/ld: cannot find -lncurses
489
490
+$ sudo apt-cache search ncurses- | grep ncurses
491
+$ sudo apt-get install libncurses5-dev
492
0 commit comments