Help:Is any package for Share Session?


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Help:Is any package for Share Session?
# 1  
Old 04-19-2011
Help:Is any package for Share Session?

Hi, buddys.
I want to find a package to share the Session:
The main function is
1) on a ubuntu PC(1): <ssh -l username hostname>
2) share this session out with port(B). ( if this possible)
3) from other PC(2) use <telnet PC(1):port(B)>
4) PC(1) and PC(2) both can input and output!

IS any package can make this possible?

Last edited by pludi; 04-19-2011 at 06:19 AM..
# 2  
Old 04-19-2011
Well, what you want is very like "xterm -ls", which you might prefer, but it might be a security violation. You are going to a host with ssh, but want to let a telnet run your shell.

Really, the telnet creates a new session, with your listener, and you give it a shell to talk to, also often a security violation. You need a tcp listener to intercept the telnet connection. Usually, one spins off the service (ssh) for every connection on the listener.

A port is absolutely just a number, and TCP will only allow one listener to bind to it unless you use SO_REUSEADDR, which is a good idea just in case there is a non-listener still using the 'port'. Telnet is a client, the listener is a server and for you, the ssh is a service. You might want to devise some authentication for it, and shut down listening after the first connection so you do not show up on a port scan or netstat -a.

Do you want two screens/users? VNC X Windows is better for that.
This User Gave Thanks to DGPickett For This Post:
# 3  
Old 04-22-2011
First,,,Thanks very much...
actually, I do link the X window for Share, Because it isn't more efficiency.
If i need someone give me assistance, I think the CMD mode is more quickly...

The station i connected is more sensitivity, so i need to control the connection.. so i want some one assistance can only connect to my PC by SSH or Telnet...then do some operation under monitor.

anyway,,,thanks very much....
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Help with share R library package issue

Hi, I just install a library package in R. However my friend (other users) don't have the right to use it :( They have the right to issue "R" at their terminal. However they can't execute and use whatever library package that I installed. We all share the same server. Is there any advice... (4 Replies)
Discussion started by: perl_beginner
4 Replies

2. Emergency UNIX and Linux Support

Problem when trying to remove a package using rpm command - error: package is not installed

Hello, i have installed a package by using the command sudo rpm -i filepackage.rpm package filepackage is already installed when i try to remove it, i get an error saying "is not installed": sudo rpm -e filepackage.rpm error: package filepackage is not installed How can... (4 Replies)
Discussion started by: g_p
4 Replies

3. Shell Programming and Scripting

Help with data reformat if share share content

Input data: read1_data1 read1_data1 read2_data1 read3_data1 read4_data1 read4_data1 read4_data1 read5_data1 . . Desired output result: read1_data1 read1_data2 read2_data1 read3_data1 read4_data1 (3 Replies)
Discussion started by: perl_beginner
3 Replies

4. UNIX for Advanced & Expert Users

How to find dependancies of .dstream package (Solaris) & .rpm package( linux)

Friends, Please let meknow, How we can find the dependancies of .dstream package & .rpm package before installation ? For AIX, We can use the inutoc . command to create the .toc file for the bff package, What about Solaris & Linux ? (0 Replies)
Discussion started by: yb4779
0 Replies

5. Solaris

Difference between the desktop session and console session

what is the difference between desktop session and console session in solaris as i am wondering we use option -text for the former and -nowin for the later (1 Reply)
Discussion started by: kishanreddy
1 Replies

6. Solaris

I am not able to login in gnome session and java session in Sun solaris 9& 10

I am not able to login in gnome session and java session in Sun solaris 9& 10 respectively through xmanager as a nis user, I am able to login in common desktop , but gnome session its not allowing , when I have given login credentials, its coming back to login screen, what shoul I do to allow nis... (0 Replies)
Discussion started by: durgaprasadr13
0 Replies

7. Shell Programming and Scripting

Hiding Directories on a Session by Session basis

Hi, Apologies if anyone has read my recent post on the same subject in the Linux forum, just thought actually the solution might more likely come from scripting. Essentially, I am trying to restrict access to directories based on the user's name AND their location on a session-by-session... (3 Replies)
Discussion started by: en7smb
3 Replies

8. Shell Programming and Scripting

sqlplus session being able to see unix variables session within a script

Hi there. How do I make the DB connection see the parameter variables passed to the unix script ? The code snippet below isn't working properly. sqlplus << EOF user1@db1/pass1 BEGIN PACKAGE1.perform_updates($1,$2,$3); END; EOF Thanks in advance, Abrahao. (2 Replies)
Discussion started by: 435 Gavea
2 Replies
Login or Register to Ask a Question