본문 바로가기
반응형

Solved16

How to set Mac OS version when building library (라이브러리 빌드할 때 Mac OS버전 설정 방법) How to set Mac OS version when building library (라이브러리 빌드할 때 Mac OS버전 설정 방법) 맥에서 라이브러리를 빌드할 때, 특정 타겟 버전으로 빌드해야할 때가 있다. 예를 들어, 11.2 버전으로 라이브러리를 빌드해야하는데 내가 사용하는 맥의 OS버전이 12.x일 수 가 있다. 이럴 때는 아래 명령어를 사용한 뒤에 라이브러리를 빌드하면 된다. (When building libraries on a Mac, there are times when you need to build to a specific target version. For example, I need to build the library with version 11.2, but the OS vers.. 2022. 10. 4.
How to Reset Mac OS X Permissions (Mac OS X 권한 초기화 방법) How to Reset Mac OS X Permissions Mac OS X 권한 초기화 방법 Mac OS 에서 애플리케이션을 개발하다보면 개발하고 있는 애플리케이션의 권한 초기화가 필요할 때가 있다. 이 때 tccutil 명령어를 사용하면 된다. (When developing applications in Mac OS, there are times when it is necessary to initialize the permissions of the application being developed. In this case, you can use the tccutil command.) - 특정 서비스의 권한 설정 초기화 (- Initialize permission settings for specific .. 2022. 10. 4.
[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.
[ubuntu][bash] How to do when tab autocomplete expansion does not work (tab 자동완성 확장이 안될 때 방법) [Solved][ubuntu][bash]How to do when tab autocomplete expansion does not work(tab 자동완성 확장이 안될 때 방법)  step 1. sudo apt-get install bash-completion step 2. sudo vi /root/.bashrc  step 3. 아래 코드 부분의 주석을 제거 (Uncomment the below code part) if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion step 4. reboot 2022. 8. 30.
반응형