본문 바로가기
반응형

ubuntu6

How to grant USB device permission to general user on Ubuntu (Linux 우분투에서 일반 유저에게 usb디바이스 권한 부여하는 방법) How to grant USB device permission to general user (일반 유저에게 usb디바이스 권한 부여하는 방법) 리눅스에서 애플리케이션을 개발하다보면, usb디바이스와의 연결이 필요한 기능을 개발할 때가 있다. 이 때, usb 디바이스에 접근이 되지 않는 문제가 발생하곤 한다. libusb 기반의 라이브러리를 사용할 경우, LIBUSB_ACCESS_ERROR가 발생할 것이다. 해결책은 아래 명령어를 순서대로 입력하는 것이다. 터미널을 열고 아래 명령어를 하나씩 입력해보자. [English] (When developing applications in Linux, there are times when developing functions that require connectio.. 2022. 10. 12.
Requesting a certificate from an authority in Ubuntu environment (우분투 환경에서 인증서를 기관에 인증 요청하기) Requesting a certificate from an authority in Ubuntu environment (우분투 환경에서 인증서를 기관에 인증 요청하기) 인증 기관으로부터 받았던 인증 시간이 지났거나 다른 이유로 인증이 풀릴 때가 있다. 이 때문에 ssl error 등의 에러와 부딪히곤 한다. 아래 명령어 한 줄이면 인증서 재인증이 가능하다. (There are times when the certification time from the certification body has expired or the certification is released for other reasons. Because of this, I often run into errors such as ssl errors. .. 2022. 10. 5.
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.
[Solved][Linux] source Command Description (source 명령 설명) [Solved][Linux] source Command Description source 명령 설명 source는 쉘 스크립트 명령이 childe 프로세스가 아닌, 현재 실행중인 프로세스에서 실행되도록 하는 명령어! 덕분에 스크립트가 끝났을때 바로 명령어를 적용시킬 수 있음 ex) source ./bashrc (source is a command that allows shell script commands to be executed in a currently running process, not in a child process! This allows you to apply the command as soon as the script is finished ex) source ./bashrc) 2022. 8. 24.
반응형