wezterm
wezterm copied to clipboard
Failure to start Wezterm after install
Ubuntu 22.04
rustc -V
rustc 1.81.0 (eeb90cda1 2024-09-04)
Option 1.
curl -fsSL https://apt.fury.io/wez/gpg.key | sudo gpg --yes --dearmor -o /usr/share/keyrings/wezterm-fury.gpg
echo 'deb [signed-by=/usr/share/keyrings/wezterm-fury.gpg] https://apt.fury.io/wez/ * *' | sudo tee /etc/apt/sources.list.d/wezterm.list
sudo apt install wezterm-nightly
trying to run results in error:
wezterm
18:50:01.782 ERROR mux::ssh_agent > failed to set "/run/user/1000/wezterm/agent.12185" to initial inherited SSH_AUTH_SOCK value of "/run/user/1000/keyring/ssh": failed to create symlink /run/user/1000/wezterm/agent.12185 -> /run/user/1000/keyring/ssh: No such file or directory (os error 2)
18:50:01.786 ERROR wezterm_gui > Failed to acquire compose table from locale; terminating
Option 2
git clone --depth=1 --branch=main --recursive https://github.com/wez/wezterm.git
cd wezterm
git submodule update --init --recursive
./get-deps
cargo build --release
cargo run --release --bin wezterm -- start
Finished `release` profile [optimized] target(s) in 1.11s
Running `target/release/wezterm start`
18:52:41.782 ERROR mux::ssh_agent > failed to set "/run/user/1000/wezterm/agent.12602" to initial inherited SSH_AUTH_SOCK value of "/run/user/1000/keyring/ssh": failed to create symlink /run/user/1000/wezterm/agent.12602 -> /run/user/1000/keyring/ssh: No such file or directory (os error 2)
18:52:41.790 ERROR wezterm_gui > Failed to acquire compose table from locale; terminating
Option 3:
curl -LO https://github.com/wez/wezterm/releases/download/20240203-110809-5046fc22/wezterm-20240203-110809-5046fc22.Ubuntu22.04.deb
sudo apt install -y ./wezterm-20240203-110809-5046fc22.Ubuntu22.04.deb
wezterm
18:56:41.847 ERROR wezterm_gui > Failed to acquire compose table from locale; terminating
Any help is appreciated!