<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: pcanywhere like for redhat linux? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094621#M74522</link>
    <description>Claudio Cilloni gave you the solution.See this example...&lt;BR /&gt;on pc1 after login issue this command:&lt;BR /&gt;dtach -c /tmp/foozle -Ez bash&lt;BR /&gt;then from pc2 ssh to pc1 and issue this command:&lt;BR /&gt;dtach -a /tmp/foozle &lt;BR /&gt;this way you'll have the desired (I hope) result.&lt;BR /&gt;Best regards.</description>
    <pubDate>Thu, 16 Oct 2003 04:51:34 GMT</pubDate>
    <dc:creator>Alexander Chuzhoy</dc:creator>
    <dc:date>2003-10-16T04:51:34Z</dc:date>
    <item>
      <title>pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094616#M74517</link>
      <description>is there any way that i can see what the user is doing or typing remotely? users running under console mode. meaning, i want to see the tty1 screen remotely?&lt;BR /&gt;&lt;BR /&gt;appreciate any advise...</description>
      <pubDate>Thu, 16 Oct 2003 02:12:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094616#M74517</guid>
      <dc:creator>bong_3</dc:creator>
      <dc:date>2003-10-16T02:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094617#M74518</link>
      <description>Ok, on X it's easy with a vnc client but if you want console mode you have more of a problem.  Much more of a problem.&lt;BR /&gt; &lt;BR /&gt;You can, or course, just to "tail -f /dev/ttyX" which may just about be enough for you.  Your alternative is to use the linux fram buffer for your screen and "fbvncserver" which I have never actually tried myself but you can find out all about it here.&lt;BR /&gt; &lt;BR /&gt;&lt;A href="http://community.zaurus.com/projects/fbvncserver/" target="_blank"&gt;http://community.zaurus.com/projects/fbvncserver/&lt;/A&gt;</description>
      <pubDate>Thu, 16 Oct 2003 02:19:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094617#M74518</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-10-16T02:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094618#M74519</link>
      <description>you can have a 'hard copy' of the console screens (the screens you choose typing CTRL+ALT+Fn) so:&lt;BR /&gt;&lt;BR /&gt;# cat /dev/vcsX   (where X is 1..6)&lt;BR /&gt;&lt;BR /&gt;you get a string of the succession of the characters on that screen, line after line. If format that string in a 80x25, you'll see exactly what the user sees.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;Claudio</description>
      <pubDate>Thu, 16 Oct 2003 03:20:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094618#M74519</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-10-16T03:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094619#M74520</link>
      <description>But if you want to see in a real-time fashion what the user is typing/seeing you can use dtach (usually available with redhat):&lt;BR /&gt; &lt;BR /&gt;the user must run a command like this:&lt;BR /&gt; &lt;BR /&gt;$ dtach -c /tmp/foozle -Ez bash&lt;BR /&gt; &lt;BR /&gt;then he/she start working in that new shell.&lt;BR /&gt; &lt;BR /&gt;You can see (and interact, too) his/her screen running this command in a remote terminal (xterm, rxvt, kconsole...):&lt;BR /&gt; &lt;BR /&gt;$ dtach -a /tmp/foozle&lt;BR /&gt; &lt;BR /&gt;dtach is really simple, there's a package named 'screen' more powerful to do the same things.&lt;BR /&gt; &lt;BR /&gt;man pages helps:&lt;BR /&gt; &lt;BR /&gt;$ man dtach&lt;BR /&gt;$ man screen&lt;BR /&gt; &lt;BR /&gt;Ciao!&lt;BR /&gt;Claudio&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2003 03:49:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094619#M74520</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-10-16T03:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094620#M74521</link>
      <description>hi Claudio... thnks for your suggestion but what i want to know is if there's a utility where in i can also type or run any commands from the tty1 console itself, not just see. A feeling like i'm just infront of that pc.</description>
      <pubDate>Thu, 16 Oct 2003 03:58:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094620#M74521</guid>
      <dc:creator>bong_3</dc:creator>
      <dc:date>2003-10-16T03:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094621#M74522</link>
      <description>Claudio Cilloni gave you the solution.See this example...&lt;BR /&gt;on pc1 after login issue this command:&lt;BR /&gt;dtach -c /tmp/foozle -Ez bash&lt;BR /&gt;then from pc2 ssh to pc1 and issue this command:&lt;BR /&gt;dtach -a /tmp/foozle &lt;BR /&gt;this way you'll have the desired (I hope) result.&lt;BR /&gt;Best regards.</description>
      <pubDate>Thu, 16 Oct 2003 04:51:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094621#M74522</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2003-10-16T04:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094622#M74523</link>
      <description>RedHat contains 'screen' program, you might already have it installed.  &lt;BR /&gt;&lt;BR /&gt;The simplest usage is:&lt;BR /&gt;User logs in in one session and runs 'screen' command.&lt;BR /&gt;You log in in a second session as the same user and in your session you run 'screen -x' command.&lt;BR /&gt;Now you both see the same 'picture' and can type in commands.  Read screen's man page, the program has its limitations...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Marcin&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2003 05:44:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094622#M74523</guid>
      <dc:creator>Marcin Golembski_1</dc:creator>
      <dc:date>2003-10-16T05:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094623#M74524</link>
      <description>I've had a look at dtach (I didn't have it on my workstation) and now I second Claudio's solution - dtach seems to overcome screen's limitations. &lt;BR /&gt;Claudio, thanks for a hint! &lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2003 06:27:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094623#M74524</guid>
      <dc:creator>Marcin Golembski_1</dc:creator>
      <dc:date>2003-10-16T06:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094624#M74525</link>
      <description>Personally I prefer screen, I has a lot more features. I love the possibility to keep more virtual screens/shells under the same screen session, create new shells with ctrl-A+C, switch through them with ctrl-A+space. Really e great tool!&lt;BR /&gt; &lt;BR /&gt;Ciao!&lt;BR /&gt;Claudio</description>
      <pubDate>Thu, 16 Oct 2003 06:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094624#M74525</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-10-16T06:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094625#M74526</link>
      <description>hi Claudio...&lt;BR /&gt;sorry I was unable to read your second suggestion. I just tried the dtach then it works the way i want it... &lt;BR /&gt;WOW... this forum rocks... i might be a linux expert too just by reading all your comments...&lt;BR /&gt;Thank you so much...</description>
      <pubDate>Thu, 16 Oct 2003 20:36:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094625#M74526</guid>
      <dc:creator>bong_3</dc:creator>
      <dc:date>2003-10-16T20:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094626#M74527</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;What you need is VNC that came with RH&lt;BR /&gt;distribution&lt;BR /&gt;You have the server and the viewer.&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Sat, 18 Oct 2003 12:37:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094626#M74527</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-10-18T12:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: pcanywhere like for redhat linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094627#M74528</link>
      <description>hi dude! use VNC, light weight remote control system .</description>
      <pubDate>Sun, 19 Oct 2003 15:00:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/pcanywhere-like-for-redhat-linux/m-p/3094627#M74528</guid>
      <dc:creator>Jun Yu</dc:creator>
      <dc:date>2003-10-19T15:00:04Z</dc:date>
    </item>
  </channel>
</rss>

