반응형 Development Solutions142 [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) 리눅스의 OpenSSH 설정 파일에서 포트 번호를 수정 또는 추가하면 된다. (You can edit or add the port number in the Linux OpenSSH configuration file.) sudo vim /etc/ssh/sshd_config #Port 22 -> Port 22 -> Port 2022 service sshd restart 또는 /etc/rc.d/init.d/sshd restart 2022. 9. 3. [Git] push/pull automatic login (push/pull 자동 로그인) [Git] push/pull automatic login (push/pull 자동 로그인) - 계정 설정 (Account Settings) name 설정 git config --global user.name "{name}" 프로젝트 마다 다른 name 사용하려면 --global 옵션 제거 email 설정 git config --global user.email {email} 프로젝트 마다 다른 email 사용하려면 --global 옵션 제거 설정 확인 git config --list - Git 계정 정보 저장 (Storing Git Account Information) Credential 정보 저장1 git config credential.helper store 현재 레포지터리에 대해서만 영구 적용 Cre.. 2022. 9. 3. [Flutter] apk build command (debug, release available) (apk 빌드 명령(debug, release 가능)) [Flutter] apk build command (debug, release available) apk 빌드 명령(debug, release 가능) - build for debug flutter build apk --debug --target-platform=android-arm64 - build for release flutter build apk --release --target-platform=android-arm64 2022. 8. 31. [Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법) [Linux] How to fix NFS mount Permission denied (NFS mount Permission denied 해결 방법) 1. vi /etc/exports 마운트할 디렉토리 경로, 설정이 올바르게 되어있는지 확인 ex) /home/nfs *(rw, root_squash) (root_squash: 클라이언트도 서버의 마운트 디렉토리 내에서 root 권한 가짐) (Check if the directory path to mount and settings are correct ex) /home/nfs *(rw, root_squash) (root_squash: the client also has root privileges within the server's mount directory.. 2022. 8. 30. 이전 1 ··· 18 19 20 21 22 23 24 ··· 36 다음 반응형