Skip to content

Instantly share code, notes, and snippets.

@se7uh
se7uh / read.me.md
Created June 5, 2026 02:59
ssh ghostty
╰─❯ infocmp -x | ssh dev@192.168.18.20 -- tic -x -
(dev@192.168.18.20) Password:
"<stdin>", line 2, col 31, terminal 'xterm-ghostty': older tic versions may treat the description field as an alias
@se7uh
se7uh / create-swapfile-quick-command.md
Created May 28, 2026 03:09
Create swapfile quick command

Just copy all the command. it's should works

sudo touch /swapfile

# Turn off Copy-on-Write (Crucial if you use Btrfs)
sudo chattr +C /swapfile

# make 4gb swapfile
sudo dd if=/dev/zero of=/swapfile bs=1M count=4096 status=progress