Replies: 4 comments 2 replies
-
Please try to describe what you're trying to achieve without specifying a technical solution which may or may not be applicable or practical. (ie:
What is this?
This is deprecated, please use |
Beta Was this translation helpful? Give feedback.
-
Yes, but what led you to change the default and is it any better? (and if so, how?)
I doubt it, it's been purged a while back.
Yes, but every other variable will be missing. Don't do that.
The information there is wrong. It's full of terrible advice.
Start an xterm then screen.
No, the default is to use paramiko which does not use openssh at all. |
Beta Was this translation helpful? Give feedback.
-
It was listed as an option in the manual. I didn't get a chance to test if it was better, but I didn't notice a difference using it. I have since removed that option.
No, it's still definitely there. See Lines 122 to 127 in 9ab62d8 I don't think it's a fair assessment to blame everything on Archlinux. Archlinux builds xpra using the same instructions listed in your README. If the instructions are wrong, then the first place to start is updating them. Also, like I mentioned, all of the examples I was following came from https://xpra.org/manual.html, under the EXAMPLES section. If you can show that those instructions work the way I expected on something like Ubuntu, then I can accept that the problem is indeed with Archlinux. Otherwise, this is just a case of ineffective documentation. IMO, the biggest hurdle was deciphering which options/commands belong to the server portion and which ones can only be used on the client. If this separation was clearer, it would be easier to isolate problems. Something like |
Beta Was this translation helpful? Give feedback.
-
If you read the very first line you quoted (emphasis mine):
OK, then let me quote this one then:
The packaging is wrong - missing dependencies, the page you quoted is also quite wrong.
If that's the biggest problem, then we're doing OK. |
Beta Was this translation helpful? Give feedback.
-
I have a server running via
systemd
, using the following command:/usr/bin/xpra start --daemon=no --socket-dir="%t/xpra" --terminate-children=yes --systemd-run=no --html=off --exec-wrapper="%s -lc" --clipboard=GDK
%s
is replaced with the user's shell%t
is replaced with the user runtime directory (something like/run/1000/user/
)Now I can connect with:
xpra attach ssh:user@remote --start kitty
This works great and displays
kitty
terminal on my desktop. However, what I would really like to do is to simply runxpra attach ssh:user@remote
and I should be dropped into a tty where I can run commands, some of which may open a window or not. The point is that I don't want to have to start a new terminal window in order to run commands on the remote, when I'm already inside a terminal.Is there any solution to this? I've also tried changing the
--ssh
option to usessh -t
instead, but this doesn't work.Beta Was this translation helpful? Give feedback.
All reactions