scp /local/path/to/file user@remote_server:/remote/path/to/destination SCP(Secure Copy)는 SFTP(SSH File Transfer Protocol)을 사용하여 SSH 연결을 통해 파일을 안전하게 전송할 수 있는 명령어입니다. 리눅스 서버로 파일 복사하는 SCP 명령은 다음과 같습니다: ```bash scp /local/path/to/file user@remote_server:/remote/path/to/destination ``` 위 명령어는 `/local/path/to/file`을 원하는 로컬 파일, `user@remote_server`은 리눅스 서버의 사용자 이름과 호스트명 연결된 형태, `/remote/path/to/destina..