728x90

Linux 19

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

Ubuntu 날짜/시간 변경하기(timedatectl, dpkg-reconfigure)

시간대 변경하기 방법 1. dpkg-reconfigure 사용 root@server01:~# sudo dpkg-reconfigure tzdata Current default time zone: 'Asia/Seoul' Local time is now: 2023. 07. 19. (수) 23:16:19 KST. Universal Time is now: Wed Jul 19 14:16:19 UTC 2023. 방법2. timedatectl 사용 # 원하는 시간대 찾기 root@server01:~# timedatectl list-timezones | grep Seoul Asia/Seoul # 시간대 변경하기 root@server01:~# sudo timedatectl set-timezone Asia/Seoul # 변..

Linux 2023.07.19

[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] tee로 파일 저장하기

리다이렉션 (redirection) stdin: 표준입력, 0 stdout: 표준출력, 1 stderr: 표준에러, 2 >: 출력 리다이렉션 (stdout 만) >: 출력 리다이렉션 (append) 2>: 표준에러 리다이렉션 (stderr 만) 2>&1: 표준에러 발생하면 표준출력장치로 리다이렉트 (&n: file descriptor n이 가리키는 대상에 대한 참조) 1. redirect 방식으로 파일을 저장하기 : ls -al > file.log "ls -al" 실행한 로그가 보이지 않는다. sudo를 사용해도 shell에서 redirect하면 일반사용자로 변경되어 root 권한으로 파일 생성/추가가 동작하지 않는 경우가 있다. 2. tee 명령어로 파일 저장하기 : ls -al | tee file.l..

Linux 2022.12.02

[linux] iperf3: error - unable to connect to server: Connection timed out

[환경설정] https://www.mankier.com/1/iperf3 iperf3 server : 192.168.50.203 으로 ip 할당 iperf3 client : 192.168.50.2 로 ip 할당 root@server~# iperf3 -s --bind 192.168.50.203 & // iperf3 server 실행 [1] 2046140 root@server:~# ----------------------------------------------------------- Server listening on 5201 ----------------------------------------------------------- [문제] root@client:~# iperf3 -c 192.168.50...

Linux 2022.12.01

/dev/ttyUSB* 에러 별 해결 방법

도커 컨테이너에서 FATAL: cannot open /dev/ttyUSB0: No such device 로그 출력되는데, Host에서 정상 접속되는 경우 ==> docker stop 컨테이너 / docker start 컨테이너 FATAL: cannot lock /dev/ttyUSB0: Resource temporarily unavailable ==> 다른 곳에서 해당 시리얼 포트 열고 있음 stty: /dev/tty_n102: Inappropriate ioctl for device ==> ls -al /dev 했을 때, /dev/ttty_n102가 direcotry로 설정되어있음. ==> rm -rf /dev/tty_n102 ==> sudo udevadm control --reload 한 뒤, 케이블 재..

Linux 2022.11.17
728x90