Linux 11

[Linux][터미널] 파일 ,디렉토리 권한 설정.

파일, 디렉토리 권한 설정. 하위 모든 파일 권한 설정. find /path/to/location -type f -print0|xargs -0 chmod 644 하위 모든 디렉토리 권한 설정. find /path/to/location -type d -print0 |xargs -0 chmod 755 하위 모든 파일&디렉토리 권한설정. chmod -R 644 /path/to/location winaero.com/run-chmod-separately-for-files-and-directories/ Run Chmod separately for files and directories If you are a Linux user, you have probably heard about the console app ch..

Linux 2020.10.05

[Linux] 리눅스 누가 어떤 행위를 했는지 사용자 추적

로그인한 정보 확인 ( 계정명, ip주소, login시간, logout시간, 얼마동안 접속했는지에 대한 시간 )$last history를 사용하여 명령어를 수행한 시간을 표시하려면 아래와 같은 라인 추가.$vi /etc/profile# Add timestamp to .bash_history HISTTIMEFORMAT="%Y-%m-%d_%H:%M:%S " export HISTTIMEFORMAT 어떠한 명령어를 사용했는지 확인.$history 결론last로 로그인한 유저의 사간정보를 확인하고, history를 통해 실행한 명령어를 확인하면 누가 어떠한 행위를 했는지 찾는 것이 가능하다.

Linux 2019.03.20

[Linux] 리눅스 삼바 samba

삼바설치$ sudo apt install samba 계정 추가 및 패스워드 설정.$sudo smbpasswd -a [계정명]$sudo smbpasswd -a gildong.hong smb.conf 파일 편집$sudo vi /etc/samba/smb.conf# 파일을 열고 아래쪽으로 이동하여 [profiles] 밑에 다음과 같이 작성 [ailab] # 네트워크에 보여질 공유 이름 comment = ailab share directory # 디렉토리 설명 path = /home/ailab/samba # 공유 디렉토리 절대 경로 valid users = ailab # 접속을 허용할 계정 writeable = yes create mask = 0664 directory mask = 0775 samba servic..

Linux 2019.03.12