轉(zhuǎn)載:此文章由個人和網(wǎng)絡(luò)文章收集總結(jié),如果有侵犯到你的權(quán)益,請聯(lián)系刪除。
Linux 開發(fā)板UBUNTU18.04 注意 qt5.8
df -hl df --help 硬盤
free -h free --help 內(nèi)存
ps -ef 查看所有進(jìn)程
top #實時顯示進(jìn)程狀態(tài)
Ipcs -a/q/m/s 進(jìn)程管理命令,共享內(nèi)存,消息隊列,信號量等
Ipcrm -m/M
查看與/dev/input目錄下的event對應(yīng)的設(shè)備:cat /proc/bus/input/devices
查看CPU信息:cat /proc/cpuinfo
查看內(nèi)存信息:cat /proc/meminfo
查看USB設(shè)備:cat /proc/bus/usb/devices
查看鍵盤和鼠標(biāo):cat /proc/bus/input/devices
查看各分區(qū)使用情況:df
查看體系結(jié)構(gòu):busybox uname -a
查看中斷信息:cat /proc/interrupts
Python3打包文件
pip/pip3 install pyinstaller 注意是否為 pip3
pyinstaller --version
pyinstaller +文件.py
解壓出現(xiàn)XXX XXX magic
解決辦法:
一、執(zhí)行命令
gzip -d varnish-4.0.3.tgz//要解壓文件
二、繼續(xù)執(zhí)行命令
tar xvf varnish-4.0.3.tar
在根目錄下查找某個文件 : find . -name "test"
(1)find / -name httpd.conf #在根目錄下查找文件httpd.conf,表示在整個硬盤查找
# find /etc/httpd/ -name "httpd.conf" -print >find.dt 2>&1 &。[2]+ done find /etc/httpd/ -name "httpd.conf" -print >find.dt 2>&1 &。[1] done find /etc/ -name "httpd.conf" -print >find.dt 2>&1 &。
(3)find /etc -name '*srm*' #使用通配符*(0或者任意多個)。表示在/etc目錄下查找文件名中含有字符串‘srm’的文件
(4)find . -name 'srm*' #表示當(dāng)前目錄下查找文件名開頭是字符串‘srm’的文件
自動獲取ip:udhcpc -i eth0
Qihua自動開始 vim /etc/profile
查看端口
U盤掛載
1、修改IP地址
打開 /etc/network/interfaces
sudo vim /etc/network/interfaces
加入以下語句:
auto eth0 #要設(shè)置的網(wǎng)卡
iface eth0 inet static #設(shè)置靜態(tài)IP;如果是使用自動IP用dhcp,后面的不用設(shè)置,一般少用
address xxx.xxx.xxx.xxx #IP地址
netmask xxx.xxx.xxx.xxx #子網(wǎng)掩碼
gateway xxx.xxx.xxx.xxx #網(wǎng)關(guān)
自動獲取ip
auto eth0 #要設(shè)置的網(wǎng)卡
iface eth0 inet dhcp#設(shè)置靜態(tài)IP;如果是使用自動IP用dhcp,后面的不用設(shè)置,一般少用
2、修改DNS
打開/etc/resolv.conf
sudo vim /etc/resolv.conf
nameserver 180.76.76.76#百度
nameserver 8.8.8.8 #谷歌