Windows에서 VMWare로 Ubuntu 22.04 설치하기
·
Setting/Ubuntu
이번 포스팅은 멀티 부팅이 어려운 환경에서 VMWare를 통한 Ubuntu 설치에 대해 알아보려고 한다.  Ubuntu 22.04 먼저 Ubuntu 22.04.5 LTS의 iso 이미지 파일을 다운로드한다. Windows는 Desktop (AMD64), intel MacOS는 Live Server(AMD64), Slilcon MacOS는 Live Server (ARM64) 이미지를 사용한다.Server는 CLI용으로 추후에 ubuntu-desktop나 ubuntu-desktop-minimal 설치를 진행하면 GUI로 사용이 가능하다.  AMD64 (Desktop, Server) Ubuntu 22.04.5 LTS (Jammy Jellyfish)Select an image Ubuntu is distribut..
터미널 에뮬레이터 Ghostty 설치
·
Setting/Ubuntu
관련 포스팅터미널 에뮬레이터 비교WezTerm 설치  Ghostty 설치 GitHub - mkasberg/ghostty-ubuntu: Ubuntu/Debian (.deb) packages for GhosttyUbuntu/Debian (.deb) packages for Ghostty. Contribute to mkasberg/ghostty-ubuntu development by creating an account on GitHub.github.com /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/mkasberg/ghostty-ubuntu/HEAD/install.sh)"  설정`~/.config/ghostty/config` 파일을 수정하면 된다...
터미널 에뮬리에터 WezTerm 설치
·
Setting/Ubuntu
관련 포스팅터미널 에뮬레이터 비교Ghostty 설치  기존에는 터미널 에뮬레이터로 `Alacritty`를 사용하고 있었는데 `WezTerm`과 `Ghostty`가 궁금하여 설치해보려고 한다.   WezTerm Lua 기반의 터미널 에뮬레이터 Linux - Wez's Terminal EmulatorWez's Terminal Emulatorwezterm.orgcurl -fsSL https://apt.fury.io/wez/gpg.key | sudo gpg --yes --dearmor -o /etc/apt/keyrings/wezterm-fury.gpgecho 'deb [signed-by=/etc/apt/keyrings/wezterm-fury.gpg] https://apt.fury.io/wez/ * *' | su..
터미널 에뮬레이터 비교 (Ghostty, WezTerm, Kitty, Alacritty, Foot, Warp)
·
Setting/Ubuntu
관련 포스팅Wezterm 설치Ghostty 설치    DeepSeek의 R1이 알려준 내용으로 틀린 부분이 있을 수 있습니다.  GhosttyWezTermKittyAlacrittyFootWarp언어텍스트 / YAMLLua텍스트 파일YAMLINI 파일GUI / JSON플랫폼Win / Mac / LinuxWin / Mac / LinuxWin / Mac / Linux (단, Windows 제한)Win / Mac / LinuxLinux (Wayloand)Mac(beta: Win / Linux)GPU 가속O(OpenGL / Metal)OOOXO대기 시간30 ms35 ms50 ms50ms13 - 19 ms RAM 사용량~ 70 MB~ 100 MB~ 50 MB~ 60 MB13 - 19 MB높음(AI 기능 포함)특화 ..
멀티 부팅 환경에서 시간 동기화 문제 해결
·
Setting/Ubuntu
문제 원인윈도우와 우분투를 멀티 부팅으로 설치하고 나면 시간이 맞지 않는 문제가 있다. 이는 시간 설정 방식 차이로 인해 발생하는 문제로, 윈도우에서는 메인보드에 저장된 시간을 기본값으로, 리눅스에서는 GMT를 기준으로 메인보드의 시간과 현재 위치의 시차를 적용하여 시간을 설정한다. 같은 메인보드를 사용하는 두 운영체제가 서로 다른 시간 설정 방식으로 인해 시간이 맞지 않는 문제가 발생하게 된다.  해결 방법리눅스의 시간 설정 방식도 메인보드의 시간에 의존하도록 설정한다.timedatectl set-local-rtc 1 --adjust-system-clock    관련 포스팅Windows & Ubuntu 멀티 부팅 (부팅 USB 만들기)Grub 부트로더 깨졌을 때 복구하기Grub 부팅 순서 바꾸기NVID..
ZSH 프롬프트 가상환경 보이게 설정
·
Setting/Ubuntu
`~/.zshrc` 에 추가 zsh_virtualenv_prompt() { # If not in a virtualenv, print nothing [[ "$VIRTUAL_ENV" == "" ]] && return # Distinguish between the shell where the virtualenv was activated # and its children local venv_name="${VIRTUAL_ENV##*/}" if typeset -f deactivate >/dev/null; then echo "[%F{green}${venv_name}%f] " else echo " " fi}setopt PROMPT_SUBST PROMP..