以下是關於linux網路開發的常用命令
個人平時使用
二、git
3.linux 命令
總結
iostat -xkt -d 1
tcpdump -r /home/bond0.pcap
tcpdump -r /home/bond0.pcap -ne -vvv
tcpdump -i tap11 /home/bond0.pcap -ne -vvv 注意 tap11為核心態裝置
使用命令:
lspci |
grep eth
ll -a /sys/class/net
對比兩條命令結果,可知曉已被占用的網絡卡,從而對其進行解綁操作。
#1. 完成本地**修改
#2.修改注釋檔案
vim .git/comment.txt
#3. 修改完成後執行完成本地的commit
git commit -a -f .git/comment.txt
#4 如果是push**到乙個分支上,請指定分支進行提交
git push origin head:refs/for/分支名
git add ./
git commit -a --amend
git push origin head:refs/for/分支名
git pull --rebase
[如果有衝突]
git status
git add *
git rebase --continue
git status
git add *
git commit --amend
git push origin head:refs/for/分支名
打包命令
tar -cvf /home/idl.tar /home/idl
tar czvf - `
find
. -print`
> /root/test
解包
tar -zxvf ×××.tar.gz
scp
scp [email protected]:/etc/yum.repos.d/server.repo /etc/yum.repos.d/
windows 裡面的換行換成linux的
find
. -type f -exec dos2unix \;
使用objdump檢視.so函式列表
objdump -tt libevsutils_vhost_packet-probe.so |
grep parse_param_design_len_cb
多核編譯
make -j
linux 網路命令
netstat tun 列出的是所有連線 netstat tun grep 80 列出的是 所有連線 檢視httpd程序數 即prefork模式下apache能夠處理的併發請求數 linux命令 檢視apache的併發請求數及其tcp連線狀態 linux命令 netstat n awk tcp en...
Linux網路命令
網路環境檢視命令 1.ifconfig 檢視網絡卡資訊 2.ifdown 網絡卡裝置名 禁用該網絡卡裝置 3.ifup 網絡卡裝置名 啟用該網絡卡裝置 4.查詢網路狀態 netstat 選項 選項 t 列出tcp協議埠 u 列出udp協議埠 n 不使用網域名稱與服務名,而使用ip位址和埠號 l 僅列...
Linux網路命令
linux網路命令 last和lastlog命令 1 網路命令 last 1.1 命令說明 指令名稱 last 指令所在路徑 usr bin last 執行許可權 所有使用者 語法 last 功能描述 列出目前與過去登入系統的使用者資訊,只要有人登入,就會被記錄,包括多次登入的資訊,也會被統計記錄下...