전체 글(80)
-
특정 디렉터리 umask 설정하기
setfacl -d -R -m m::rwx file/ [참고] s --> 'x' is enabled S --> 'x' is disabled. https://itectec.com/ubuntu/ubuntu-how-to-set-umask-for-a-specific-folder/ Ubuntu – How to set umask for a specific folder – iTecTec For some obvious reasons I need to set umask value for one specific folder. How can one do that? Thanks beforehand! UPDATE 1 The reason I need to use umask for a specific folder is follow..
2021.11.14 -
lxd
https://techviewleo.com/run-linux-containers-with-lxc-lxd-on-ubuntu/ 컨테이너 저장 위치 /var/snap/lxd/common/lxd/storage-pools/default/containers/
2021.11.06 -
포트 충돌 해결
https://dololak.tistory.com/152 [Tomcat] 톰캣 시작시 포트 충돌 에러 톰캣 시작시 포트 충돌 에러 톰캣을 시작할 때 다음과 같이 포트 에러가 발생할 수 있습니다. 이유는 정말 단순하게 톰캣이 사용하는 8080포트를 이미 다른 프로세스에서 점유하고 있기 때문입 dololak.tistory.com
2021.11.05 -
dnsdict6
tar -zxvf thc-ipv6-2.7.tar.gz cd thc-ipv6-2.7/ apt-get install -y libpcap-dev libssl-dev make cp dnsdict6 /usr/bin/ dnsdict6
2021.11.05 -
sessionStorage에 객체 저장 방법
https://sanghye.tistory.com/14 [Javascript] sessionStorage 에 객체 저장하고 꺼내기 문제점 sessionStorage 는 기본적으로 key, value 형태의 문자열 값을 저장할 수 있도록 한다. 따라서 객체의 형태를 저장할 경우 String 형태로 "[Object, Object]" 가 저장되기 때문에 getItem 하여 사용할 수.. sanghye.tistory.com
2021.11.01 -
특정 범위의 중복 구간 검출
https://stackoverflow.com/questions/3269434/whats-the-most-efficient-way-to-test-two-integer-ranges-for-overlap What's the most efficient way to test two integer ranges for overlap? Given two inclusive integer ranges [x1:x2] and [y1:y2], where x1 ≤ x2 and y1 ≤ y2, what is the most efficient way to test whether there is any overlap of the two ranges? A simple implementation is as stackoverflow.com
2021.10.30