728x90

ubuntu 6

Ubuntu NFS Mount

NFS Server 1. 패키지 설치 $ sudo apt update $ sudo apt install nfs-kernel-server 2. 공유할 디렉토리 설정 $ sudo mkdir -p /mnt/nfs_server $ sudo chown -R nobody:nogroup /mnt/nfs_server 3. 공유할 디렉토리 권한 설정/배포 $ sudo vi /etc/exports /mnt/nfs_server *(rw,sync,no_root_squash) $ sudo exportfs -a $ sudo systemctl restart nfs-kernel-server.service * default 포트는 2049 NFS Client 1. 패키지 설치 $ sudo apt update $ sudo apt ins..

Linux 2024.04.03

[Linux] 수동으로 ADB/Fastboot 버전 업그레이드 하기

도커 컨테이너에서 android-tools-adb, android-tools-fastboot 패키지를 설치했으나 최신 버전으로 설치가 되지 않는다. # OS : Ubuntu 22.04 # fastboot : 28.0.2 root@9b310f1afe95:/home/jenkins# fastboot --version fastboot version 28.0.2-debian root@9b310f1afe95:/usr/lib/android-sdk/platform-tools# cat source.properties Pkg.UserSrc=false Pkg.Revision=28.0.2 Debian=true 다음은 컨테이너에 수동으로 ADB/Fastboot 버전을 업그레이드 하는 방법이다. 참고 : https://lynxb..

Linux 2023.04.20

[linux] 일반 사용자에게 sudo, root 권한 부여

1. sudo 권한 부여 만약 일반 사용자가 sudo 명령어 사용했을 때, "${계정명} is not in the sudoers file. This incident will be reported." 에러가 발생하는 경우 sudo 그룹에 해당 계정을 추가하면 sudo 명령어를 사용할 수 있다. 방법 1) sudo 그룹에 계정 추가 usermod -aG sudo 계정명 방법 2) # vi /etc/sudoers 파일에 계정 추가 (.....) # User privilege specification root ALL=(ALL:ALL) ALL 계정명 ALL=(ALL:ALL) ALL # 추가하기 확인) cat /etc/group의 sudo 그룹에 추가한 계정 확인 sudo:x:27:user1,user2 2. roo..

Linux 2022.10.17
728x90