본문 바로가기

전체 글

(720)
개발/linux
리눅스 방화벽 확인 iptables --version systemctl status firewalld centos8 iptable 설치 yum install iptables-services -y 활성화 systemctl enable iptables 2023.08.21
windows
윈도우10 내 PC 폴더 3D 개체 삭제 방법 [ 레지스트리 위치 ] 컴퓨터 -> HKEY_LOCAL_MACHINE -> SOFTWARE -> MICROSOFT -> WINDOWS -> CURRENTVERSION -> EXPLORER -> MYCOMPUTER -> NAME SPACE 1) 다운로드 {088e3905-0323-4b02-9826-5d99428e115f} 2) 3D 개체 {0DB7E03F-FC29-4DC6-9020-FF41B59E513A} 3) 사진 {24ad3ad4-a569-4530-98e1-ab02f9417aa8} 4) 음악 {3dfdf296-dbec-4fb4-81d1-6a3438bcf4de} 5) 바탕화면 {B4BFCC3A-DB2C-424C-B029-7FE99A87C641} 6) 문서 {d3162b92-9365-467a-956b-92.. 2020.08.22
개발/linux
vi 탭 사이즈 변경 vi 에디터에서 명령모드에서 set ts=4 즉, :set ts=4라고 해주면 tab size가 모두 바뀌게 된다. 하지만, 이것은 현재 수정중인 파일에만 tab size 설정이 저장된다. 항상 tab size가 이렇게 유지되도록 하려면 사용자 홈 디렉토리에 다음 내용의 .exrc 파일을 만들면 된다. [root@localhost ~]$ cat > .exrc set ts=4 set ai [ctrl]+[d]로 빠져나옴 [root@localhost ~]$ source .exrc 해주거나, terminal을 닫고 다시 실행시키면 바뀐 tab size 설정이 적용된다. 2019.11.12
개발/linux
sftp 상위폴더 접근 금지 설정 퍼미션을 711로 변경 chmod 711 / chmod 711 /bin chmod 711 /boot chmod 711 /dev chmod 711 /etc chmod 711 /home chmod 711 /mnt chmod 711 /opt chmod 711 /proc chmod 711 /usr chmod 711 /usr/local chmod 711 /var 2019.10.17
개발/shell
bash 주석 bash 주석 기호 # 추가 vi 문자열 치환을 이용해서 # 추가 10~20 줄까지 주석:10, 20s/^/#/g 10~20 줄까지 주석 지우기:10, 20s/^#//g here document 사용 2019.01.09
news/IT
How Apps on Android Share Data with Facebook - Report Saturday, December 29, 2018A video presentation of the finding of this report can be found here, as presented at 35th Chaos Computer Congress (35C3) Previous research has shown how 42.55 percent of free apps on the Google Play store could share data with Facebook, making Facebook the second most prevalent third-party tracker after Google’s parent company Alphabet. In this report, Privacy Interna.. 2019.01.05