清空命令一般都是采用echo去清空文件內(nèi)容,例如,
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、商丘ssl等。為上1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的商丘網(wǎng)站制作公司
echo “ ” test,表示直接寫入一個(gè)空信息到test文件里去,這樣test文件就會(huì)被寫空,清除掉所有信息。
另外,還可以用vim,vi編輯命令直接對文件進(jìn)行修改即可,例如,
vim test
然后直接刪除里面所有內(nèi)容即可,快捷刪除方式可以用10000dd 表示刪除1萬行內(nèi)容。
看緩存的命令
free -m
清理緩存的命令
echo 1 /proc/sys/vm/drop_caches
echo 2 /proc/sys/vm/drop_caches
echo 3 /proc/sys/vm/drop_caches
echo 0 是不釋放緩存
echo 1 是釋放頁緩存 《Linux就該這么學(xué)》
ehco 2 是釋放dentries和inodes緩存
echo 3 是釋放 1 和 2 中說道的的所有緩存
1.重啟linux系統(tǒng),出現(xiàn)GRUB啟動(dòng)菜單;
2.按e健進(jìn)入編輯狀態(tài),按向下的方向健,劃到linux16所在行,把光標(biāo)停在行末尾;
3.在步驟2的所標(biāo)記的行末尾,添加console ttyS0 rd.break console=tty0;
4.按下Ctrl + x鍵進(jìn)入恢復(fù)模式。
擴(kuò)展資料:
linux系統(tǒng)優(yōu)點(diǎn)
1)Linux由眾多微內(nèi)核組成,其源代碼完全開源;
2)Linux繼承了Unix的特性,具有非常強(qiáng)大的網(wǎng)絡(luò)功能,其支持所有的因特網(wǎng)協(xié)議,包括TCP/IPv4、?TCP/IPv6和鏈路層拓?fù)涑绦虻?,且可以利用Unix的網(wǎng)絡(luò)特性開發(fā)出新的協(xié)議棧;
3)Linux系統(tǒng)工具鏈完整,簡單操作就可以配置出合適的開發(fā)環(huán)境,可以簡化開發(fā)過程,減少開發(fā)中仿真工具的障礙,使系統(tǒng)具有較強(qiáng)的移植性。
參考資料:百度百科-linux系統(tǒng)
1、使用重定向的方法
[root@centos7 ~]# du -h test.txt
4.0K test.txt
[root@centos7 ~]# test.txt
2、使用true命令重定向清空文件
[root@centos7 ~]# du -h test.txt
4.0K test.txt
[root@centos7 ~]# true test.txt
[root@centos7 ~]# du -h test.txt
0 test.txt
3、使用cat/cp/dd命令及/dev/null設(shè)備來清空文件
[root@centos7 ~]# du -h test.txt
4.0K test.txt
[root@centos7 ~]# cat /dev/null test.txt
[root@centos7 ~]# echo "Hello World" test.txt
[root@centos7 ~]# du -h test.txt
4.0K test.txt
[root@centos7 ~]# cp /dev/null test.txt
cp:是否覆蓋"test.txt"? y
[root@centos7 ~]# echo "Hello World" test.txt
[root@centos7 ~]# dd if=/dev/null of=test.txt
4、使用echo命令清空文件
[root@centos7 ~]# echo "Hello World" test.
[root@centos7 ~]# echo -n "" test.txt ==要加上"-n"參數(shù),默認(rèn)情況下會(huì)"\n",也就是回車符
5、使用truncate命令清空文件
[root@centos7 ~]# du -h test.txt
4.0K test.txt
[root@centos7 ~]# truncate -s 0 test.txt -s參數(shù)用來設(shè)定文件的大小,清空文件,就設(shè)定為0;