Develop/Linux 썸네일형 리스트형 특정 파일 검색해서 해당 파일내에 특정 문구 추가하기 기본적으로 파일내에 특정 문구를 추가하려면 아래 명령을 사용하면된다. ]$ sed -i '[넣어줄 줄위치]s/^/[추가해줄 문장]\n/' [추가하려는 파일]]$ sed -i '2s/^/SET autocommit=0;\n\n/' ./test.sql \; # 여러 개를 추가하려면(5개가 추가됨)]$ sed -i '1,5s/^/-- test line\n\n/' ./test.sql \; 덤프뜬 데이터 양이 많아서 split으로 나눠서 일괄로 등록해줄 필요가 있었음.그래서 split으로 나눈후 해당 내용에 SET autocommit=0을 모든 파일에 추가해줘야함. ]$ split -l 500 all_log.sql ./log_split/log-]$ find ./ -name 'log-*' -exec sed -i '1.. 더보기 Install NVIDIA Graphic driver on fedora linux At first check your driver and graphic card. ]$ nvidia-installer -v | grep version]$ uname -a]$ lspci |grep -E "VGA|3D" Go to https://www.nvidia.com/Download/Find.aspx?lang=en-us and Download DriverGo Download Path and add executable permission on the file]$ chmod +x ./NVIDIA-Linux-*.run And then update your packages and install you needed]$ su -]$ dnf update]$ reboot]$ dnf install kernel-devel .. 더보기 Generate public key for Open ssl get public key start with "ssh-rsa ~~~~" But if you need to get public key start like "-----BEGIN PUBLIC KEY-----~~~~", need to genertate another public key. ]$ openssl rsa -in {private_key_file} -pubout you can get public key start with "-----BEGIN PUBLIC KEY-----~~~~" 더보기 이전 1 2 3 4 5 6 ··· 18 다음