본문 바로가기

학습

(69)
mobaxterm logging setting
[리눅스] sudo 명령어 사용을 위한 wheel group에 사용자 추가 [root@localhost ksson]# grep wheel /etc/group wheel:x:10:[root@localhost ksson]# usermod -G wheel ksson [root@localhost ksson]# grep wheel /etc/group wheel:x:10:ksson[root@localhost ksson]#
Rocky9에 PostgreSQL, PostGIS, QGIS 설치 방법 작업 명령어# Install the repository RPM: sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm# Disable the built-in PostgreSQL module: sudo dnf -qy module disable postgresql # 패키지 목록 확인 sudo dnf list postgresql16-server # 패키지 의존성 확인 sudo dnf deplist postgresql16-server-16.4 # 패키지 및 의존성 다운로드 sudo dnf download postgresql16-server-16.4..
Rocky 9에 Oracle XE 21c 설치 가이드 # 의존 패키지 설치wget https://dl.rockylinux.org/pub/rocky/8/AppStream/x86_64/os/Packages/c/compat-openssl10-1.0.2o-4.el8_6.x86_64.rpmdnf -y localinstall compat-openssl10-1.0.2o-4.el8_6.x86_64.rpm# 사전 설치 파일 다운로드curl -o oracle-database-preinstall-21c-1.0-1.el8.x86_64.rpm https://yum.oracle.com/repo/OracleLinux/OL8/appstream/x86_64/getPackage/oracle-database-preinsta# 설치 파일 다운로드# oracle 로그인해야만 다운로드 받을 수 ..
usb_libusb.cpp:598 failed to open device: Access denied (insufficient permissions) - ADB Error Fix 제목 : usb_libusb.cpp:598 failed to open device: Access denied (insufficient permissions) 대응 문제 원인 : adb 가 root로 실행되지 않아서 발생한 문제 일반 사용자 계정(ksson)으로 adb를 실행시켜서 usb 장치의 접근을 시도할때 os의 usb 장치 (인터페이스) 접근 권한이 없어서 발생한 문제 관리자 계정(root)으로 adb를 실행 시킨 후 사용자 계정으로 adb 명령을 실행할 수 있다. 예시 : 대응 로그 [ksson@localhost rules.d]$ adb devices * daemon not running; starting now at tcp:5037 ADB server didn't ACK Full server s..
jupyter lab 자동 실행 블로그에 정리해서 올려야 하는데 귀찮다...
Windows 시작 시 PostgreSQL 자동 실행 1. 관리자: cmd 에서 PostgreSQl 서비스 생성, 서비스 시작1) 서비스 생성 "C:\Program Files\PostgreSQL\16\bin\pg_ctl.exe" register -N "PostgreSQL" -D "C:\Program Files\PostgreSQL\16\data"  2) 서비스 시작 및 설정 net start PostgreSQL 예시 2. 등록된 서비스 확인 win+r > service.msc > PostgreSQL 확인
linux의 history 명령어 실행 시간을 함께 출력하는 방법 모든 사용자에게 적용하려면 /etc/profile 파일 또는 /etc/bashrc 파일에 HISTTIMEFORMAT 변수를 추가합니다.nano /etc/bashrcexport HISTTIMEFORMAT="%F %T " source /etc/bashrc  %F는 날짜 형식(YYYY-MM-DD)을 나타내고, %T는 시간 형식(HH:MM)을 나타냅니다.만약 다른 형식으로 날짜와 시간을 표시하고 싶다면, HISTTIMEFORMAT 변수에 원하는 형식을 사용할 수 있습니다. 예를 들어, export HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "로 설정할 수 있습니다.  변경 전   250  history  251  cd 다운로드  252  ls  253  ls -al  254  cd ~  255..