vnc: unable to get a shell prompt with the default opened terminal application
I am setting up a VNC server (vnc4server on mint) and I have a default xstartup file in ~/.vnc.
I am using twm
window manager. When I connect to the VNC server, I can authenticate successfully and see the terminal but I don't get a prompt. I can open a new tab in the terminal using a mouse but none of the keys pressed are acted on by the Terminal application. When I press few random keys and on packet capture, those keys are received as 'Client key event' on the VNC server box. It looks like, the VNC client can pass keyboard and mouse events and can receive frame buffer updates but for some reason, the application running on the server does not seem to process keyboard events.
xstartup file:
~/.vnc$ ls
passwd rag-tos-laptop:1.log rag-tos-laptop:1.pid xstartup* xstartup.bak*
~/.vnc$ cat xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
twm &
On further investigation, I found that I can work (type sentences) if I launch gedit so it seems only to be a problem working with any terminal (+shell).
When I start gnome-terminal in xstartup, I can't still get a shell on my VNC viewer. Some more diagnostic info:
~/.vnc$ ps --ppid 3334 -o pid,ppid,stat,cmd
PID PPID STAT CMD
3342 3334 S gnome-pty-helper
3343 3334 Ss+ bash
~/.vnc$ ls -l /proc/3334/fd
total 0
lr-x------ 1 rag rag 64 Jan 5 23:25 0 -> /dev/null
l-wx------ 1 rag rag 64 Jan 5 23:25 1 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 10 -> socket:[17343]
lrwx------ 1 rag rag 64 Jan 5 23:25 11 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 12 -> /dev/ptmx
lrwx------ 1 rag rag 64 Jan 5 23:25 13 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 14 -> socket:[19273]
lrwx------ 1 rag rag 64 Jan 5 23:25 15 -> anon_inode:[eventfd]
l-wx------ 1 rag rag 64 Jan 5 23:24 2 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 3 -> socket:[19263]
lrwx------ 1 rag rag 64 Jan 5 23:25 4 -> socket:[19267]
lrwx------ 1 rag rag 64 Jan 5 23:25 5 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 6 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 7 -> socket:[20165]
lrwx------ 1 rag rag 64 Jan 5 23:25 8 -> socket:[17342]
lrwx------ 1 rag rag 64 Jan 5 23:25 9 -> anon_inode:[eventfd]
~/.vnc$ ls -l /proc/3343/fd
total 0
lrwx------ 1 rag rag 64 Jan 5 23:23 0 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 1 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 2 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 255 -> /dev/pts/4
linux-mint x11 vnc
add a comment |
I am setting up a VNC server (vnc4server on mint) and I have a default xstartup file in ~/.vnc.
I am using twm
window manager. When I connect to the VNC server, I can authenticate successfully and see the terminal but I don't get a prompt. I can open a new tab in the terminal using a mouse but none of the keys pressed are acted on by the Terminal application. When I press few random keys and on packet capture, those keys are received as 'Client key event' on the VNC server box. It looks like, the VNC client can pass keyboard and mouse events and can receive frame buffer updates but for some reason, the application running on the server does not seem to process keyboard events.
xstartup file:
~/.vnc$ ls
passwd rag-tos-laptop:1.log rag-tos-laptop:1.pid xstartup* xstartup.bak*
~/.vnc$ cat xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
twm &
On further investigation, I found that I can work (type sentences) if I launch gedit so it seems only to be a problem working with any terminal (+shell).
When I start gnome-terminal in xstartup, I can't still get a shell on my VNC viewer. Some more diagnostic info:
~/.vnc$ ps --ppid 3334 -o pid,ppid,stat,cmd
PID PPID STAT CMD
3342 3334 S gnome-pty-helper
3343 3334 Ss+ bash
~/.vnc$ ls -l /proc/3334/fd
total 0
lr-x------ 1 rag rag 64 Jan 5 23:25 0 -> /dev/null
l-wx------ 1 rag rag 64 Jan 5 23:25 1 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 10 -> socket:[17343]
lrwx------ 1 rag rag 64 Jan 5 23:25 11 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 12 -> /dev/ptmx
lrwx------ 1 rag rag 64 Jan 5 23:25 13 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 14 -> socket:[19273]
lrwx------ 1 rag rag 64 Jan 5 23:25 15 -> anon_inode:[eventfd]
l-wx------ 1 rag rag 64 Jan 5 23:24 2 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 3 -> socket:[19263]
lrwx------ 1 rag rag 64 Jan 5 23:25 4 -> socket:[19267]
lrwx------ 1 rag rag 64 Jan 5 23:25 5 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 6 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 7 -> socket:[20165]
lrwx------ 1 rag rag 64 Jan 5 23:25 8 -> socket:[17342]
lrwx------ 1 rag rag 64 Jan 5 23:25 9 -> anon_inode:[eventfd]
~/.vnc$ ls -l /proc/3343/fd
total 0
lrwx------ 1 rag rag 64 Jan 5 23:23 0 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 1 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 2 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 255 -> /dev/pts/4
linux-mint x11 vnc
Anyone solve this yet?
– pandalion98
Dec 23 '15 at 1:02
add a comment |
I am setting up a VNC server (vnc4server on mint) and I have a default xstartup file in ~/.vnc.
I am using twm
window manager. When I connect to the VNC server, I can authenticate successfully and see the terminal but I don't get a prompt. I can open a new tab in the terminal using a mouse but none of the keys pressed are acted on by the Terminal application. When I press few random keys and on packet capture, those keys are received as 'Client key event' on the VNC server box. It looks like, the VNC client can pass keyboard and mouse events and can receive frame buffer updates but for some reason, the application running on the server does not seem to process keyboard events.
xstartup file:
~/.vnc$ ls
passwd rag-tos-laptop:1.log rag-tos-laptop:1.pid xstartup* xstartup.bak*
~/.vnc$ cat xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
twm &
On further investigation, I found that I can work (type sentences) if I launch gedit so it seems only to be a problem working with any terminal (+shell).
When I start gnome-terminal in xstartup, I can't still get a shell on my VNC viewer. Some more diagnostic info:
~/.vnc$ ps --ppid 3334 -o pid,ppid,stat,cmd
PID PPID STAT CMD
3342 3334 S gnome-pty-helper
3343 3334 Ss+ bash
~/.vnc$ ls -l /proc/3334/fd
total 0
lr-x------ 1 rag rag 64 Jan 5 23:25 0 -> /dev/null
l-wx------ 1 rag rag 64 Jan 5 23:25 1 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 10 -> socket:[17343]
lrwx------ 1 rag rag 64 Jan 5 23:25 11 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 12 -> /dev/ptmx
lrwx------ 1 rag rag 64 Jan 5 23:25 13 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 14 -> socket:[19273]
lrwx------ 1 rag rag 64 Jan 5 23:25 15 -> anon_inode:[eventfd]
l-wx------ 1 rag rag 64 Jan 5 23:24 2 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 3 -> socket:[19263]
lrwx------ 1 rag rag 64 Jan 5 23:25 4 -> socket:[19267]
lrwx------ 1 rag rag 64 Jan 5 23:25 5 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 6 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 7 -> socket:[20165]
lrwx------ 1 rag rag 64 Jan 5 23:25 8 -> socket:[17342]
lrwx------ 1 rag rag 64 Jan 5 23:25 9 -> anon_inode:[eventfd]
~/.vnc$ ls -l /proc/3343/fd
total 0
lrwx------ 1 rag rag 64 Jan 5 23:23 0 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 1 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 2 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 255 -> /dev/pts/4
linux-mint x11 vnc
I am setting up a VNC server (vnc4server on mint) and I have a default xstartup file in ~/.vnc.
I am using twm
window manager. When I connect to the VNC server, I can authenticate successfully and see the terminal but I don't get a prompt. I can open a new tab in the terminal using a mouse but none of the keys pressed are acted on by the Terminal application. When I press few random keys and on packet capture, those keys are received as 'Client key event' on the VNC server box. It looks like, the VNC client can pass keyboard and mouse events and can receive frame buffer updates but for some reason, the application running on the server does not seem to process keyboard events.
xstartup file:
~/.vnc$ ls
passwd rag-tos-laptop:1.log rag-tos-laptop:1.pid xstartup* xstartup.bak*
~/.vnc$ cat xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
twm &
On further investigation, I found that I can work (type sentences) if I launch gedit so it seems only to be a problem working with any terminal (+shell).
When I start gnome-terminal in xstartup, I can't still get a shell on my VNC viewer. Some more diagnostic info:
~/.vnc$ ps --ppid 3334 -o pid,ppid,stat,cmd
PID PPID STAT CMD
3342 3334 S gnome-pty-helper
3343 3334 Ss+ bash
~/.vnc$ ls -l /proc/3334/fd
total 0
lr-x------ 1 rag rag 64 Jan 5 23:25 0 -> /dev/null
l-wx------ 1 rag rag 64 Jan 5 23:25 1 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 10 -> socket:[17343]
lrwx------ 1 rag rag 64 Jan 5 23:25 11 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 12 -> /dev/ptmx
lrwx------ 1 rag rag 64 Jan 5 23:25 13 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 14 -> socket:[19273]
lrwx------ 1 rag rag 64 Jan 5 23:25 15 -> anon_inode:[eventfd]
l-wx------ 1 rag rag 64 Jan 5 23:24 2 -> /home/rag/.vnc/rag-tos-laptop:1.log
lrwx------ 1 rag rag 64 Jan 5 23:25 3 -> socket:[19263]
lrwx------ 1 rag rag 64 Jan 5 23:25 4 -> socket:[19267]
lrwx------ 1 rag rag 64 Jan 5 23:25 5 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 6 -> anon_inode:[eventfd]
lrwx------ 1 rag rag 64 Jan 5 23:25 7 -> socket:[20165]
lrwx------ 1 rag rag 64 Jan 5 23:25 8 -> socket:[17342]
lrwx------ 1 rag rag 64 Jan 5 23:25 9 -> anon_inode:[eventfd]
~/.vnc$ ls -l /proc/3343/fd
total 0
lrwx------ 1 rag rag 64 Jan 5 23:23 0 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 1 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:23 2 -> /dev/pts/4
lrwx------ 1 rag rag 64 Jan 5 23:25 255 -> /dev/pts/4
linux-mint x11 vnc
linux-mint x11 vnc
edited Dec 17 at 9:02
Anthony Geoghegan
7,54443954
7,54443954
asked Jan 4 '15 at 14:50
rag
57621226
57621226
Anyone solve this yet?
– pandalion98
Dec 23 '15 at 1:02
add a comment |
Anyone solve this yet?
– pandalion98
Dec 23 '15 at 1:02
Anyone solve this yet?
– pandalion98
Dec 23 '15 at 1:02
Anyone solve this yet?
– pandalion98
Dec 23 '15 at 1:02
add a comment |
1 Answer
1
active
oldest
votes
I had exactly the same problem. I prefer to use TWM as it is lean and light. The Linux Mint box is my home server, and rarely needs gui tools anyway. Nearly everything I do on it is command line stuff - lots of scripts running.
Here is what I did:
- sudo apt-get install xterm
- edit ~/.vnc/xstartup to use xterm.
#!/bin/sh
exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & #!/bin/sh
/usr/bin/xterm -geometry 80x24+10+10 -ls -title "xterm" &
/usr/bin/xterm -geometry 80x24+200+200 -ls -T "xterm" &
twm &
So, I use xterm, not mate-terminal, gnome-terminal or x-terminal-emulator.
Don't know why the others don't work, but I'm happy with xterm.
I doesn't appear to do multiple seesions/tabs in the one window, but you can achieve the same by just entering xterm & to open a new session in its own window.
Cut and paste using Shift-Ctrl-C and Shift-Ctrl-V don't work either, but you can do just the same by highlighting the text with the mouse, then move to the target window and press the middle mouse button (or left and right together) to paste. This is how I pasted the xstartup file above, from the vncviewer window on my laptop to the firefox browser window on the same laptop. The same method works between xterms on the server.
Note: the -title
argument is ignored. Again, don't know why.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f177364%2fvnc-unable-to-get-a-shell-prompt-with-the-default-opened-terminal-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had exactly the same problem. I prefer to use TWM as it is lean and light. The Linux Mint box is my home server, and rarely needs gui tools anyway. Nearly everything I do on it is command line stuff - lots of scripts running.
Here is what I did:
- sudo apt-get install xterm
- edit ~/.vnc/xstartup to use xterm.
#!/bin/sh
exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & #!/bin/sh
/usr/bin/xterm -geometry 80x24+10+10 -ls -title "xterm" &
/usr/bin/xterm -geometry 80x24+200+200 -ls -T "xterm" &
twm &
So, I use xterm, not mate-terminal, gnome-terminal or x-terminal-emulator.
Don't know why the others don't work, but I'm happy with xterm.
I doesn't appear to do multiple seesions/tabs in the one window, but you can achieve the same by just entering xterm & to open a new session in its own window.
Cut and paste using Shift-Ctrl-C and Shift-Ctrl-V don't work either, but you can do just the same by highlighting the text with the mouse, then move to the target window and press the middle mouse button (or left and right together) to paste. This is how I pasted the xstartup file above, from the vncviewer window on my laptop to the firefox browser window on the same laptop. The same method works between xterms on the server.
Note: the -title
argument is ignored. Again, don't know why.
add a comment |
I had exactly the same problem. I prefer to use TWM as it is lean and light. The Linux Mint box is my home server, and rarely needs gui tools anyway. Nearly everything I do on it is command line stuff - lots of scripts running.
Here is what I did:
- sudo apt-get install xterm
- edit ~/.vnc/xstartup to use xterm.
#!/bin/sh
exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & #!/bin/sh
/usr/bin/xterm -geometry 80x24+10+10 -ls -title "xterm" &
/usr/bin/xterm -geometry 80x24+200+200 -ls -T "xterm" &
twm &
So, I use xterm, not mate-terminal, gnome-terminal or x-terminal-emulator.
Don't know why the others don't work, but I'm happy with xterm.
I doesn't appear to do multiple seesions/tabs in the one window, but you can achieve the same by just entering xterm & to open a new session in its own window.
Cut and paste using Shift-Ctrl-C and Shift-Ctrl-V don't work either, but you can do just the same by highlighting the text with the mouse, then move to the target window and press the middle mouse button (or left and right together) to paste. This is how I pasted the xstartup file above, from the vncviewer window on my laptop to the firefox browser window on the same laptop. The same method works between xterms on the server.
Note: the -title
argument is ignored. Again, don't know why.
add a comment |
I had exactly the same problem. I prefer to use TWM as it is lean and light. The Linux Mint box is my home server, and rarely needs gui tools anyway. Nearly everything I do on it is command line stuff - lots of scripts running.
Here is what I did:
- sudo apt-get install xterm
- edit ~/.vnc/xstartup to use xterm.
#!/bin/sh
exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & #!/bin/sh
/usr/bin/xterm -geometry 80x24+10+10 -ls -title "xterm" &
/usr/bin/xterm -geometry 80x24+200+200 -ls -T "xterm" &
twm &
So, I use xterm, not mate-terminal, gnome-terminal or x-terminal-emulator.
Don't know why the others don't work, but I'm happy with xterm.
I doesn't appear to do multiple seesions/tabs in the one window, but you can achieve the same by just entering xterm & to open a new session in its own window.
Cut and paste using Shift-Ctrl-C and Shift-Ctrl-V don't work either, but you can do just the same by highlighting the text with the mouse, then move to the target window and press the middle mouse button (or left and right together) to paste. This is how I pasted the xstartup file above, from the vncviewer window on my laptop to the firefox browser window on the same laptop. The same method works between xterms on the server.
Note: the -title
argument is ignored. Again, don't know why.
I had exactly the same problem. I prefer to use TWM as it is lean and light. The Linux Mint box is my home server, and rarely needs gui tools anyway. Nearly everything I do on it is command line stuff - lots of scripts running.
Here is what I did:
- sudo apt-get install xterm
- edit ~/.vnc/xstartup to use xterm.
#!/bin/sh
exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & #!/bin/sh
/usr/bin/xterm -geometry 80x24+10+10 -ls -title "xterm" &
/usr/bin/xterm -geometry 80x24+200+200 -ls -T "xterm" &
twm &
So, I use xterm, not mate-terminal, gnome-terminal or x-terminal-emulator.
Don't know why the others don't work, but I'm happy with xterm.
I doesn't appear to do multiple seesions/tabs in the one window, but you can achieve the same by just entering xterm & to open a new session in its own window.
Cut and paste using Shift-Ctrl-C and Shift-Ctrl-V don't work either, but you can do just the same by highlighting the text with the mouse, then move to the target window and press the middle mouse button (or left and right together) to paste. This is how I pasted the xstartup file above, from the vncviewer window on my laptop to the firefox browser window on the same laptop. The same method works between xterms on the server.
Note: the -title
argument is ignored. Again, don't know why.
edited Apr 20 '16 at 6:39
Archemar
19.6k93570
19.6k93570
answered Apr 20 '16 at 6:20
Steve Bates
213
213
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f177364%2fvnc-unable-to-get-a-shell-prompt-with-the-default-opened-terminal-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Anyone solve this yet?
– pandalion98
Dec 23 '15 at 1:02