設定螢幕解析度:
xrandr
用來檢視當前系統的解析度有哪些
xrandr -s 1024x768_60.00
來設定其中的乙個解析度
在linux下安裝chrome瀏覽器
wget
wget
sudo dpkg -i google-chrome*;
sudo
apt-get -f install
sudo
apt-get
install google-chrome-stable
檢視作業系統的版本:
getconf long_bit
在目錄下的所有檔案中查詢字串,並顯示檔案:
find.|
xargs
grep -ri "helloworld" -l
bash: wget: command not found 解決方法
yum -y install
wget
開啟/關閉埠
/sbin/iptables -i input -p tcp --dport 1883 -j accept
/sbin/iptables -a output -p tcp --sport 81 -j drop
service network restart
修改目錄下所有檔案的許可權:
chmod -r 700 ./a/b
php更新之後,快取沒有更新
opcache.revalidate_freq # php.ini 檔案中的值修改為0
目錄下批量替換檔案中的字串:
sed -i 's/hello/world/g' ./*.html # 目錄下html字尾的檔案中 hello 替換成world
mysql 新建使用者並且賦予遠端連線許可權
grant all privileges on *.* to '自定義使用者名稱'@'%' identified by '自定義密碼' with grant option;
flush privileges;
檢視 程序 pid ,殺死程序
ps -ef |
grep name
sudo
kill -9 pid
檢視埠執行的程序:
netstat -tunlp|
grep 埠號
centos7 安裝桌面:
cannot find a valid baseurl for repo: base/7/x86_6mqtt 安裝
檢視版本
uname -a
cat /etc/redhat-release
安裝寶塔
安裝 python 3.8
ubuntu 固定ip
nvidia ubuntu 安裝 opencv
pip換源
pip 公升級 sudo python3 -m pip install -u pip
安裝 pip3 install opencv-python
linux命令記錄
檔案拷貝 cp ri a b,將a資料夾下的所有檔案拷貝到b資料夾下 cp r 原始檔 目的檔案,引數r是指連同原始檔中的子目錄一起拷貝 使用者 useradd,新增使用者 passwd 使用者名稱,輸入密碼 su,切換使用者,切換到root sudo,普通使用者可以執行root才能執行的命令,環境...
linux命令記錄
1.多檔案內容的查詢替換 sed i s oldstring newstring g grep oldstring rl dir 2.tcpdump 網路抓包 tcpdump xns0 i any udp tcp port i 指定網絡卡 upd tcp 協議 port 指定埠 其他具體選型參考 m...
linux命令記錄
1 設定histtimeformat d m y t 然後history命令的輸出結果帶有時間戳2 查詢該目錄下有含有關鍵字的檔案 find type f xargs grep keyword 3 一行dd命令指令碼就可以實現測試磁碟的讀寫速度 dd if dev zero of tmp outpu...