6TM Bookmarks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
5 results tagged Devops  ✕
linuxserver/docker-webtop: Ubuntu, Alpine, Arch, and Fedora based Webtop images, Linux in a web browser supporting popular desktop environments. https://github.com/linuxserver/docker-webtop
Thu Jan 22 11:36:34 2026
QRCode
archive.org
  • get GNU/Linux OS in your brower with this docker-compose.yaml:
    services:
    webtop:
    container_name: webtop
    image: lscr.io/linuxserver/webtop:arch-xfce
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Paris           # ← change to your timezone
      - LC_ALL=fr_FR.UTF-8 
      - DOCKER_MODS=linuxserver/mods:universal-package-install
      - INSTALL_PACKAGES=git|tree|vim
    ports:
      - 3000:3000
    volumes:
      - ./webtop-config:/config         # persistent home directory + settings
      - ./tmp:/tmp
    shm_size: 1gb                       # very important for performance!
Devops Tool Infra Local TIL
How do I force SSH to use password instead of key? - Super User https://superuser.com/questions/1376201/how-do-i-force-ssh-to-use-password-instead-of-key
Tue Apr 14 12:15:11 2026
QRCode
archive.org

ssh-copy-id -o PreferredAuthentications=password -o PubkeyAuthentication=no -i ~/.ssh/rsa_private_key <server> for copying ssh pubkey to remote server after password authentication

Devops TIL Tip
Get main system information (Model/CPU/RAM Max) from dmidecode /shaare/GNVG0w
Thu Jan 22 15:19:43 2026
QRCode
archive.org

sudo dmidecode -t system -t processor -t memory | grep -Ev 'None|: [0-9]*$' | grep -E "Maximum Capacity|Serial Number|Product Name|Version"

Snippet Devops Infra TIL
Remove spaces from empty lines /shaare/b4sIFA
Tue Jan 20 06:17:18 2026
QRCode
archive.org

Due to Python lint.
find . -type f -name "*.py" -exec sed -i 's/^[[:space:]]*$//' {} \;

TIL Devops Lint Tip
How to automatically reload Ghostty configuration? /shaare/qp2Hfg
Tue Dec 30 09:27:37 2025
QRCode
archive.org

For MacOS, run this command for Ghostty Terminal Emulator

find ~/Library/Application\ Support/com.mitchellh.ghostty ~/.config/ghostty 2>/dev/null | entr pkill -SIGUSR2 ghostty
  • source
  • man entr
TIL Devops Tool Tip Terminal
78 links, including 45 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn