Explorar el Código

Update README.md

蘭雅sRGB hace 4 años
padre
commit
915a803a7a
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. 11 1
      debian/README.md

+ 11 - 1
debian/README.md

@@ -22,7 +22,17 @@ deb-src http://mirrors.ustc.edu.cn/debian/ buster-updates main
 ```
 
 ### 设置时区为北京时间
-
+```
+ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone	
+```
+## dd 命令是备份Linux系统,或者是linux系统杀手	
+- 所以建立虚拟vmdk磁盘只分配了2G,方便DD,或者写U盘镜像 	
+```	
+#  dd指令 语法格式	
+dd  [option] if=file:输入文件名,缺省为标准输入  of=file:输出文件名,缺省为标准输出	
+测试纯写入性能	
+dd if=/dev/zero of=test bs=8k count=10000 oflag=direct	
+测试纯读取性能	
 dd if=test of=/dev/null bs=8k count=10000 iflag=direct
 
 root@debian:~$ fdisk -l