<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Linux-Noob Forums - Remote Access]]></title>
		<link>https://www.linux-noob.com/forums/</link>
		<description><![CDATA[Linux-Noob Forums - https://www.linux-noob.com/forums]]></description>
		<pubDate>Wed, 06 May 2026 10:40:34 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[backup/restore remotely]]></title>
			<link>https://www.linux-noob.com/forums/thread-303.html</link>
			<pubDate>Thu, 13 Oct 2011 13:54:03 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=3499">inittux</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-303.html</guid>
			<description><![CDATA[<br />
I'm looking for some different ways to backup/restore files from a remote server that I incase I mess up something really bad.<br />
<br />
 I'll be able to restore instead of having to do a full reinstall. I'll check google later.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I'm looking for some different ways to backup/restore files from a remote server that I incase I mess up something really bad.<br />
<br />
 I'll be able to restore instead of having to do a full reinstall. I'll check google later.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Remote SSH Commands]]></title>
			<link>https://www.linux-noob.com/forums/thread-417.html</link>
			<pubDate>Mon, 25 Oct 2010 21:35:54 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=3569">rookiebeotch</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-417.html</guid>
			<description><![CDATA[<br />
I am trying to remotely call a script file via ssh.<br />
<br />
 <br />
<br />
the server has a shell that is a custom program, lets call it shelly.  There is also a script file on the server that needs to run when in shelly.<br />
<br />
 <br />
<br />
 <br />
<br />
i can run the following after i ssh into the box, as root.<br />
<br />
 <br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>exec /usr/local/bin/shelly &lt; /my_folder/custom_script</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
that works fine.<br />
<br />
 <br />
<br />
I need to be able to embed this in ssh.  I have done so like this. I have shared keys so no password needed, and it works.<br />
<br />
 <br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>ssh user@server "exec /usr/local/bin/shelly &lt; /my_folder/custom_script"</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
when i run this ssh command from my remote machine the commands are not executed from the script. So i run ssh in debug mode, and after a successful authentication i get a line that says:<br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Ssh2channelSession/SSHCHSESSION.C : bad data</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
and the connection begins to quit/close.<br />
<br />
 <br />
<br />
 <br />
<br />
I don't understand what "Bad Data" error means, and i do not have this SSHCHSESSION.C file on my server.<br />
<br />
 <br />
<br />
Is Bad Data mean there is something wrong with the command? or is it a permissions problem on the server?<br />
<br />
 <br />
<br />
 <br />
<br />
Any Ideas?<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I am trying to remotely call a script file via ssh.<br />
<br />
 <br />
<br />
the server has a shell that is a custom program, lets call it shelly.  There is also a script file on the server that needs to run when in shelly.<br />
<br />
 <br />
<br />
 <br />
<br />
i can run the following after i ssh into the box, as root.<br />
<br />
 <br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>exec /usr/local/bin/shelly &lt; /my_folder/custom_script</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
that works fine.<br />
<br />
 <br />
<br />
I need to be able to embed this in ssh.  I have done so like this. I have shared keys so no password needed, and it works.<br />
<br />
 <br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>ssh user@server "exec /usr/local/bin/shelly &lt; /my_folder/custom_script"</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
when i run this ssh command from my remote machine the commands are not executed from the script. So i run ssh in debug mode, and after a successful authentication i get a line that says:<br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Ssh2channelSession/SSHCHSESSION.C : bad data</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
and the connection begins to quit/close.<br />
<br />
 <br />
<br />
 <br />
<br />
I don't understand what "Bad Data" error means, and i do not have this SSHCHSESSION.C file on my server.<br />
<br />
 <br />
<br />
Is Bad Data mean there is something wrong with the command? or is it a permissions problem on the server?<br />
<br />
 <br />
<br />
 <br />
<br />
Any Ideas?<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[XDMCP - black screen with KDM on Fedora 12]]></title>
			<link>https://www.linux-noob.com/forums/thread-509.html</link>
			<pubDate>Thu, 25 Feb 2010 06:58:54 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1357">grep65535</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-509.html</guid>
			<description><![CDATA[<br />
I've setup XDMCP on my fedora 12 laptop.<br />
<br />
It uses KDM.<br />
<br />
 <br />
<br />
/etc/kde/kdm/kdmrc<br />
<br />
[Xdmcp]<br />
<br />
Enable=true<br />
<br />
Willing=/etc/X11/xdm/Xwilling<br />
<br />
Xaccess=/etc/X11/xdm/Xaccess<br />
<br />
 <br />
<br />
[security]<br />
<br />
AllowRemoteRoot=true<br />
<br />
DisallowTCP=false<br />
<br />
 <br />
<br />
 <br />
<br />
/etc/kde/kdm/Xaccess (link to the xdm 'xaccess' file) includes:<br />
<br />
* CHOOSER BROADCAST<br />
<br />
 <br />
<br />
In KDM settings I set it to 'no theme' and 'no custom background' so it's totally plain.<br />
<br />
 <br />
<br />
iptables &amp; SELinux are both off. The client &amp; server<br />
<br />
are both on the same switch.<br />
<br />
 <br />
<br />
 <br />
<br />
I can connect successfully. But all I get is a black screen &amp; an X cursor, never get to see the login prompt. I have no idea why. <br />
<br />
 <br />
<br />
Any suggestions?<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I've setup XDMCP on my fedora 12 laptop.<br />
<br />
It uses KDM.<br />
<br />
 <br />
<br />
/etc/kde/kdm/kdmrc<br />
<br />
[Xdmcp]<br />
<br />
Enable=true<br />
<br />
Willing=/etc/X11/xdm/Xwilling<br />
<br />
Xaccess=/etc/X11/xdm/Xaccess<br />
<br />
 <br />
<br />
[security]<br />
<br />
AllowRemoteRoot=true<br />
<br />
DisallowTCP=false<br />
<br />
 <br />
<br />
 <br />
<br />
/etc/kde/kdm/Xaccess (link to the xdm 'xaccess' file) includes:<br />
<br />
* CHOOSER BROADCAST<br />
<br />
 <br />
<br />
In KDM settings I set it to 'no theme' and 'no custom background' so it's totally plain.<br />
<br />
 <br />
<br />
iptables &amp; SELinux are both off. The client &amp; server<br />
<br />
are both on the same switch.<br />
<br />
 <br />
<br />
 <br />
<br />
I can connect successfully. But all I get is a black screen &amp; an X cursor, never get to see the login prompt. I have no idea why. <br />
<br />
 <br />
<br />
Any suggestions?<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Synchronizing Any Two Machines Using rsync]]></title>
			<link>https://www.linux-noob.com/forums/thread-695.html</link>
			<pubDate>Tue, 21 Apr 2009 09:05:00 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2">anyweb</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-695.html</guid>
			<description><![CDATA[<br />
The rsync utility is a mandatory tool for your command-line work, and you need to learn how to use it for easy, safe, quick laptop-desktop synchronization. <a href="http://www.ibm.com/developerworks/aix/library/au-rsyncfamily/index.html?ca=dgr-lnxw07rsync-easySync&amp;S_TACT=105AGX59&amp;S_CMP=GRsitelnxw07" target="_blank" rel="noopener" class="mycode_url">This article</a> introduces rsync and mentions several related tools, all of which provide easy synchronization procedures.<br />
<br />
 <br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>What is rsync? <br />
<br />
The rsync utility is a file-transfer and synchronization program widely available for Linux</blockquote>
]]></description>
			<content:encoded><![CDATA[<br />
The rsync utility is a mandatory tool for your command-line work, and you need to learn how to use it for easy, safe, quick laptop-desktop synchronization. <a href="http://www.ibm.com/developerworks/aix/library/au-rsyncfamily/index.html?ca=dgr-lnxw07rsync-easySync&amp;S_TACT=105AGX59&amp;S_CMP=GRsitelnxw07" target="_blank" rel="noopener" class="mycode_url">This article</a> introduces rsync and mentions several related tools, all of which provide easy synchronization procedures.<br />
<br />
 <br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>What is rsync? <br />
<br />
The rsync utility is a file-transfer and synchronization program widely available for Linux</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HELP on FreeNX for Fedora Core 6]]></title>
			<link>https://www.linux-noob.com/forums/thread-745.html</link>
			<pubDate>Thu, 05 Feb 2009 15:38:25 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=3255">salemh</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-745.html</guid>
			<description><![CDATA[<br />
Hey everyone, First of all i am a total noob especially when it comes to Linux. So be patient.<br />
<br />
 <br />
<br />
I had the FreeNX installed on the linux box and i was able to remote desktop from a windows machine. UNTIL one day i needed to map a network drive on the windows machine from the Linux box (which ofcourse i didnt do myself) so the person that did that told me he had to turn off a couple of things among iptables. <br />
<br />
 <br />
<br />
Here is what i did from there on:<br />
<br />
1. uninstalled all nx software on the Linux machine.<br />
<br />
2. reinstalled NX using the yum command thing.<br />
<br />
3. installed NoMachine NX free edition for Linux from ----&gt; <a href="http://www.nomachine.com/download-package.php?Prod_Id=540" target="_blank" rel="noopener" class="mycode_url">http://www.nomachine.com/download-packag...rod_Id=540</a> <br />
<br />
4. messed around with the iptables in an effort to try to open port 22 (which i have no idea whether its open or closed)<br />
<br />
 <br />
<br />
The problem:<br />
<br />
when i try to connect to the linux box from windows client i get the following message <br />
<br />
"The NX service is not available or the NX access was disabled on host xxx.xxx.xxxx"<br />
<br />
 <br />
<br />
In the detail section: <br />
<br />
 <br />
<br />
NX&gt; 203 NXSSH running with pid: 5128<br />
<br />
NX&gt; 285 Enabling check on switch command<br />
<br />
NX&gt; 285 Enabling skip of SSH config files<br />
<br />
NX&gt; 285 Setting the preferred NX options<br />
<br />
NX&gt; 200 Connected to address: 9.26.156.235 on port: 22<br />
<br />
NX&gt; 202 Authenticating user: nx<br />
<br />
NX&gt; 208 Using auth method: publickey<br />
<br />
NX&gt; 204 Authentication failed.<br />
<br />
 <br />
<br />
I really need some help on this and if its not too much i would like to fix this problem without affecting the network drive mapped on the windows machine.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hey everyone, First of all i am a total noob especially when it comes to Linux. So be patient.<br />
<br />
 <br />
<br />
I had the FreeNX installed on the linux box and i was able to remote desktop from a windows machine. UNTIL one day i needed to map a network drive on the windows machine from the Linux box (which ofcourse i didnt do myself) so the person that did that told me he had to turn off a couple of things among iptables. <br />
<br />
 <br />
<br />
Here is what i did from there on:<br />
<br />
1. uninstalled all nx software on the Linux machine.<br />
<br />
2. reinstalled NX using the yum command thing.<br />
<br />
3. installed NoMachine NX free edition for Linux from ----&gt; <a href="http://www.nomachine.com/download-package.php?Prod_Id=540" target="_blank" rel="noopener" class="mycode_url">http://www.nomachine.com/download-packag...rod_Id=540</a> <br />
<br />
4. messed around with the iptables in an effort to try to open port 22 (which i have no idea whether its open or closed)<br />
<br />
 <br />
<br />
The problem:<br />
<br />
when i try to connect to the linux box from windows client i get the following message <br />
<br />
"The NX service is not available or the NX access was disabled on host xxx.xxx.xxxx"<br />
<br />
 <br />
<br />
In the detail section: <br />
<br />
 <br />
<br />
NX&gt; 203 NXSSH running with pid: 5128<br />
<br />
NX&gt; 285 Enabling check on switch command<br />
<br />
NX&gt; 285 Enabling skip of SSH config files<br />
<br />
NX&gt; 285 Setting the preferred NX options<br />
<br />
NX&gt; 200 Connected to address: 9.26.156.235 on port: 22<br />
<br />
NX&gt; 202 Authenticating user: nx<br />
<br />
NX&gt; 208 Using auth method: publickey<br />
<br />
NX&gt; 204 Authentication failed.<br />
<br />
 <br />
<br />
I really need some help on this and if its not too much i would like to fix this problem without affecting the network drive mapped on the windows machine.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A real noob need help on FreeNX]]></title>
			<link>https://www.linux-noob.com/forums/thread-965.html</link>
			<pubDate>Fri, 18 Apr 2008 08:58:02 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2838">Rizer</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-965.html</guid>
			<description><![CDATA[<br />
I am a newbie in linux and I am trying to use freenx to remote access my FC6 box (in LAN) in work place from my home windows box. My questions are:<br />
<br />
 <br />
<br />
1.To install free on linux, all I need to do is "yum install freenx"? Nothing else and not even downloading the package?<br />
<br />
 <br />
<br />
2.I cannot do port forwarding on the router in my work place, what can I do and what to fill in in the "Host" field in the NX client? I know both ext. and int. IP of the fedora box.<br />
<br />
 <br />
<br />
3.I did a "yum update", and it says "clearing bah bah bah/removing bah bah bah". After it is finished, it seems many things are removed, I can't even see the things in my panel.<br />
<br />
I rebooted it, and it seems to be fine. I did "yum install freenx" again and it says "nothing to do".<br />
<br />
I would like to ask is there is any data/program lose due to the "yum update"?<br />
<br />
 <br />
<br />
Thank you very much for any help. bow*<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I am a newbie in linux and I am trying to use freenx to remote access my FC6 box (in LAN) in work place from my home windows box. My questions are:<br />
<br />
 <br />
<br />
1.To install free on linux, all I need to do is "yum install freenx"? Nothing else and not even downloading the package?<br />
<br />
 <br />
<br />
2.I cannot do port forwarding on the router in my work place, what can I do and what to fill in in the "Host" field in the NX client? I know both ext. and int. IP of the fedora box.<br />
<br />
 <br />
<br />
3.I did a "yum update", and it says "clearing bah bah bah/removing bah bah bah". After it is finished, it seems many things are removed, I can't even see the things in my panel.<br />
<br />
I rebooted it, and it seems to be fine. I did "yum install freenx" again and it says "nothing to do".<br />
<br />
I would like to ask is there is any data/program lose due to the "yum update"?<br />
<br />
 <br />
<br />
Thank you very much for any help. bow*<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[no remote after reboot]]></title>
			<link>https://www.linux-noob.com/forums/thread-1068.html</link>
			<pubDate>Fri, 14 Dec 2007 09:29:20 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1624">metalx</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1068.html</guid>
			<description><![CDATA[<br />
I'm trying to setup a Fedora 8 pc to run as a headless server (5 clients max) more of a project than anything.  Problem is, when I reboot the computer it wont let me ssh or xdmcp into the pc until I physically goto the computer and login locally once, then everything works fine.  Really quite confused here.  Ports open of note are: tcp 22, tcp/udp 177,16001, 6000-6015, 35091.  I guess my question is whats preventing me from connecting? Is there a default refuse all connections on boot and to bypass it I have to log in to load up my own configuration?<br />
<br />
[img]&lt;___base_url___&gt;/uploads/emoticons/default_ph34r.png[/img]<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
I'm trying to setup a Fedora 8 pc to run as a headless server (5 clients max) more of a project than anything.  Problem is, when I reboot the computer it wont let me ssh or xdmcp into the pc until I physically goto the computer and login locally once, then everything works fine.  Really quite confused here.  Ports open of note are: tcp 22, tcp/udp 177,16001, 6000-6015, 35091.  I guess my question is whats preventing me from connecting? Is there a default refuse all connections on boot and to bypass it I have to log in to load up my own configuration?<br />
<br />
[img]&lt;___base_url___&gt;/uploads/emoticons/default_ph34r.png[/img]<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Cisco VPN]]></title>
			<link>https://www.linux-noob.com/forums/thread-1329.html</link>
			<pubDate>Sun, 10 Jun 2007 13:19:15 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1450">Varjagy</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1329.html</guid>
			<description><![CDATA[<br />
Well, I now have inet connection from school, but I can't get it to work under Ubuntu. To get access to inet I need to use a Cisco VPN dialer, but I just can't get it to work.<br />
<br />
 <br />
<br />
I have put a copy of the file <a href="http://student.hive.no/tombjoer/VPNdritt/vpnclient-linux-x86_64-4.8.00.0490-k9.tar.gz" target="_blank" rel="noopener" class="mycode_url">here</a>, so if anybody can help me here, I would be really thank full.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Well, I now have inet connection from school, but I can't get it to work under Ubuntu. To get access to inet I need to use a Cisco VPN dialer, but I just can't get it to work.<br />
<br />
 <br />
<br />
I have put a copy of the file <a href="http://student.hive.no/tombjoer/VPNdritt/vpnclient-linux-x86_64-4.8.00.0490-k9.tar.gz" target="_blank" rel="noopener" class="mycode_url">here</a>, so if anybody can help me here, I would be really thank full.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Windows php interface with linux box]]></title>
			<link>https://www.linux-noob.com/forums/thread-1336.html</link>
			<pubDate>Fri, 08 Jun 2007 08:10:47 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2086">rocket1356</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1336.html</guid>
			<description><![CDATA[<br />
Hi,<br />
<br />
 <br />
<br />
I want to built a windows php website---&gt; connect to the linux box---&gt;read all settings value from the .ini files-&gt;display it into the php website-&gt;user can then change the values-&gt;save the .ini file base on the user modification close the file--&gt;for back up reason of settings, also save the values into SQL database.<br />
<br />
 <br />
<br />
Anyone knows how to approach this problem? What do I need?<br />
<br />
 <br />
<br />
Thanks<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hi,<br />
<br />
 <br />
<br />
I want to built a windows php website---&gt; connect to the linux box---&gt;read all settings value from the .ini files-&gt;display it into the php website-&gt;user can then change the values-&gt;save the .ini file base on the user modification close the file--&gt;for back up reason of settings, also save the values into SQL database.<br />
<br />
 <br />
<br />
Anyone knows how to approach this problem? What do I need?<br />
<br />
 <br />
<br />
Thanks<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FreeNX on Fedora Core 6 - Noob Problem]]></title>
			<link>https://www.linux-noob.com/forums/thread-1393.html</link>
			<pubDate>Fri, 11 May 2007 20:18:02 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1998">jumney1</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1393.html</guid>
			<description><![CDATA[<br />
Hi all,<br />
<br />
 <br />
<br />
Yes I'm a noob when it comes to Linux so be gentle!! lol<br />
<br />
 <br />
<br />
 <br />
<br />
I've recently had a box setup running Fedora Core 6 and would like to access it with NX-Client for Windows.<br />
<br />
 <br />
<br />
 <br />
<br />
I've been onto the box using putty and run:  yum install nxserver  <br />
<br />
 <br />
<br />
 <br />
<br />
I'm not sure if everything went well or not, it asked me "Is this ok" 3 times and eventually finished.<br />
<br />
 <br />
<br />
 <br />
<br />
On windows I installed the NX-Client v1.5 and entered all the server details.<br />
<br />
 <br />
<br />
Initially I was getting "Cannot start local X server" or similar, but with setting compatibility thats been resolved.<br />
<br />
 <br />
<br />
Now I'm getting:<br />
<br />
 <br />
<br />
"Session Startup Failed"<br />
<br />
 <br />
<br />
And the log file this reports is attached to teh bottom of this post!!<br />
<br />
 <br />
<br />
I've entered the key from etc/nxserver/client.id_dsa.key into the client but looking through the log its something to do with session ID's or something?!?!<br />
<br />
 <br />
<br />
 <br />
<br />
Any help is MUCH appreciated!!<br />
<br />
 <br />
<br />
Thanks<br />
<br />
 <br />
<br />
 <br />
<br />
Error Log:<br />
<br />
 <br />
<br />
NX&gt; 203 NXSSH running with pid: 2596<br />
<br />
NX&gt; 285 Enabling check on switch command<br />
<br />
NX&gt; 285 Enabling skip of SSH config files<br />
<br />
NX&gt; 200 Connected to address: 217.172.xxx.xxx on port: 22<br />
<br />
NX&gt; 202 Authenticating user: nx<br />
<br />
NX&gt; 208 Using auth method: publickey<br />
<br />
HELLO NXSERVER - Version 1.5.0-50 OS (GPL)<br />
<br />
NX&gt; 105 hello NXCLIENT - Version 1.5.0<br />
<br />
NX&gt; 134 Accepted protocol: 1.5.0<br />
<br />
NX&gt; 105 SET SHELL_MODE SHELL<br />
<br />
NX&gt; 105 SET AUTH_MODE PASSWORD<br />
<br />
NX&gt; 105 login<br />
<br />
NX&gt; 101 User: root<br />
<br />
NX&gt; 102 Password: <br />
<br />
NX&gt; 103 Welcome to: VS-1300 user: root<br />
<br />
NX&gt; 105 listsession --user="root" --status="suspended,running" --geometry="1280x1024x32+render" --type="unix-gnome"<br />
<br />
NX&gt; 127 Sessions list of user 'root' for reconnect:<br />
<br />
 <br />
<br />
Display Type             Session ID                       Options  Depth Screen         Status      Session Name<br />
<br />
------- ---------------- -------------------------------- -------- ----- -------------- ----------- ------------------------------<br />
<br />
 <br />
<br />
 <br />
<br />
NX&gt; 148 Server capacity: not reached for user: root<br />
<br />
NX&gt; 105 startsession --session="Seedbox" --type="unix-gnome" --cache="8M" --images="32M" --link="adsl" --kbtype="pc102/gb" --nodelay="1" --encryption="1" --backingstore="never" --geometry="1280x994" --media="0" --agent_server="" --agent_user="" agent_password="******""  --screeninfo="1280x994x32+render" <br />
<br />
 <br />
<br />
NX&gt; 1000 NXNODE - Version 1.5.0-50 OS (GPL)<br />
<br />
NX&gt; 700 Session id: VS-1300-1000-0E5E20346A4B3643A510F1657BD2544E<br />
<br />
NX&gt; 705 Session display: 1000<br />
<br />
NX&gt; 703 Session type: unix-gnome<br />
<br />
NX&gt; 701 Proxy cookie: eb61959875d95bcb20b0dfd529c30c20<br />
<br />
NX&gt; 702 Proxy IP: 127.0.0.1<br />
<br />
NX&gt; 706 Agent cookie: eb61959875d95bcb20b0dfd529c30c20<br />
<br />
NX&gt; 704 Session cache: unix-gnome<br />
<br />
NX&gt; 707 SSL tunneling: 1<br />
<br />
NX&gt; 1009 Session status: starting<br />
<br />
NX&gt; 710 Session status: running<br />
<br />
NX&gt; 1002 Commit<br />
<br />
NX&gt; 105 /usr/bin/nxserver: line 1077: 12369 Terminated              sleep &#36;AGENT_STARTUP_TIMEOUT<br />
<br />
NX&gt; 1006 Session status: running<br />
<br />
NX&gt; 596 Session startup failed.<br />
<br />
NX&gt; 1004 Error: NX Agent exited with exit status 1.<br />
<br />
Can't open /var/lib/nxserver/db/running/sessionId{0E5E20346A4B3643A510F1657BD2544E}: No such file or directory.<br />
<br />
mv: cannot stat `/var/lib/nxserver/db/running/sessionId{0E5E20346A4B3643A510F1657BD2544E}': No such file or directory<br />
<br />
NX&gt; 1006 Session status: closed<br />
<br />
NX&gt; 1001 Bye.<br />
<br />
bye<br />
<br />
Killed by signal 15.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hi all,<br />
<br />
 <br />
<br />
Yes I'm a noob when it comes to Linux so be gentle!! lol<br />
<br />
 <br />
<br />
 <br />
<br />
I've recently had a box setup running Fedora Core 6 and would like to access it with NX-Client for Windows.<br />
<br />
 <br />
<br />
 <br />
<br />
I've been onto the box using putty and run:  yum install nxserver  <br />
<br />
 <br />
<br />
 <br />
<br />
I'm not sure if everything went well or not, it asked me "Is this ok" 3 times and eventually finished.<br />
<br />
 <br />
<br />
 <br />
<br />
On windows I installed the NX-Client v1.5 and entered all the server details.<br />
<br />
 <br />
<br />
Initially I was getting "Cannot start local X server" or similar, but with setting compatibility thats been resolved.<br />
<br />
 <br />
<br />
Now I'm getting:<br />
<br />
 <br />
<br />
"Session Startup Failed"<br />
<br />
 <br />
<br />
And the log file this reports is attached to teh bottom of this post!!<br />
<br />
 <br />
<br />
I've entered the key from etc/nxserver/client.id_dsa.key into the client but looking through the log its something to do with session ID's or something?!?!<br />
<br />
 <br />
<br />
 <br />
<br />
Any help is MUCH appreciated!!<br />
<br />
 <br />
<br />
Thanks<br />
<br />
 <br />
<br />
 <br />
<br />
Error Log:<br />
<br />
 <br />
<br />
NX&gt; 203 NXSSH running with pid: 2596<br />
<br />
NX&gt; 285 Enabling check on switch command<br />
<br />
NX&gt; 285 Enabling skip of SSH config files<br />
<br />
NX&gt; 200 Connected to address: 217.172.xxx.xxx on port: 22<br />
<br />
NX&gt; 202 Authenticating user: nx<br />
<br />
NX&gt; 208 Using auth method: publickey<br />
<br />
HELLO NXSERVER - Version 1.5.0-50 OS (GPL)<br />
<br />
NX&gt; 105 hello NXCLIENT - Version 1.5.0<br />
<br />
NX&gt; 134 Accepted protocol: 1.5.0<br />
<br />
NX&gt; 105 SET SHELL_MODE SHELL<br />
<br />
NX&gt; 105 SET AUTH_MODE PASSWORD<br />
<br />
NX&gt; 105 login<br />
<br />
NX&gt; 101 User: root<br />
<br />
NX&gt; 102 Password: <br />
<br />
NX&gt; 103 Welcome to: VS-1300 user: root<br />
<br />
NX&gt; 105 listsession --user="root" --status="suspended,running" --geometry="1280x1024x32+render" --type="unix-gnome"<br />
<br />
NX&gt; 127 Sessions list of user 'root' for reconnect:<br />
<br />
 <br />
<br />
Display Type             Session ID                       Options  Depth Screen         Status      Session Name<br />
<br />
------- ---------------- -------------------------------- -------- ----- -------------- ----------- ------------------------------<br />
<br />
 <br />
<br />
 <br />
<br />
NX&gt; 148 Server capacity: not reached for user: root<br />
<br />
NX&gt; 105 startsession --session="Seedbox" --type="unix-gnome" --cache="8M" --images="32M" --link="adsl" --kbtype="pc102/gb" --nodelay="1" --encryption="1" --backingstore="never" --geometry="1280x994" --media="0" --agent_server="" --agent_user="" agent_password="******""  --screeninfo="1280x994x32+render" <br />
<br />
 <br />
<br />
NX&gt; 1000 NXNODE - Version 1.5.0-50 OS (GPL)<br />
<br />
NX&gt; 700 Session id: VS-1300-1000-0E5E20346A4B3643A510F1657BD2544E<br />
<br />
NX&gt; 705 Session display: 1000<br />
<br />
NX&gt; 703 Session type: unix-gnome<br />
<br />
NX&gt; 701 Proxy cookie: eb61959875d95bcb20b0dfd529c30c20<br />
<br />
NX&gt; 702 Proxy IP: 127.0.0.1<br />
<br />
NX&gt; 706 Agent cookie: eb61959875d95bcb20b0dfd529c30c20<br />
<br />
NX&gt; 704 Session cache: unix-gnome<br />
<br />
NX&gt; 707 SSL tunneling: 1<br />
<br />
NX&gt; 1009 Session status: starting<br />
<br />
NX&gt; 710 Session status: running<br />
<br />
NX&gt; 1002 Commit<br />
<br />
NX&gt; 105 /usr/bin/nxserver: line 1077: 12369 Terminated              sleep &#36;AGENT_STARTUP_TIMEOUT<br />
<br />
NX&gt; 1006 Session status: running<br />
<br />
NX&gt; 596 Session startup failed.<br />
<br />
NX&gt; 1004 Error: NX Agent exited with exit status 1.<br />
<br />
Can't open /var/lib/nxserver/db/running/sessionId{0E5E20346A4B3643A510F1657BD2544E}: No such file or directory.<br />
<br />
mv: cannot stat `/var/lib/nxserver/db/running/sessionId{0E5E20346A4B3643A510F1657BD2544E}': No such file or directory<br />
<br />
NX&gt; 1006 Session status: closed<br />
<br />
NX&gt; 1001 Bye.<br />
<br />
bye<br />
<br />
Killed by signal 15.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how i got rsync working as a daemon on port 873]]></title>
			<link>https://www.linux-noob.com/forums/thread-1551.html</link>
			<pubDate>Sun, 11 Mar 2007 19:06:27 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1398">DustyBin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1551.html</guid>
			<description><![CDATA[<br />
install rsync (ie. on debian use apt-get install rsync) on the host machine and client machine<br />
<br />
 <br />
<br />
HOST MACHINE<br />
<br />
 <br />
<br />
cp /usr/share/doc/rsync/examples/rsyncd.conf /etc/rsyncd.conf<br />
<br />
 <br />
<br />
edit /etc/rsyncd.conf to your requirements<br />
<br />
the only bit i changed was the path of the folder i wanted to rsync.<br />
<br />
 <br />
<br />
edit /etc/default/rsync and change<br />
<br />
RSYNC_ENABLE=false to RSYNC_ENABLE=true<br />
<br />
 <br />
<br />
/etc/init.d/rsync start<br />
<br />
 <br />
<br />
do a netstat -l and you should now see that rsync is listening on port 873<br />
<br />
 <br />
<br />
CLIENT MACHINE<br />
<br />
 <br />
<br />
to activate rsync<br />
<br />
rsync -av host::ftp /client/rsync'd/folder<br />
<br />
 <br />
<br />
ftp is the name of the default module in /etc/rsyncd.conf you can change this to anything you want in the config or add new modules for different folders to rsync. you might get error messages if you try and rsync a folder what shares different file systems.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
install rsync (ie. on debian use apt-get install rsync) on the host machine and client machine<br />
<br />
 <br />
<br />
HOST MACHINE<br />
<br />
 <br />
<br />
cp /usr/share/doc/rsync/examples/rsyncd.conf /etc/rsyncd.conf<br />
<br />
 <br />
<br />
edit /etc/rsyncd.conf to your requirements<br />
<br />
the only bit i changed was the path of the folder i wanted to rsync.<br />
<br />
 <br />
<br />
edit /etc/default/rsync and change<br />
<br />
RSYNC_ENABLE=false to RSYNC_ENABLE=true<br />
<br />
 <br />
<br />
/etc/init.d/rsync start<br />
<br />
 <br />
<br />
do a netstat -l and you should now see that rsync is listening on port 873<br />
<br />
 <br />
<br />
CLIENT MACHINE<br />
<br />
 <br />
<br />
to activate rsync<br />
<br />
rsync -av host::ftp /client/rsync'd/folder<br />
<br />
 <br />
<br />
ftp is the name of the default module in /etc/rsyncd.conf you can change this to anything you want in the config or add new modules for different folders to rsync. you might get error messages if you try and rsync a folder what shares different file systems.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how do I scp a file]]></title>
			<link>https://www.linux-noob.com/forums/thread-1577.html</link>
			<pubDate>Tue, 27 Feb 2007 14:52:21 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2">anyweb</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1577.html</guid>
			<description><![CDATA[<br />
first of all what is scp ? <br />
<br />
 <br />
<br />
here's a quote direct from the top of the command<br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>man scp</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>SCP(1)                    BSD General Commands Manual                   SCP(1) <br />
<br />
NAME<br />
<br />
     scp - secure copy (remote file copy program)<br />
<br />
 <br />
<br />
SYNOPSIS<br />
<br />
     scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]<br />
<br />
         [-l limit] [-o ssh_option] [-P port] [-S program]<br />
<br />
         [[user@]host1:]file1 [...] [[user@]host2:]file2</blockquote>
 <br />
<br />
it's the same as cp (copy) except secure as you are doing it over an ssh connection. When you start an scp session to a target box, you will be prompted for the users ssh password, this is normal and signifys to you that this is a secure transfer.<br />
<br />
 <br />
<br />
here's the usage<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>scp -prP port file user@ip:./</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
where port=the ssh listening port on the target linux box <br />
<br />
where file=the file you want to send to the target<br />
<br />
where user=the username you ssh in as<br />
<br />
where ip=the ip address of the target box<br />
<br />
where :./=the home directory of the user you are ssh'ing as<br />
<br />
 <br />
<br />
and<br />
<br />
 <br />
<br />
<span style="font-weight: bold;" class="mycode_b">-p =Preserves modification times, access times, and modes from the original file.</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">-P=capital P for port as -p is already taken from above.</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">-r=recursively copy entire directories.</span><br />
<br />
 <br />
<br />
so a real example of the above would be like<br />
<br />
 <br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>[anyweb@localhost ~]&#36; scp -prP 1234 SC_160_P_ESD1.zip anyweb@213.64.12.34:./anyweb@213.64.12.34's password: <br />
<br />
SC_160_P_ESD1.zip                             100%   29MB 255.2KB/s   01:58</blockquote>
 <br />
<br />
thanks to P38 and jY for the advice.<br />
<br />
 <br />
<br />
cheers<br />
<br />
anyweb<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
first of all what is scp ? <br />
<br />
 <br />
<br />
here's a quote direct from the top of the command<br />
<br />
 <br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>man scp</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>SCP(1)                    BSD General Commands Manual                   SCP(1) <br />
<br />
NAME<br />
<br />
     scp - secure copy (remote file copy program)<br />
<br />
 <br />
<br />
SYNOPSIS<br />
<br />
     scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]<br />
<br />
         [-l limit] [-o ssh_option] [-P port] [-S program]<br />
<br />
         [[user@]host1:]file1 [...] [[user@]host2:]file2</blockquote>
 <br />
<br />
it's the same as cp (copy) except secure as you are doing it over an ssh connection. When you start an scp session to a target box, you will be prompted for the users ssh password, this is normal and signifys to you that this is a secure transfer.<br />
<br />
 <br />
<br />
here's the usage<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>scp -prP port file user@ip:./</code></div></div><br />
<br />
<br />
<br />
 <br />
<br />
where port=the ssh listening port on the target linux box <br />
<br />
where file=the file you want to send to the target<br />
<br />
where user=the username you ssh in as<br />
<br />
where ip=the ip address of the target box<br />
<br />
where :./=the home directory of the user you are ssh'ing as<br />
<br />
 <br />
<br />
and<br />
<br />
 <br />
<br />
<span style="font-weight: bold;" class="mycode_b">-p =Preserves modification times, access times, and modes from the original file.</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">-P=capital P for port as -p is already taken from above.</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">-r=recursively copy entire directories.</span><br />
<br />
 <br />
<br />
so a real example of the above would be like<br />
<br />
 <br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>[anyweb@localhost ~]&#36; scp -prP 1234 SC_160_P_ESD1.zip anyweb@213.64.12.34:./anyweb@213.64.12.34's password: <br />
<br />
SC_160_P_ESD1.zip                             100%   29MB 255.2KB/s   01:58</blockquote>
 <br />
<br />
thanks to P38 and jY for the advice.<br />
<br />
 <br />
<br />
cheers<br />
<br />
anyweb<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[About Remote installation]]></title>
			<link>https://www.linux-noob.com/forums/thread-1629.html</link>
			<pubDate>Tue, 16 Jan 2007 17:47:34 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1562">satimis</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1629.html</guid>
			<description><![CDATA[<br />
Hi folks,<br />
<br />
 <br />
<br />
OS: Slackware or CentOS<br />
<br />
 <br />
<br />
I'm prepared to build an experimental server which includes Apache, PHP, MySQL, Proxy, Sendmail, Firewall, Webmail, etc.  No graphic will be run on the server.  In order to facilitate searching Internet for advice a workstation shall be connected via router to remote install the packages.  The IP for the server will be 192.168.0.10 and for the workstation 192.168.0.11.  Basic installation will be made by running the DVD installer download from respective website.  Additional to the packages for running the server what other packages are needed for remote installation and for accessing the server to configure all relevant services.  Please advise.  TIA<br />
<br />
 <br />
<br />
B.R<br />
<br />
satimis<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Hi folks,<br />
<br />
 <br />
<br />
OS: Slackware or CentOS<br />
<br />
 <br />
<br />
I'm prepared to build an experimental server which includes Apache, PHP, MySQL, Proxy, Sendmail, Firewall, Webmail, etc.  No graphic will be run on the server.  In order to facilitate searching Internet for advice a workstation shall be connected via router to remote install the packages.  The IP for the server will be 192.168.0.10 and for the workstation 192.168.0.11.  Basic installation will be made by running the DVD installer download from respective website.  Additional to the packages for running the server what other packages are needed for remote installation and for accessing the server to configure all relevant services.  Please advise.  TIA<br />
<br />
 <br />
<br />
B.R<br />
<br />
satimis<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Fedora 6 VNC server woes]]></title>
			<link>https://www.linux-noob.com/forums/thread-1638.html</link>
			<pubDate>Thu, 11 Jan 2007 03:52:18 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=1661">yavuzkara</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1638.html</guid>
			<description><![CDATA[<br />
If anybody can help me with this situation:<br />
<br />
 <br />
<br />
I recently downloaded fedora core 6 and installed and did full updates to the system.<br />
<br />
I usually use ultravnc via windows xp but when i tried to configure the default vnc that comes with fedora 6 <br />
<br />
i couldnt get it to work. In the terminal i tyoe in vncserver and it prompts me for a password twice. after confirmation i try<br />
<br />
to connect to the linuz box via xp but i get only a terminal window upon conerction. I would like to see the Monitor screen <br />
<br />
however i see realy basic terminal prompt<br />
<br />
this the first time Using Linux i already looked in the forum topic,ut none of the posts helped me.<br />
<br />
I triewd installing tightvnc and realvnc but neither would install due to a dependency error, missing xfree86. <br />
<br />
Please help me set this up so i can remotel  login to my linux box.<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
If anybody can help me with this situation:<br />
<br />
 <br />
<br />
I recently downloaded fedora core 6 and installed and did full updates to the system.<br />
<br />
I usually use ultravnc via windows xp but when i tried to configure the default vnc that comes with fedora 6 <br />
<br />
i couldnt get it to work. In the terminal i tyoe in vncserver and it prompts me for a password twice. after confirmation i try<br />
<br />
to connect to the linuz box via xp but i get only a terminal window upon conerction. I would like to see the Monitor screen <br />
<br />
however i see realy basic terminal prompt<br />
<br />
this the first time Using Linux i already looked in the forum topic,ut none of the posts helped me.<br />
<br />
I triewd installing tightvnc and realvnc but neither would install due to a dependency error, missing xfree86. <br />
<br />
Please help me set this up so i can remotel  login to my linux box.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Key-Based SSH Logins With PuTTY]]></title>
			<link>https://www.linux-noob.com/forums/thread-1695.html</link>
			<pubDate>Mon, 11 Dec 2006 07:20:17 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linux-noob.com/forums/member.php?action=profile&uid=2">anyweb</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linux-noob.com/forums/thread-1695.html</guid>
			<description><![CDATA[<br />
<a href="http://www.howtoforge.com/ssh_key_based_logins_putty" target="_blank" rel="noopener" class="mycode_url">[/url]<a href="http://www.howtoforge.com/ssh_key_based_logins_putty" target="_blank" rel="noopener" class="mycode_url"></a><a href="http://www.howtoforge.com/ssh_key_based_logins_putty" target="_blank" rel="noopener" class="mycode_url"></a>[url=http://www.howtoforge.com/ssh_key_based_logins_putty]http://www.howtoforge.com/ssh_key_based_logins_putty</a><br />
<br />
 <br />
<br />
interesting arcticle covering key-based ssh logins with putty<br />
<br />
 <br />
<br />
cheers<br />
<br />
anyweb<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
<a href="http://www.howtoforge.com/ssh_key_based_logins_putty" target="_blank" rel="noopener" class="mycode_url">[/url]<a href="http://www.howtoforge.com/ssh_key_based_logins_putty" target="_blank" rel="noopener" class="mycode_url"></a><a href="http://www.howtoforge.com/ssh_key_based_logins_putty" target="_blank" rel="noopener" class="mycode_url"></a>[url=http://www.howtoforge.com/ssh_key_based_logins_putty]http://www.howtoforge.com/ssh_key_based_logins_putty</a><br />
<br />
 <br />
<br />
interesting arcticle covering key-based ssh logins with putty<br />
<br />
 <br />
<br />
cheers<br />
<br />
anyweb<br />
<br />
]]></content:encoded>
		</item>
	</channel>
</rss>