我的常用命令:
後台命令:
nohup python crontab_jop.py &
> ./print.log &
文字命令:wc -l file.txt # 輸出檔案行數
du -sk train.txt # 檢視檔案大小
head -100 a.txt >test.txt # 檔案的前面100行
tail -100 a.txt >test.txt # 檔案的後面100行
tar 命令:tar -czvf 名字.tar.gz frag/* # 壓縮命令
tar -zxvf 名字.tar.gz # 解壓命令
tar zcf - tmp/* |
split -d -b 3800m - tmp.tar.gz. # 每個卷3800m
# zip ------------------------------
# 解壓分卷壓縮包,img.zip.001, img.zip.002, img.zip.003...
cat img.zip.* > img.zip # 先合併,在解壓
unzip img.zip # 解壓
檢視程序:ps -ef |
grep al.sh
nvidia-smi 命令:nvidia-smi # 命令, 可以顯示nvidia顯示卡基本資訊和相關程序占用視訊記憶體情況
watch -n 5 nvidia-smi # 每隔5秒更新一次
nvidia-smi -l # 命令, 可以列出所有nvidia顯示卡相關型號資訊
scp命令使用:# 上傳本地的test資料夾
scp -r /home/admin/test/ [email protected]:/root/
– 2、上傳單個檔案:
# 上傳本地test.txt 檔案
scp /home/test/test.txt [email protected]:/root/
說明:其實上傳檔案和資料夾區別就在引數-r, 和 cp,rm 的使用類似, 資料夾多了個 -r
scp -r [email protected]:/root/ /home/admin/desktop/new/
hdfs 常用命令:
建立檔案 hdfs dfs -mkdir output/*
刪除檔案 hdfs dfs -
rm output/*
刪除資料夾 hdfs dfs -
rm-r output
檢視檔案 hdfs dfs -
ls output
抓取內容 hdfs dfs -
cat/user/output/part-r-00000
上傳資料 hdfs dfs -put out.txt input/
避開**機制直接刪除 hadoop fs -
rm-skiptrash /user/output/part-r-00000
避開**機制直接刪除(檔案) hadoop fs -
rm-r -f -skiptrash /file_path
檢視檔案大小 hadoop fs -du -s -h /file_path (刪除 -h, 則按 byte 顯示)
修改目錄許可權 hadoop fs -chmod -r 777 hdfs_path/
集群遷移-資料遷移 hadoop distcp src/path1/ src_new/
Linux常用命令之Linux常用命令實戰知識點
在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...
LINUX常用命令
一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...
linux 常用命令
ssh 連線 eg.ssh l mike www.mydomain.com or 192.168.0.1 scp 複製 本地 遠端 scp localfile username tohost newfile 遠端 本地 scp username tohost remotefile local 把tx...