전체 글(215)
-
Postgresql 관리자 로그인 설정
이 글을 쓰는 시점에서 postgresql 최신 버전 패키지는 버전이 15 이다. 설치한 패키지는 다음과 같다. ~$ dpkg -l | grep postgres ii postgresql 15+250.pgdg120+1 all object-relational SQL database (supported version) ii postgresql-15 15.3-1.pgdg120+1 amd64 The World Most Advanced Open Source Relational Database ii postgresql-client-15 15.3-1.pgdg120+1 amd64 front-end programs for PostgreSQL 15 ii postgresql-client-common 250.pgdg120+1 ..
2023.07.09 -
[윈도] Git Bash - git status 한글깨짐 방지
git status git config --global core.quotepath false git status ls -l
2023.07.03 -
gnome-shell-extension-manager
현재 사용 중인 데비안 배포 버전 : ~$ cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 12 (bookworm)" NAME="Debian GNU/Linux" VERSION_ID="12" VERSION="12 (bookworm)" VERSION_CODENAME=bookworm ID=debian HOME_URL="https://www.debian.org/" SUPPORT_URL="https://www.debian.org/support" BUG_REPORT_URL="https://bugs.debian.org/" 그놈 데스크탑 : 43.4 gnome-tweaks 실행 시 [모양새] 에서 쉘(사용자 테마)를 선택할 수 없는 경우가 있다. 다음은 gnome-shell-e..
2023.07.03 -
[안드로이드 스튜디오] manifest 에 서비스 추가하기
앱 프로젝트를 선택하고 마우스 우클릭 > 컨텍스트 메뉴에서 New > Service 에서 Service 를 클릭한다. 대략 이렇게 생긴 클래스가 생긴다. AndroidManifest.xml 에 다음과 같이 service 요소가 추가되었다.
2023.06.19 -
[자바] IntelliJ - 서비스 메소드 구현 코드(implementation) 바로 열기
Controller 에서 추상형 Service 클래스를 안거치고 ServiceImpl 구현단 소스로 바로 이동하는 다양한 방법 right click > Go To > Implementation(s)참고 URL : Choose between open declaration/implementation on Ctrl + click in IntelliJ IDEADetails: IDE: IntelliJ IDEA 14 O.S.:: Windows 7 If I want to navigate to the declaration of a method I can choose one of the following approaches: press Ctrl + left click right click > Go To >stackove..
2023.06.12 -
[리눅스] dd 명령으로 이미지 (본) 뜨기
가끔 찾아보다가 거의 쓰지 않아서 까먹는 리눅스 유틸리티. dd 윈도10 설치 이미지를 USB 메모리에 구워는데 이를 역으로 iso 로 만들어야 할 경우 : /dev/sdc1 : usb 를 꽂았을 때 인식되는 디바이스명 bs : block size. 보통 1024를 씀. dd if=[읽어 들일 파일 또는 디바이스] of=[기록할 파일명] bs=1024 ~$ sudo dd if=/dev/sdc1 of=win10.iso bs=1024 [sudo] user 암호: 30043136+0 레코드 입력함 30043136+0 레코드 출력함 30764171264 바이트 (31 GB, 29 GiB) 복사함, 223.995 s, 137 MB/s 다 구우면 파일 사이즈가 늘어난 것을 확인할 수 있다. (예: 29GB 짜리 I..
2023.05.20