본문 바로가기
반응형

우분투6

How to fix when redirect (>) doesn't work because you don't have permission in Ubuntu (우분투에서 권한이 없다는 이유로 리다이렉션(>)이 안될 때 해결 방법) How to fix when redirect (>) doesn't work because you don't have permission in Ubuntu (우분투에서 권한이 없다는 이유로 리다이렉션(>)이 안될 때 해결 방법) 아래처럼 명령어를 내리면 /etc/udev/rules.d 내의 파일에 리다이렉션이 실패한다. 이유는 폴더가 root권한의 폴더이므로 일반 유저에겐 권한이 없기 때문이다. [English](If you issue the command as below, redirection to the file in /etc/udev/rules.d fails. The reason is that the folder is a folder with root privileges, so normal users.. 2022. 10. 13.
How to change crt certificate format to pem format in linux ubuntu (리눅스 우분투에서 crt인증서 포맷을 pem 포맷으로 바꾸는 방법) How to change crt certificate format to pem format in linux ubuntu (리눅스 우분투에서 crt인증서 포맷을 pem 포맷으로 바꾸는 방법) 인증서 인증을 위해 crt파일을 pem형식의 인증서로 변환해야할 때가 있다. 이럴 땐 아래 명령어를 사용하면 간단히 포맷을 변환할 수 있다. (There are times when you need to convert a crt file into a pem-format certificate for certificate authentication. In this case, you can easily convert the format by using the command below.) $ sudo openssl x509 -.. 2022. 10. 5.
How to register root ca in ubuntu (우분투에서 root ca 인증서 등록하는 방법) How to register root ca in ubuntu (우분투에서 root ca 인증서 등록하는 방법) 우분투를 회사와 같은 조직에서 개발용으로 사용하다보면 인증서와 관련된 에러와 맞딱드리기 일수다. 이럴 때는 회사에서 인정하는 루트 인증서를 우분투 시스템에 등록해야한다. 물론 루트 인증서는 각 회사의 보안 및 인프라 관련 팀에 문의해서 얻어야겠다. (If you use Ubuntu for development in an organization such as a company, you may encounter errors related to certificates. In this case, you need to register a root certificate recognized by the co.. 2022. 10. 5.
[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.
반응형