-
Add kernel for Jupyter Notebook
pip3 install ipykernel python -m ipykernel install --user --name [virtualEnv] --display-name "[displayKenrelName]" Read More
-
FTP error of 550 Permission denied error
Situation When I send DataSet file on windows to Ubuntu-server using FTP service. Error log ... 200 PORT command successful. Consider using PASV. 550 Permission denied. Solution[1] In ubuntu, edit the vsftpd.conf sudo vi /etc/vsftpd.conf ... write_enable=YES ... :wq sudo service vsftpd restart Reference 1. Fixing the VSFTPD 550 Pe... Read More
-
Docker cp command
Move host file to container docker cp [host file location] [container name]:[container location] Move container file to host docker cp [container name]:[container location] [host location] Read More
-
Ubuntu 7z format extract
sudo apt install p7zip p7zip-full 7za <command> [<switches>...] <archive_name> [<file_names>...] [<@listfiles...>] Example Extract on current directory 7zr e “filename” Extract on designated directory 7zr x “filename” “path” Read More
-
Ubuntu mirror server change to kakao
주의 저장소에 따라 설치가 되고 안되는게 존재함. 속도 차이가 매우크지 않으니 굳이 저장소 변경하지 않는걸 추천함 Setting[1] sudo vi /etc/apt/sources.list # Change every context to next line # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of the distribution. deb http://mirror.kakao.com/ubuntu focal main restricted # deb-src http://mirror.kakao.c... Read More
-
Ubuntu apt-get dist-upgrade
apt-get update Package list update, not upgrade Package. apt-get upgrade Package list upgrade. not check dependency. apt-get dist-upgrade[1] Upgrade the package list to suit the dependency. Reference 1. sudo apt-get update upgrade dist-upgrade 차이, wonjinho81, Write:2018.10.17, attach:2022.07.18 방문, https://blog.naver.com/wonjinho81/2213... Read More
-
CuDNN 설치 후 pytorch GPU사용 안됨
사건의 발생 어제 CuDNN 정상 설치 확인 후 docker container의 pytorch에서 gpu사용이 안되는 것을 확인했다. device = "cuda" if torch.cuda.is_available() else "cpu" print(f"Using {device} device") # Using cpu device 미쳐버리겠지만 빨리 해결해야한다. 문제 파악 CuDNN 설치 후 gpu사용이 안되는 것이라 추측을 가지고 있기에 다음을 확인해본다. Nvidia driver 정상 확인 CUDA ToolKit 정상 확인 CuDNN 정상 확인 Docker 문제 확인 ... Read More