最近想讓師兄把他服務(wù)器上的數(shù)據(jù)集拷到我服務(wù)器 用了這兩個(gè)命令
scp :secure copy
ex: scp local_file username@ip:remote_folder
如果復(fù)制目錄下的所有文件:scp local_file username@ip:remote_folder
rsync:remote sync
參數(shù):-a ,–archive 歸檔模式,表示以遞歸方式傳輸文件,并保持所有文件屬性
-v, --verbose 詳細(xì)模式輸出
ex:rsync -av local_file username@ip:remote_folder
23. 使用“通過(guò)復(fù)制新建層(ctrl+j)”或“通過(guò)剪切新建層(ctrl+j)”命令可以在一步之間完成拷貝到粘貼和剪切到粘貼的工作。23. 使用“通過(guò)復(fù)制新建層(ctrl j)”或“通過(guò)剪切新建層(ctrl j)”命令可以在一步之間完成拷貝到粘貼和剪切到粘貼的工作。這時(shí)候原來(lái)的地圖包就有用了,打開(kāi)他,復(fù)制所有地圖文件,粘貼在新的地圖文件包中l(wèi)inux命令,跳過(guò)所有重復(fù)文件的粘貼,就可以補(bǔ)全所有的缺失地圖了,這一步?jīng)]做不要上游戲哦linux命令,不然卡死在某處也不一定。
(1) python
python --version / python -V
(2)torch
import torch
print(torch.__version __)
(3) cuda
cat /usr/local/cuda/version.txt
(4) cudnn
sudo cp cuda/include/cudnn.h /usr/local/cuda/include/。6、sudo chmod a+r /usr/local/cuda/include/cudnn.h /usr/local/cuda/lib64/libcudnn* 。3、sudo cp cudnn.h /usr/local/cuda/include/ 復(fù)制頭文件 。
(1)which python
(2)python -c “import sys;print(sys.executable)”
(3)python -c “import os;print(os.sys.executable)”
更新conda: conda update -n base conda
創(chuàng)建一個(gè)環(huán)境: conda creat --name pytracking python==3.7
激活某個(gè)程序的環(huán)境: conda activate pytracking(你代碼的名字)
停止一個(gè)激活的環(huán)境: conda deactivate
更換源:
(1)直接vim ~/.condarc 手動(dòng)添加鏡像路徑
(2)conda config --add channels https://mirrors.tuna.tsinghua.edu/cn/anaconda/pkgs/free
conda config --set show_channel_urls yes
如果要移除的話:conda config --remove channels ‘’
參考