728x90

Linux 19

[linux] Samba 폴더 내부/외부망에서 mount 하기

1. samba 폴더 설정 # vi /etc/samba/smb.conf 에서 추가할 samba 폴더 설정 [shared] ## samba 폴더 이름 comment = Shared directories path = ${공유할 경로} browseable = yes guest ok = yes public = yes read only = yes create mask = 644 directory mask = 755 writeable = yes preserve case = yes short preserve case = yes 2. 내부망에서 samba 폴더 mount 하기 # username, password 사용 mount -t cifs -o vers=3.0 -o username=${username},passwo..

Linux 2022.10.20

[linux] cifs_mount failed w/return code

mount -t cifs 에서 error 발생하면 확인 가능한 error code의 숫자는 아래 코드의 합 ex) 111 = 64+32+8+4+2+1 CIFS VFS: Error connecting to socket. Aborting operation. CIFS VFS: cifs_mount failed w/return code = -111 RETURN CODES mount has the following return codes (the bits can be ORed): 0 success 1 incorrect invocation or permissions 2 system error (out of memory, cannot fork, no more loop devices) 4 internal mount bu..

Linux 2022.10.18

[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