본문 바로가기

모든 이야기

(26)
[Pi] 재구동 시, mac 어드레스 변경 금지 /etc/NetworkManager/NetworkManager.conf [device] wifi.scan-rand-mac-address = no
[Excel] cursor가 위한 row/col 전체 하이라이트 Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Cells.Count > 1 Then Exit Sub Application.ScreenUpdating = False ' Clear the color of all the cells Cells.Interior.ColorIndex = 0 With Target ' Highlight the entire row and column that contain the active cell .EntireRow.Interior.ColorIndex = 8 .EntireColumn.Interior.ColorIndex = 8 End With Application.ScreenUpdating = True En..
[Raspberry Pi] 라즈베리파이 고정 IP 할당 $ ifconfig
[Pi] disable chromium update dialog on raspbian buster 출처 : arcanesciencelab.wordpress.com/2020/04/11/disable-chromium-update-dialog-on-raspbian-buster/ disable chromium update dialog on raspbian buster Update 30 August 2020 It would appear this post is pulling a lot of traffic. As is typical in this type of documentation, the efficacy of this post has been overcome by events, specifically the ful… arcanesciencelab.wordpress.com Update 30 August 202..
[CentOS] PPTP - VPN 연결 오류 시 [root@localhost ~]# modprobe ip_nat_pptp [root@localhost ~]# modprobe ip_conntrack_pptp 위에 모듈이 활성화 되어있지 않으면 클라이언트에서는 619 오류가 발생되고 서버쪽에는 아래와 같은 메세지가 나타난다. Apr 23 08:57:30 localhost pptpd[10934]: CTRL: Starting call (launching pppd, opening GRE) Apr 23 08:57:30 localhost pppd[10935]: Plugin /usr/lib/pptpd/pptpd-logwtmp.so loaded. Apr 23 08:57:30 localhost pppd[10935]: pptpd-logwtmp: $Version$ Apr ..
[CentOS7] 부팅 시, 모드 전환 [ 현재 모드 ] systemctl get-default [ 콘솔모드 ] systemctl set-default multi-user.target [ 그래픽 모드 ] systemctl set-default graphical.target 출처: https://holjjack.tistory.com/10 [정리하며 배우다.]
[Tomcat] Tomcat에서 jsessionid가 URL에 붙는것 비활성화 하기 Tomcat 6.0.30 이상에서 사용할 수 있는 방법으로 server.xml 파일의 설정에 disableURLRewriting 속성에 true를 사용하는 방법입니다. Tomcat 7 과 Tomcat 8에서 Servlet 3.0 스펙 이상을 사용한다면 각 웹애플리케이션의 web.xml 파일의 태그에서 비활성화 할 수 있습니다. COOKIE 를 사용합니다. 600 COOKIE 출처: https://offbyone.tistory.com/339 [쉬고 싶은 개발자]
[Linux] selinux 권한 설정 sudo chcon -R -t httpd_sys_rw_content_t logs