• 0 Posts
  • 101 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle











  • infeeeee@lemm.eetolinuxmemes@lemmy.worldIt is called 🍷
    link
    fedilink
    arrow-up
    24
    ·
    edit-2
    1 month ago

    No, it’s just remote. Remote desktop is now also called Windows, also the operating system you are connecting to is called Windows.

    Gnome has relatively good rdp support, so with this you could use Windows (the app) on Windows (the os) to connect to you Linux machine running Gnome.

    It seems deliberately confusing naming is working as expected, Microsoft marketing team should get extra raise.







  • One of them is a laptop, why ssh to the server isn’t an option? Set up tmux on the server so it always connects to the same session, so you can just continue where you left last time. If you need desktop support, rdp in gnome works really well.

    E.g if you connect with this command, and tmux is installed on the server, it will start a new session named “main”. If a session with that name exists it will connect to that:

    ssh -t pi@192.168.1.2 tmux new-session -A -s main

    Add something to .bashrc on the server to always do the same if you work on that phisically:

    if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
    tmux new-session
    fi