<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://test.amule.szerverem.hu/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Frankk</id>
		<title>AMule Project FAQ - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Frankk"/>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Special:Contributions/Frankk"/>
		<updated>2026-04-05T02:42:31Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2005-10-25T12:09:47Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X$theScreen'' is there in case the server crashes or your mother/wife/husband removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''#!/bin/sh''&amp;lt;br&amp;gt;&lt;br /&gt;
''#''&amp;lt;br&amp;gt;&lt;br /&gt;
''# Startup/Stop script for vncserver.''&amp;lt;br&amp;gt;&lt;br /&gt;
''#''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''#Here, the choosen user to run amule''&amp;lt;br&amp;gt;&lt;br /&gt;
''theUser=choosenuser''&amp;lt;br&amp;gt;&lt;br /&gt;
''#And here, the choosen screen to run the vncserver''&amp;lt;br&amp;gt;&lt;br /&gt;
''theScreen=1''&lt;br /&gt;
&lt;br /&gt;
''case &amp;quot;$1&amp;quot; in''&lt;br /&gt;
&lt;br /&gt;
'' 'start')''&amp;lt;br&amp;gt;&lt;br /&gt;
''if [ -f /tmp/.X11-unix/X$theScreen ]; then rm /tmp/.X11-unix/X$theScreen; fi''&amp;lt;br&amp;gt;&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;''&amp;lt;br&amp;gt;&lt;br /&gt;
'';;''&lt;br /&gt;
&lt;br /&gt;
'' 'stop')''&amp;lt;br&amp;gt;&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;/usr/bin/vncserver -kill :$theScreen&amp;quot;''&amp;lt;br&amp;gt;&lt;br /&gt;
'';;''&lt;br /&gt;
&lt;br /&gt;
''*)''&amp;lt;br&amp;gt;&lt;br /&gt;
''echo &amp;quot;Usage: /etc/rc.d/rc.vnc { start | stop }&amp;quot;''&amp;lt;br&amp;gt;&lt;br /&gt;
'';;''&lt;br /&gt;
&lt;br /&gt;
''esac''&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''# Start VNC server''&amp;lt;br&amp;gt;&lt;br /&gt;
''if [ -x /etc/rc.d/rc.vnc ]; then''&amp;lt;br&amp;gt;&lt;br /&gt;
''. /etc/rc.d/rc.vnc start''&amp;lt;br&amp;gt;&lt;br /&gt;
''fi''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''# Shut down the VNC server''&amp;lt;br&amp;gt;&lt;br /&gt;
''if [ -x /etc/rc.d/rc.vnc ]; then''&amp;lt;br&amp;gt;&lt;br /&gt;
''/etc/rc.d/rc.vnc stop''&amp;lt;br&amp;gt;&lt;br /&gt;
''fi''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''amule &amp;amp;''&lt;br /&gt;
&lt;br /&gt;
== On [http://www.debian.org Debian] Woody ==&lt;br /&gt;
&lt;br /&gt;
Run (as root):&lt;br /&gt;
&lt;br /&gt;
''apt-get install vncserver xvncviewer flwm''&lt;br /&gt;
&lt;br /&gt;
There is no support for ''~/.vnc/xstartup'' so, instead, use ''$vncStartup'' in ''.vncrc'' to determine a xstartup-script (this replaces your ''~/.xsession'' file).&lt;br /&gt;
&lt;br /&gt;
For more information, read ''man vnc.conf''&lt;br /&gt;
&lt;br /&gt;
For example, in a Woody/Sarge/Sid:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user who is going to run [[aMule]]&amp;lt;br&amp;gt;&lt;br /&gt;
''mkdir ~/.vnc/''&amp;lt;br&amp;gt;&lt;br /&gt;
Create the ''~/.vnc/xstartup'' file, with the next content&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''/usr/bin/flwm &amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
''/usr/bin/amule &amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
''/usr/bin/amule &amp;amp;''&lt;br /&gt;
&lt;br /&gt;
With sone versions of [http://www.redstonesoftware.com/vnc.html vncserver], it's necessary to launch at least twice the [[aMule]]. The [http://flwm.sourceforge.net flwm] is an optional window manager.&lt;br /&gt;
&lt;br /&gt;
Create the file ''~/.vncrc'' with the next content:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user and run ''xvncviewer :1'' to create the password file and debug possible probelms (the logs are under the ''~/.vnc/'' dir&lt;br /&gt;
&lt;br /&gt;
''$vncStartup = &amp;quot;/home/amule/.vnc/xstartup&amp;quot;;''&amp;lt;br&amp;gt;&lt;br /&gt;
''$geometry =&amp;quot;800x600&amp;quot;;''&lt;br /&gt;
&lt;br /&gt;
(replace ''/home/amule'' for the home of the user running [http://www.redstonesoftware.com/vnc.html VNC])&lt;br /&gt;
&lt;br /&gt;
To show the [[aMule]] window, run:&lt;br /&gt;
''xvncviewer localhost:1''&lt;br /&gt;
&lt;br /&gt;
If you want to autostart a [http://www.redstonesoftware.com/vnc.html VNC] session on system startup, you can put a line in ''/etc/init.d/bootmisc.sh'' like this:&lt;br /&gt;
&lt;br /&gt;
''su '''username''' -c vncserver''&lt;br /&gt;
&lt;br /&gt;
Replace '''username'''  with the name of the user that you want to launch vnc. (Added by '''ghent''')&lt;br /&gt;
&lt;br /&gt;
== To start [[aMuleWeb]] also at startup: ==&lt;br /&gt;
&lt;br /&gt;
This is probably the most unelegant way to do this, but it seems to work.&lt;br /&gt;
&lt;br /&gt;
The problem is that you have to supply user input when starting [[aMuleWeb]] (the password).&lt;br /&gt;
&lt;br /&gt;
You can circumvent this with supplying a password with the ''-pw'' option: ''amuleweb -pw &amp;quot;&amp;quot;'' (this is for no password, you have to remove the [http://www.ietf.org/rfc/rfc1321.txt MD5 sum] from the ''ECPassword'' entry in your ''~/.eMule'' file for this to work).&lt;br /&gt;
&lt;br /&gt;
Now [[aMuleWeb]] starts without any user input, but unfortunately it wouldn't work when we would just add it to the xstartup-file, because [[aMule]] needs a few seconds more to start up.&lt;br /&gt;
&lt;br /&gt;
Therefor we have to start [[aMuleWeb]] a few seconds after [[aMule]].&lt;br /&gt;
&lt;br /&gt;
To achieve this, we add a line similar to this one:&lt;br /&gt;
&lt;br /&gt;
''/bin/sh /home/aMule/amuleweb-start.sh &amp;amp;''&lt;br /&gt;
&lt;br /&gt;
to the xstartup-file.&lt;br /&gt;
&lt;br /&gt;
And in the home-directory, we create a file called ''amuleweb-start.sh'', with the following content:&lt;br /&gt;
&lt;br /&gt;
  #! /bin/sh&lt;br /&gt;
  sleep 30;&lt;br /&gt;
  /usr/bin/amuleweb -pw &amp;quot;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
That's all.&lt;br /&gt;
&lt;br /&gt;
Like I said, probably extremely amateurish, but it should work...&lt;br /&gt;
&lt;br /&gt;
== [http://www.mandrake.com Mandrake] 10.0 ==&lt;br /&gt;
&lt;br /&gt;
The script from [[User:Frankk|Frankk]] is the one I use, but you can customize the size of the [http://www.redstonesoftware.com/vnc.html VNC] server :&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen -geometry 1240x980&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
or whatever value.&lt;br /&gt;
&lt;br /&gt;
Personaly, I use as xstartup script ([http://www.icewm.org iceWM] is really nice and so CPU-cheap) :&lt;br /&gt;
&lt;br /&gt;
''#!/bin/sh''&amp;lt;br&amp;gt;&lt;br /&gt;
''starticewm&amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
''amule''&lt;br /&gt;
&lt;br /&gt;
To start [http://www.redstonesoftware.com/vnc.html VNC] at startup, I called the previous script ''/etc/init.d/amulevnc'' and chmod to 744 (''chmod 744 /etc/init.d/amulevnc'' as root).&amp;lt;br&amp;gt;&lt;br /&gt;
Instead of modifying ''/etc/rc.d/rc.vnc'', I added links in the corresponding ''/etc/rc$RUNLEVEL.d'' directories.&amp;lt;br&amp;gt;&lt;br /&gt;
It's quite simple to understand how it works:&amp;lt;br&amp;gt;&lt;br /&gt;
Each directory represents a runlevel, and contains links to the scripts from ''/etc/init.d'' which need to be run/stop.&amp;lt;br&amp;gt;&lt;br /&gt;
For instance, the link ''/etc/rc5.d/S55sshd'' to ''/etc/init.d/sshd'' will start ''sshd'' on runlevel 5,&lt;br /&gt;
whereas ''/etc/rc6.d/K25sshd'' linked to ''/etc/init.d/sshd'' will stop it in runlevel 6.&amp;lt;br&amp;gt;&lt;br /&gt;
You get it? Links starting with 'KXX' will stop a service, and those starting with 'SXX' will start them. The number will define the order.&lt;br /&gt;
&lt;br /&gt;
So to run [http://www.redstonesoftware.com/vnc.html VNC] on startup, just do (as root :-) )&lt;br /&gt;
''re&amp;gt;ln -s /etc/init.d/amulevnc /etc/rc5.d/S99amule''&lt;br /&gt;
''ln -s /etc/init.d/amulevnc /etc/rc6.d/K02amule''&lt;br /&gt;
and you're all set!&lt;br /&gt;
&lt;br /&gt;
PS: This method should work on systems other than [http://www.mandrake.com Mandrake], give it a test.&lt;br /&gt;
&lt;br /&gt;
Questions &amp;amp; comments: ''air_1 '''at''' libertysurtf.fr''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.gentoo.org Gentoo] ==&lt;br /&gt;
&lt;br /&gt;
For [http://www.gentoo.org Gentoo]'ers follow these steps:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;ATENTION: THE BOOT PROCESS NOW WORKS&amp;lt;/font&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
=== Install [http://www.realvnc.com VNC] ===&lt;br /&gt;
&lt;br /&gt;
This is a how to for a server with no [http://www.x.org X] window manager at all. I only run web and mail services, and of course, [[aMule]]. Adapt to your situation.&lt;br /&gt;
I use [http://www.tightvnc.com TightVNC], but should also work with other [http://www.realvnc.com VNC]'s.&lt;br /&gt;
&lt;br /&gt;
 # emerge tightvnc&lt;br /&gt;
&lt;br /&gt;
=== Configuring [http://www.realvnc.com VNC] ===&lt;br /&gt;
&lt;br /&gt;
==== Server Config ====&lt;br /&gt;
&lt;br /&gt;
To configure the [http://www.realvnc.com VNC] server, execute:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vncserver :0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm using '' ''':0''' ''because there is no window manager running, so no need to use'' ''':1''' '', plus, it will be simpler to connect to it like this, simply:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vncviewer &amp;lt;host&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You'll be asked to answer some questions, such as password, answer accordingly. After you can kill it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vncserver -kill :0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Programs to Start ====&lt;br /&gt;
&lt;br /&gt;
Now let's config what should be started with this [http://www.realvnc.com VNC] session. Edit ''~/.vnc/xstartup'':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vi ~/.vnc/xstartup&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should see something like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
PATH=&amp;quot;$PATH:/usr/bin&amp;quot;&lt;br /&gt;
xrdb $HOME/.Xresources&lt;br /&gt;
xsetroot -solid grey&lt;br /&gt;
xterm -geometry 80x24+10+10 -ls -title &amp;quot;$VNCDESKTOP Desktop&amp;quot; &amp;amp;&lt;br /&gt;
exec wmaker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.x.org xterm] is a console, and [http://www.x.org twm] is the window manager. I now use [http://www.windowmaker.org/ WindowMaker], and don't want no terminal, just [[aMule]] so, it's like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
PATH=&amp;quot;$PATH:/usr/bin&amp;quot;&lt;br /&gt;
xrdb $HOME/.Xresources&lt;br /&gt;
xsetroot -solid grey&lt;br /&gt;
#xterm -geometry 80x24+10+10 -ls -title &amp;quot;$VNCDESKTOP Desktop&amp;quot; &amp;amp;&lt;br /&gt;
amule &amp;amp;&lt;br /&gt;
exec wmaker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Starting [http://www.realvnc.com VNC] at boot ===&lt;br /&gt;
&lt;br /&gt;
Since I won't be starting no Window Manager at boot, but still want [[aMule]] started with the user interface(you could just run [[aMuled]]), I'll need an init script:&lt;br /&gt;
&lt;br /&gt;
 # vi /etc/init.d/vncserver&lt;br /&gt;
&lt;br /&gt;
Make it look like:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/sbin/runscript&lt;br /&gt;
# Copyright 1999-2005 Gentoo Foundation&lt;br /&gt;
# Distributed under the terms of the GNU General Public License v2&lt;br /&gt;
# $Header: $&lt;br /&gt;
&lt;br /&gt;
depend() {&lt;br /&gt;
	need net&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
checkconfig() {&lt;br /&gt;
        ebegin &amp;quot;Load config&amp;quot;&lt;br /&gt;
	PATH=&amp;quot;$PATH:/usr/X11R6/bin/&amp;quot;&lt;br /&gt;
	&lt;br /&gt;
	# The Username:Group that will run VNC&lt;br /&gt;
	export USER=&amp;quot;vampas&amp;quot;&lt;br /&gt;
	#${RUNAS}&lt;br /&gt;
&lt;br /&gt;
	# The display that VNC will use&lt;br /&gt;
	DISPLAY=&amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	# Color depth (between 8 and 32)&lt;br /&gt;
	DEPTH=&amp;quot;16&amp;quot;&lt;br /&gt;
	&lt;br /&gt;
	# The Desktop geometry to use.&lt;br /&gt;
	#GEOMETRY=&amp;quot;&amp;lt;WIDTH&amp;gt;x&amp;lt;HEIGHT&amp;gt;&amp;quot;&lt;br /&gt;
	#GEOMETRY=&amp;quot;800x600&amp;quot;&lt;br /&gt;
	GEOMETRY=&amp;quot;1024x780&amp;quot;&lt;br /&gt;
	#GEOMETRY=&amp;quot;1280x1024&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	# The name that the VNC Desktop will have.&lt;br /&gt;
	NAME=&amp;quot;aMule&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	OPTIONS=&amp;quot;-name ${NAME} -depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}&amp;quot;&lt;br /&gt;
	eend $? &amp;quot;Config not Loaded&amp;quot;&lt;br /&gt;
} &lt;br /&gt;
	&lt;br /&gt;
start() {&lt;br /&gt;
        checkconfig&lt;br /&gt;
	ebegin &amp;quot;Starting vncserver for user '${USER}' on localhost:${DISPLAY}&amp;quot;&lt;br /&gt;
	su ${USER} -c &amp;quot;/usr/bin/vncserver ${OPTIONS}&amp;quot;&lt;br /&gt;
	eend $?&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
stop() {&lt;br /&gt;
	checkconfig&lt;br /&gt;
	ebegin &amp;quot;Stoping vncserver for user '${USER}' on localhost:${DISPLAY}&amp;quot;&lt;br /&gt;
	su ${USER} -c &amp;quot;/usr/bin/vncserver -kill :${DISPLAY}&amp;quot;&lt;br /&gt;
	eend $?&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
restart() {&lt;br /&gt;
	svc_stop&lt;br /&gt;
	sleep 3&lt;br /&gt;
	svc_start&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make it executable:&lt;br /&gt;
&lt;br /&gt;
 # chmod +x /etc/init.d/vncserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now add it to boot:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 # rc-update add vncserver default&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And you should be ready to go, if not ''&amp;lt;ufs AT sapo DOT pt&amp;gt;'' &lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2005-10-25T12:09:05Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X$theScreen'' is there in case the server crashes or your mother/wife/husband removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''#!/bin/sh''&amp;lt;br&amp;gt;&lt;br /&gt;
''#''&amp;lt;br&amp;gt;&lt;br /&gt;
''# Startup/Stop script for vncserver.''&amp;lt;br&amp;gt;&lt;br /&gt;
''#''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''#Here, the choosen user to run amule''&amp;lt;br&amp;gt;&lt;br /&gt;
''theUser=choosenuser''&amp;lt;br&amp;gt;&lt;br /&gt;
''#And here, the choosen screen to run the vncserver''&amp;lt;br&amp;gt;&lt;br /&gt;
''theScreen=1''&lt;br /&gt;
&lt;br /&gt;
''case &amp;quot;$1&amp;quot; in''&lt;br /&gt;
&lt;br /&gt;
'' 'start')''&amp;lt;br&amp;gt;&lt;br /&gt;
''if [ -f /tmp/.X11-unix/X$theScreen ]; then rm /tmp/.X11-unix/X$theScreen; fi''&amp;lt;br&amp;gt;&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;''&amp;lt;br&amp;gt;&lt;br /&gt;
'';;''&lt;br /&gt;
&lt;br /&gt;
'' 'stop')''&amp;lt;br&amp;gt;&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :$theScreen&amp;quot;''&amp;lt;br&amp;gt;&lt;br /&gt;
'';;''&lt;br /&gt;
&lt;br /&gt;
''*)''&amp;lt;br&amp;gt;&lt;br /&gt;
''echo &amp;quot;Usage: /etc/rc.d/rc.vnc { start | stop }&amp;quot;''&amp;lt;br&amp;gt;&lt;br /&gt;
'';;''&lt;br /&gt;
&lt;br /&gt;
''esac''&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''# Start VNC server''&amp;lt;br&amp;gt;&lt;br /&gt;
''if [ -x /etc/rc.d/rc.vnc ]; then''&amp;lt;br&amp;gt;&lt;br /&gt;
''. /etc/rc.d/rc.vnc start''&amp;lt;br&amp;gt;&lt;br /&gt;
''fi''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''# Shut down the VNC server''&amp;lt;br&amp;gt;&lt;br /&gt;
''if [ -x /etc/rc.d/rc.vnc ]; then''&amp;lt;br&amp;gt;&lt;br /&gt;
''/etc/rc.d/rc.vnc stop''&amp;lt;br&amp;gt;&lt;br /&gt;
''fi''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''amule &amp;amp;''&lt;br /&gt;
&lt;br /&gt;
== On [http://www.debian.org Debian] Woody ==&lt;br /&gt;
&lt;br /&gt;
Run (as root):&lt;br /&gt;
&lt;br /&gt;
''apt-get install vncserver xvncviewer flwm''&lt;br /&gt;
&lt;br /&gt;
There is no support for ''~/.vnc/xstartup'' so, instead, use ''$vncStartup'' in ''.vncrc'' to determine a xstartup-script (this replaces your ''~/.xsession'' file).&lt;br /&gt;
&lt;br /&gt;
For more information, read ''man vnc.conf''&lt;br /&gt;
&lt;br /&gt;
For example, in a Woody/Sarge/Sid:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user who is going to run [[aMule]]&amp;lt;br&amp;gt;&lt;br /&gt;
''mkdir ~/.vnc/''&amp;lt;br&amp;gt;&lt;br /&gt;
Create the ''~/.vnc/xstartup'' file, with the next content&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''/usr/bin/flwm &amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
''/usr/bin/amule &amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
''/usr/bin/amule &amp;amp;''&lt;br /&gt;
&lt;br /&gt;
With sone versions of [http://www.redstonesoftware.com/vnc.html vncserver], it's necessary to launch at least twice the [[aMule]]. The [http://flwm.sourceforge.net flwm] is an optional window manager.&lt;br /&gt;
&lt;br /&gt;
Create the file ''~/.vncrc'' with the next content:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user and run ''xvncviewer :1'' to create the password file and debug possible probelms (the logs are under the ''~/.vnc/'' dir&lt;br /&gt;
&lt;br /&gt;
''$vncStartup = &amp;quot;/home/amule/.vnc/xstartup&amp;quot;;''&amp;lt;br&amp;gt;&lt;br /&gt;
''$geometry =&amp;quot;800x600&amp;quot;;''&lt;br /&gt;
&lt;br /&gt;
(replace ''/home/amule'' for the home of the user running [http://www.redstonesoftware.com/vnc.html VNC])&lt;br /&gt;
&lt;br /&gt;
To show the [[aMule]] window, run:&lt;br /&gt;
''xvncviewer localhost:1''&lt;br /&gt;
&lt;br /&gt;
If you want to autostart a [http://www.redstonesoftware.com/vnc.html VNC] session on system startup, you can put a line in ''/etc/init.d/bootmisc.sh'' like this:&lt;br /&gt;
&lt;br /&gt;
''su '''username''' -c vncserver''&lt;br /&gt;
&lt;br /&gt;
Replace '''username'''  with the name of the user that you want to launch vnc. (Added by '''ghent''')&lt;br /&gt;
&lt;br /&gt;
== To start [[aMuleWeb]] also at startup: ==&lt;br /&gt;
&lt;br /&gt;
This is probably the most unelegant way to do this, but it seems to work.&lt;br /&gt;
&lt;br /&gt;
The problem is that you have to supply user input when starting [[aMuleWeb]] (the password).&lt;br /&gt;
&lt;br /&gt;
You can circumvent this with supplying a password with the ''-pw'' option: ''amuleweb -pw &amp;quot;&amp;quot;'' (this is for no password, you have to remove the [http://www.ietf.org/rfc/rfc1321.txt MD5 sum] from the ''ECPassword'' entry in your ''~/.eMule'' file for this to work).&lt;br /&gt;
&lt;br /&gt;
Now [[aMuleWeb]] starts without any user input, but unfortunately it wouldn't work when we would just add it to the xstartup-file, because [[aMule]] needs a few seconds more to start up.&lt;br /&gt;
&lt;br /&gt;
Therefor we have to start [[aMuleWeb]] a few seconds after [[aMule]].&lt;br /&gt;
&lt;br /&gt;
To achieve this, we add a line similar to this one:&lt;br /&gt;
&lt;br /&gt;
''/bin/sh /home/aMule/amuleweb-start.sh &amp;amp;''&lt;br /&gt;
&lt;br /&gt;
to the xstartup-file.&lt;br /&gt;
&lt;br /&gt;
And in the home-directory, we create a file called ''amuleweb-start.sh'', with the following content:&lt;br /&gt;
&lt;br /&gt;
  #! /bin/sh&lt;br /&gt;
  sleep 30;&lt;br /&gt;
  /usr/bin/amuleweb -pw &amp;quot;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
That's all.&lt;br /&gt;
&lt;br /&gt;
Like I said, probably extremely amateurish, but it should work...&lt;br /&gt;
&lt;br /&gt;
== [http://www.mandrake.com Mandrake] 10.0 ==&lt;br /&gt;
&lt;br /&gt;
The script from [[User:Frankk|Frankk]] is the one I use, but you can customize the size of the [http://www.redstonesoftware.com/vnc.html VNC] server :&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
&lt;br /&gt;
''/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen -geometry 1240x980&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
or whatever value.&lt;br /&gt;
&lt;br /&gt;
Personaly, I use as xstartup script ([http://www.icewm.org iceWM] is really nice and so CPU-cheap) :&lt;br /&gt;
&lt;br /&gt;
''#!/bin/sh''&amp;lt;br&amp;gt;&lt;br /&gt;
''starticewm&amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
''amule''&lt;br /&gt;
&lt;br /&gt;
To start [http://www.redstonesoftware.com/vnc.html VNC] at startup, I called the previous script ''/etc/init.d/amulevnc'' and chmod to 744 (''chmod 744 /etc/init.d/amulevnc'' as root).&amp;lt;br&amp;gt;&lt;br /&gt;
Instead of modifying ''/etc/rc.d/rc.vnc'', I added links in the corresponding ''/etc/rc$RUNLEVEL.d'' directories.&amp;lt;br&amp;gt;&lt;br /&gt;
It's quite simple to understand how it works:&amp;lt;br&amp;gt;&lt;br /&gt;
Each directory represents a runlevel, and contains links to the scripts from ''/etc/init.d'' which need to be run/stop.&amp;lt;br&amp;gt;&lt;br /&gt;
For instance, the link ''/etc/rc5.d/S55sshd'' to ''/etc/init.d/sshd'' will start ''sshd'' on runlevel 5,&lt;br /&gt;
whereas ''/etc/rc6.d/K25sshd'' linked to ''/etc/init.d/sshd'' will stop it in runlevel 6.&amp;lt;br&amp;gt;&lt;br /&gt;
You get it? Links starting with 'KXX' will stop a service, and those starting with 'SXX' will start them. The number will define the order.&lt;br /&gt;
&lt;br /&gt;
So to run [http://www.redstonesoftware.com/vnc.html VNC] on startup, just do (as root :-) )&lt;br /&gt;
''re&amp;gt;ln -s /etc/init.d/amulevnc /etc/rc5.d/S99amule''&lt;br /&gt;
''ln -s /etc/init.d/amulevnc /etc/rc6.d/K02amule''&lt;br /&gt;
and you're all set!&lt;br /&gt;
&lt;br /&gt;
PS: This method should work on systems other than [http://www.mandrake.com Mandrake], give it a test.&lt;br /&gt;
&lt;br /&gt;
Questions &amp;amp; comments: ''air_1 '''at''' libertysurtf.fr''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.gentoo.org Gentoo] ==&lt;br /&gt;
&lt;br /&gt;
For [http://www.gentoo.org Gentoo]'ers follow these steps:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;ATENTION: THE BOOT PROCESS NOW WORKS&amp;lt;/font&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
=== Install [http://www.realvnc.com VNC] ===&lt;br /&gt;
&lt;br /&gt;
This is a how to for a server with no [http://www.x.org X] window manager at all. I only run web and mail services, and of course, [[aMule]]. Adapt to your situation.&lt;br /&gt;
I use [http://www.tightvnc.com TightVNC], but should also work with other [http://www.realvnc.com VNC]'s.&lt;br /&gt;
&lt;br /&gt;
 # emerge tightvnc&lt;br /&gt;
&lt;br /&gt;
=== Configuring [http://www.realvnc.com VNC] ===&lt;br /&gt;
&lt;br /&gt;
==== Server Config ====&lt;br /&gt;
&lt;br /&gt;
To configure the [http://www.realvnc.com VNC] server, execute:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vncserver :0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm using '' ''':0''' ''because there is no window manager running, so no need to use'' ''':1''' '', plus, it will be simpler to connect to it like this, simply:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vncviewer &amp;lt;host&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You'll be asked to answer some questions, such as password, answer accordingly. After you can kill it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vncserver -kill :0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Programs to Start ====&lt;br /&gt;
&lt;br /&gt;
Now let's config what should be started with this [http://www.realvnc.com VNC] session. Edit ''~/.vnc/xstartup'':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 # vi ~/.vnc/xstartup&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should see something like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
PATH=&amp;quot;$PATH:/usr/bin&amp;quot;&lt;br /&gt;
xrdb $HOME/.Xresources&lt;br /&gt;
xsetroot -solid grey&lt;br /&gt;
xterm -geometry 80x24+10+10 -ls -title &amp;quot;$VNCDESKTOP Desktop&amp;quot; &amp;amp;&lt;br /&gt;
exec wmaker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.x.org xterm] is a console, and [http://www.x.org twm] is the window manager. I now use [http://www.windowmaker.org/ WindowMaker], and don't want no terminal, just [[aMule]] so, it's like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
PATH=&amp;quot;$PATH:/usr/bin&amp;quot;&lt;br /&gt;
xrdb $HOME/.Xresources&lt;br /&gt;
xsetroot -solid grey&lt;br /&gt;
#xterm -geometry 80x24+10+10 -ls -title &amp;quot;$VNCDESKTOP Desktop&amp;quot; &amp;amp;&lt;br /&gt;
amule &amp;amp;&lt;br /&gt;
exec wmaker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Starting [http://www.realvnc.com VNC] at boot ===&lt;br /&gt;
&lt;br /&gt;
Since I won't be starting no Window Manager at boot, but still want [[aMule]] started with the user interface(you could just run [[aMuled]]), I'll need an init script:&lt;br /&gt;
&lt;br /&gt;
 # vi /etc/init.d/vncserver&lt;br /&gt;
&lt;br /&gt;
Make it look like:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/sbin/runscript&lt;br /&gt;
# Copyright 1999-2005 Gentoo Foundation&lt;br /&gt;
# Distributed under the terms of the GNU General Public License v2&lt;br /&gt;
# $Header: $&lt;br /&gt;
&lt;br /&gt;
depend() {&lt;br /&gt;
	need net&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
checkconfig() {&lt;br /&gt;
        ebegin &amp;quot;Load config&amp;quot;&lt;br /&gt;
	PATH=&amp;quot;$PATH:/usr/X11R6/bin/&amp;quot;&lt;br /&gt;
	&lt;br /&gt;
	# The Username:Group that will run VNC&lt;br /&gt;
	export USER=&amp;quot;vampas&amp;quot;&lt;br /&gt;
	#${RUNAS}&lt;br /&gt;
&lt;br /&gt;
	# The display that VNC will use&lt;br /&gt;
	DISPLAY=&amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	# Color depth (between 8 and 32)&lt;br /&gt;
	DEPTH=&amp;quot;16&amp;quot;&lt;br /&gt;
	&lt;br /&gt;
	# The Desktop geometry to use.&lt;br /&gt;
	#GEOMETRY=&amp;quot;&amp;lt;WIDTH&amp;gt;x&amp;lt;HEIGHT&amp;gt;&amp;quot;&lt;br /&gt;
	#GEOMETRY=&amp;quot;800x600&amp;quot;&lt;br /&gt;
	GEOMETRY=&amp;quot;1024x780&amp;quot;&lt;br /&gt;
	#GEOMETRY=&amp;quot;1280x1024&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	# The name that the VNC Desktop will have.&lt;br /&gt;
	NAME=&amp;quot;aMule&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	OPTIONS=&amp;quot;-name ${NAME} -depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}&amp;quot;&lt;br /&gt;
	eend $? &amp;quot;Config not Loaded&amp;quot;&lt;br /&gt;
} &lt;br /&gt;
	&lt;br /&gt;
start() {&lt;br /&gt;
        checkconfig&lt;br /&gt;
	ebegin &amp;quot;Starting vncserver for user '${USER}' on localhost:${DISPLAY}&amp;quot;&lt;br /&gt;
	su ${USER} -c &amp;quot;/usr/bin/vncserver ${OPTIONS}&amp;quot;&lt;br /&gt;
	eend $?&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
stop() {&lt;br /&gt;
	checkconfig&lt;br /&gt;
	ebegin &amp;quot;Stoping vncserver for user '${USER}' on localhost:${DISPLAY}&amp;quot;&lt;br /&gt;
	su ${USER} -c &amp;quot;/usr/bin/vncserver -kill :${DISPLAY}&amp;quot;&lt;br /&gt;
	eend $?&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
restart() {&lt;br /&gt;
	svc_stop&lt;br /&gt;
	sleep 3&lt;br /&gt;
	svc_start&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make it executable:&lt;br /&gt;
&lt;br /&gt;
 # chmod +x /etc/init.d/vncserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now add it to boot:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 # rc-update add vncserver default&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And you should be ready to go, if not ''&amp;lt;ufs AT sapo DOT pt&amp;gt;'' &lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/AMule_is_slow-it</id>
		<title>AMule is slow-it</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/AMule_is_slow-it"/>
				<updated>2004-12-21T10:30:36Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;[[AMule_is_slow|English]] | '''Italiano'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[aMule]] è lento ==&lt;br /&gt;
&lt;br /&gt;
[[aMule]] è lento? Le cause possono essere:&lt;br /&gt;
&lt;br /&gt;
*[[#Your fault|Problema lato client]]&lt;br /&gt;
*[[#The network's fault|Problema lato rete]]&lt;br /&gt;
&lt;br /&gt;
== Problema lato client ==&lt;br /&gt;
&lt;br /&gt;
Questa è una lista di problematiche tipiche che possono rallentare il download:&lt;br /&gt;
&lt;br /&gt;
*Un valore troppo basso in &amp;quot;Preferenze&amp;quot;-&amp;gt;&amp;quot;Limite Download&amp;quot;&lt;br /&gt;
*Avere un [[FAQ_eD2k-Kademlia#What_is_LowID_and_HighID?|Low ID]]&lt;br /&gt;
*Alcuni [http://en.wikipedia.org/wiki/ISP ISP] bloccano o limitano le connessioni verso le [[FAQ_eD2k-Kademlia#Which_ports_do_I_have_to_configure_in_a_firewall_or_router_to_run_aMule?|porte]] standard del protocollo [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]]. Prova a modificare le porte che usi in &amp;quot;Preferenze&amp;quot;-&amp;gt;&amp;quot;Connessioni&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Problema lato rete ==&lt;br /&gt;
&lt;br /&gt;
Ci dispiace doverti informare che, in alcuni casi, le basse velocità non sono dovute a una cattiva programmazione di [[aMule]] o a una non corretta configurazione ma dovute ad altri fattori. Questa è una lista:&lt;br /&gt;
&lt;br /&gt;
*La rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] può essere lenta. In alcune altre reti [[P2P]] puoi facilmente scaricare a velocità maggiori. La rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] è una delle reti [[P2P]] più veloci che esistano ma il suo principale obiettivo è la disponibilità: mentre con altre popolari reti puoi scaricare molto velocemente, ti accorgerai presto che nella rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] ci sono milioni di file che non troverai mai in nessun'altra rete.&lt;br /&gt;
*I [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|crediti]]. Se stai usando [[aMule]] per la prima volta o se hai cancellato determinati file nella directory ''~/.aMule'', allora non hai [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|crediti]]. I [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|crediti]] ti possoni garantire elevate velocità di download. Se non sai cosa siano i crediti puoi leggere [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|questo]].&lt;br /&gt;
*La disponibilità dei file. File rari, file vecchi, o file estremamente nuovi... questo tipo di file ha poche [[FAQ_eD2k-Kademlia#What_is_a_source?|fonti]], quindi potrebbe volerci un po' prima che [[aMule]] possa connettersi a qualche altro [[client]] che lo condivida.&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/AMule_is_slow</id>
		<title>AMule is slow</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/AMule_is_slow"/>
				<updated>2004-12-21T10:29:41Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''English''' | [[AMule_is_slow-it|Italiano]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[aMule]] is slow ==&lt;br /&gt;
&lt;br /&gt;
So [[aMule]] is slow? This can be due to:&lt;br /&gt;
&lt;br /&gt;
*[[#Your fault|Your fault]]&lt;br /&gt;
*[[#The network's fault|The network's fault]]&lt;br /&gt;
&lt;br /&gt;
== Your fault ==&lt;br /&gt;
&lt;br /&gt;
This is a list of issues which can be the reason for slow download speeds:&lt;br /&gt;
&lt;br /&gt;
*A low value in &amp;quot;Preferences&amp;quot;-&amp;gt;&amp;quot;Download limit&amp;quot;&lt;br /&gt;
*Having [[FAQ_eD2k-Kademlia#What_is_LowID_and_HighID?|Low ID]]&lt;br /&gt;
*Some [http://en.wikipedia.org/wiki/ISP ISP]s block or limit connections to the standard [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] [[FAQ_eD2k-Kademlia#Which_ports_do_I_have_to_configure_in_a_firewall_or_router_to_run_aMule?|ports]]. Try changing the port in &amp;quot;Preferences&amp;quot;-&amp;gt;&amp;quot;Connections&amp;quot; to some other values.&lt;br /&gt;
&lt;br /&gt;
== The network's fault ==&lt;br /&gt;
&lt;br /&gt;
We're sorry to tell you that sometimes, the low speeds aren't due to a bad [[aMule]] code or a bad configuration, but due to other facts. This is a list:&lt;br /&gt;
&lt;br /&gt;
*The [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] is a slow network. In some other [[P2P]] networks you can easily download faster. The [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] network is one of the fastest [[P2P]] networks existing, but its main goal is availability. While on other popular networks you'll be able to download very fast, you'll quickly find out that in the [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] network there are millions of files you'll be unable to find in any other network.&lt;br /&gt;
*[[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|Credits]]. If you are running [[aMule]] for the first time or if you deleted some files in the ''~/.aMule'' directory, you'll have no [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|credits]]. [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|Credits]] grant fast downloads. If you don't know what they are, read [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|this]].&lt;br /&gt;
*The file's availability. Rare files, old files, extremly new files... this kind of files have very few [[FAQ_eD2k-Kademlia#What_is_a_source?|source]]s, so it takes quite some time for [[aMule]] to connect to some other [[client]] sharing it.&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/AMule_is_slow-it</id>
		<title>AMule is slow-it</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/AMule_is_slow-it"/>
				<updated>2004-12-21T10:26:14Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[aMule]] è lento ==&lt;br /&gt;
&lt;br /&gt;
[[aMule]] è lento? Le cause possono essere:&lt;br /&gt;
&lt;br /&gt;
*[[#Your fault|Problema lato client]]&lt;br /&gt;
*[[#The network's fault|Problema lato rete]]&lt;br /&gt;
&lt;br /&gt;
== Problema lato client ==&lt;br /&gt;
&lt;br /&gt;
Questa è una lista di problematiche tipiche che possono rallentare il download:&lt;br /&gt;
&lt;br /&gt;
*Un valore troppo basso in &amp;quot;Preferenze&amp;quot;-&amp;gt;&amp;quot;Limite Download&amp;quot;&lt;br /&gt;
*Avere un [[FAQ_eD2k-Kademlia#What_is_LowID_and_HighID?|Low ID]]&lt;br /&gt;
*Alcuni [http://en.wikipedia.org/wiki/ISP ISP] bloccano o limitano le connessioni verso le [[FAQ_eD2k-Kademlia#Which_ports_do_I_have_to_configure_in_a_firewall_or_router_to_run_aMule?|porte]] standard del protocollo [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]]. Prova a modificare le porte che usi in &amp;quot;Preferenze&amp;quot;-&amp;gt;&amp;quot;Connessioni&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Problema lato rete ==&lt;br /&gt;
&lt;br /&gt;
Ci dispiace doverti informare che, in alcuni casi, le basse velocità non sono dovute a una cattiva programmazione di [[aMule]] o a una non corretta configurazione ma dovute ad altri fattori. Questa è una lista:&lt;br /&gt;
&lt;br /&gt;
*La rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] può essere lenta. In alcune altre reti [[P2P]] puoi facilmente scaricare a velocità maggiori. La rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] è una delle reti [[P2P]] più veloci che esistano ma il suo principale obiettivo è la disponibilità: mentre con altre popolari reti puoi scaricare molto velocemente, ti accorgerai presto che nella rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] ci sono milioni di file che non troverai mai in nessun'altra rete.&lt;br /&gt;
*I [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|crediti]]. Se stai usando [[aMule]] per la prima volta o se hai cancellato determinati file nella directory ''~/.aMule'', allora non hai [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|crediti]]. I [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|crediti]] ti possoni garantire elevate velocità di download. Se non sai cosa siano i crediti puoi leggere [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|questo]].&lt;br /&gt;
*La disponibilità dei file. File rari, file vecchi, o file estremamente nuovi... questo tipo di file ha poche [[FAQ_eD2k-Kademlia#What_is_a_source?|fonti]], quindi potrebbe volerci un po' prima che [[aMule]] possa connettersi a qualche altro [[client]] che lo condivida.&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/AMule_is_slow-it</id>
		<title>AMule is slow-it</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/AMule_is_slow-it"/>
				<updated>2004-12-21T10:20:34Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[aMule]] è lento ==&lt;br /&gt;
&lt;br /&gt;
[[aMule]] è lento? Le cause possono essere:&lt;br /&gt;
&lt;br /&gt;
*[[#Your fault|Problema lato client]]&lt;br /&gt;
*[[#The network's fault|Problema lato rete]]&lt;br /&gt;
&lt;br /&gt;
== Problema lato client ==&lt;br /&gt;
&lt;br /&gt;
Questa è una lista di problematiche tipiche che possono rallentare il download:&lt;br /&gt;
&lt;br /&gt;
*Un valore troppo basso in &amp;quot;Preferenze&amp;quot;-&amp;gt;&amp;quot;Limite Download&amp;quot;&lt;br /&gt;
*Avere un [[FAQ_eD2k-Kademlia#What_is_LowID_and_HighID?|Low ID]]&lt;br /&gt;
*Alcuni [http://en.wikipedia.org/wiki/ISP ISP] bloccano o limitano le connessioni verso le [[FAQ_eD2k-Kademlia#Which_ports_do_I_have_to_configure_in_a_firewall_or_router_to_run_aMule?|porte]] standard del protocollo [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]]. Prova a modificare le porte che usi in &amp;quot;Preferenze&amp;quot;-&amp;gt;&amp;quot;Connessioni&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Problema lato rete ==&lt;br /&gt;
&lt;br /&gt;
Ci dispiace doverti informare che, in alcuni casi, le basse velocità non sono dovute a una cattiva programmazione di [[aMule]] o a una non corretta configurazione ma dovute ad altri fattori. Questa è una lista:&lt;br /&gt;
&lt;br /&gt;
*La rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] può essere lenta. In alcune altre reti [[P2P]] puoi facilmente scaricare a velocità maggiori. La rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] è una delle reti [[P2P]] più veloci che esistano ma il suo principale obiettivo è la disponibilità: mentre con altre popolari reti puoi scaricare molto velocemente, ti accorgerai presto che nella rete [[FAQ_eD2k-Kademlia#What_is_ED2K?|eD2k]] ci sono milioni di file che non troverai mai in nessun'altra rete.&lt;br /&gt;
*[[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|Credits]]. If you are running [[aMule]] for the first time or if you deleted some files in the ''~/.aMule'' directory, you'll have no [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|credits]]. [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|Credits]] grant fast downloads. If you don't know what they are, read [[FAQ_eD2k-Kademlia#What_is_all_that_credits,_rate_and_score_stuff_about?|this]].&lt;br /&gt;
*The file's availability. Rare files, old files, extremly new files... this kind of files have very few [[FAQ_eD2k-Kademlia#What_is_a_source?|source]]s, so it takes quite some time for [[aMule]] to connect to some other [[client]] sharing it.&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/AMule_Project_FAQ:Help</id>
		<title>AMule Project FAQ:Help</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/AMule_Project_FAQ:Help"/>
				<updated>2004-12-21T09:57:38Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: =Creating a new article=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes how to use the AMule Wiki.  For the main aMule page with howtos and FAQs, [[Main_Page|go here]].&lt;br /&gt;
&lt;br /&gt;
[http://wiki.org/wiki.cgi?WhatIsWiki Wiki] is a revolutionary concept in web maintenance. It consists in letting people edit all (or almost all) the pages in the web so that everybody contributes with it.&lt;br /&gt;
&lt;br /&gt;
Instead of using traditional [http://www.w3.org/MarkUp HTML] tags, it uses some alternative much easier to use and more intuitive tags and ideas. This help document pretends to take you to know them.&lt;br /&gt;
&lt;br /&gt;
Please read carefully and contribute in anything you might thikn you should.&amp;lt;br&amp;gt;&lt;br /&gt;
Thank you.&lt;br /&gt;
&lt;br /&gt;
== Creating a new article ==&lt;br /&gt;
&lt;br /&gt;
To create a new article, just get the URL of any existing article, remove the article's name from the URL and put in the title you want to use in your new article. Then just go to that url with your webbrowser and click on ''Edit this article''.&lt;br /&gt;
&lt;br /&gt;
Feel free to edit whatever suits the article's title (read this wiki's [[aMule_Project_FAQ:Policy|policy]]).&lt;br /&gt;
&lt;br /&gt;
== New lines ==&lt;br /&gt;
&lt;br /&gt;
First of all, to create a new line, either user &amp;amp;lt;br&amp;amp;gt; at the end of the line (so next line will be shown right under the current one), or leave a blank line between the two lines (new paragraf will begin). More than one blank line between two lines will have no different effect than only one blank line. If you want to have more than one blank line displayed, use &amp;amp;lt;br&amp;amp;gt; also.&amp;lt;br&amp;gt;&lt;br /&gt;
No examples are displayed since it would take too much space in this page, but feel free to test when editting any [http://wiki.org/wiki.cgi?WhatIsWiki Wiki] page.&lt;br /&gt;
&lt;br /&gt;
== Blank spaces ==&lt;br /&gt;
&lt;br /&gt;
Blank spaces are also characters that are ignored when more than one on a sequence are found (only one will be displayed).&amp;lt;br&amp;gt;&lt;br /&gt;
If you really wish to display more than one blank spaces, write ''&amp;amp;amp;nbsp;'' instead of the blank space.&amp;lt;br&amp;gt;&lt;br /&gt;
Examples follow:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' I am typing arround &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; some blank spaces&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' I am typing arround      some blank spaces&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' I am typing arround &amp;amp;amp;nbsp;&amp;amp;amp;nbsp;&amp;amp;amp;nbsp;&amp;amp;amp;nbsp; some blank spaces&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' I am typing arround &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp; some blank spaces&lt;br /&gt;
&lt;br /&gt;
== Tab character ==&lt;br /&gt;
Typing '':'' at the beginning of the line will just act as a '''tab''' character. The more '':'' characters you type, the deeper tabulation level will be displayed.&amp;lt;br&amp;gt;&lt;br /&gt;
Example follows:&lt;br /&gt;
&lt;br /&gt;
'''''Code:'''''&amp;lt;br&amp;gt;&lt;br /&gt;
''&amp;lt;nowiki&amp;gt;:This is tabbed only once&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;::This has been tabbed twice&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;:::This has been tabed four times&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;:This is tabbed only once, again&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Preview:'''''&amp;lt;br&amp;gt;&lt;br /&gt;
:This is tabbed only once&lt;br /&gt;
::This has been tabbed twice&lt;br /&gt;
::::This has been tabed four times&lt;br /&gt;
:This is tabbed only once, again&lt;br /&gt;
&lt;br /&gt;
== Bold characters ==&lt;br /&gt;
&lt;br /&gt;
If you want to emphasize some words, you can turn them in '''bold''' wrapping them with ''&amp;lt;nowiki&amp;gt;'''&amp;lt;/nowiki&amp;gt;'' like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;'''This will be shown in bold'''&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' '''This will be shown in bold'''&lt;br /&gt;
&lt;br /&gt;
== Italic characters ==&lt;br /&gt;
&lt;br /&gt;
If you wish to emphasize some words in some other way, you can turn them in ''italic'' wrapping them with ''&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;'' like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;''This will be shown in italic''&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' ''This will be shown in italic''&lt;br /&gt;
&lt;br /&gt;
== Bold &amp;amp; Italic characters ==&lt;br /&gt;
&lt;br /&gt;
If you wish to show some words on both '''bold''' and ''italic'', just wrap them  with ''&amp;lt;nowiki&amp;gt;'''''&amp;lt;/nowiki&amp;gt;'' like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' ''&amp;lt;nowiki&amp;gt;'''''This is in both bold and italic'''''&amp;lt;/nowiki&amp;gt;''&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' '''''This is in both bold and italic'''''&lt;br /&gt;
&lt;br /&gt;
== Linking ==&lt;br /&gt;
&lt;br /&gt;
You mist see the difference between two very different links:&lt;br /&gt;
*[http://wiki.org/wiki.cgi?WhatIsWiki Wiki] links&lt;br /&gt;
*External links&lt;br /&gt;
&lt;br /&gt;
=== Linking [http://wiki.org/wiki.cgi?WhatIsWiki Wiki] links ===&lt;br /&gt;
&lt;br /&gt;
[http://wiki.org/wiki.cgi?WhatIsWiki Wiki] links are those which refer to pages in this same [http://wiki.org/wiki.cgi?WhatIsWiki Wiki].&amp;lt;br&amp;gt;&lt;br /&gt;
For example, the page ''FAQ_aMule'' exists in this [http://wiki.org/wiki.cgi?WhatIsWiki Wiki] and contains the [[FAQ_aMule|aMule FAQ]], so it is a [http://wiki.org/wiki.cgi?WhatIsWiki Wiki] link.&amp;lt;br&amp;gt;&lt;br /&gt;
This links are doen by wrapping them with ''[['' and '']]''. Note that page names are [http://www.webopedia.com/TERM/C/case_sensitive.html case sensitive]. Also, note that pages which's name contain lower-dashes (''_'') can be replaced with blank spaces.&amp;lt;br&amp;gt;&lt;br /&gt;
Some examples follow:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;[[FAQ_aMule]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' [[FAQ_aMule]]&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;[[FAQ aMule]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' [[FAQ aMule]]&lt;br /&gt;
&lt;br /&gt;
But obviously, you can enter any text to those links, other than the page which they're linking to's name.&amp;lt;br&amp;gt;&lt;br /&gt;
This is done by introducing a pip-character (''|'') before the link's name and after the page's name.&amp;lt;br&amp;gt;&lt;br /&gt;
More examples follow:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;[[FAQ_aMule|FAQ about aMule]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' [[FAQ_aMule|FAQ about aMule]]&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;[[FAQ aMule|FAQ about aMule]]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' [[FAQ aMule|FAQ about aMule]]&lt;br /&gt;
&lt;br /&gt;
You can even link part of a word and have the whole of it linked (only works for post-fixes. No profixes will be linked):&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;[[FAQ aMule]]rs&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' [[FAQ aMule]]rs&lt;br /&gt;
&lt;br /&gt;
=== Linking external links ===&lt;br /&gt;
&lt;br /&gt;
External links are those which do not refer to any page on this same [http://wiki.org/wiki.cgi?WhatIsWiki Wiki].&amp;lt;br&amp;gt;&lt;br /&gt;
If you simply wish to show the link, just write the url, like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;http://www.amule.org&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' http://www.amule.org&lt;br /&gt;
&lt;br /&gt;
Now, if you want to give the link some name, you must wrap the linking word with ''['' and '']'' and insert '''first''' the url to link to separated with a blank space. Like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' ''This links to &amp;lt;nowiki&amp;gt;[http://www.amule.org aMule's WebPage]&amp;lt;/nowiki&amp;gt;''&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' ''This links to [http://www.amule.org aMule's WebPage]''&lt;br /&gt;
&lt;br /&gt;
If you wrap the link with ''['' and '']'' and don't give it a description text, the links might be replaced with a sequencial number, like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;[http://www.amule.org]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' [http://www.amule.org]&lt;br /&gt;
&lt;br /&gt;
== Titles ==&lt;br /&gt;
&lt;br /&gt;
Titles are wrapped between ''=='' characters, as follows:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;nowiki&amp;gt;== Title ==&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
subtitles should add one more ''='' character, as follows:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;nowiki&amp;gt;== Title ==&amp;lt;/nowiki&amp;gt;''&amp;lt;br&amp;gt;&lt;br /&gt;
''&amp;lt;nowiki&amp;gt;=== SubTitle ===&amp;lt;/nowiki&amp;gt;''&amp;lt;br&amp;gt;&lt;br /&gt;
''&amp;lt;nowiki&amp;gt;==== SubSubTitle ====&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
This ''=='' characters must be at the begginning and ending of the line. Otherwise they will be ignored and displayed.&lt;br /&gt;
&lt;br /&gt;
== Lists ==&lt;br /&gt;
&lt;br /&gt;
There are two kinds of list:&amp;lt;br&amp;gt;&lt;br /&gt;
*Simple lists&amp;lt;br&amp;gt;&lt;br /&gt;
*Numbered lists&lt;br /&gt;
&lt;br /&gt;
=== Simple lists ===&lt;br /&gt;
&lt;br /&gt;
This are just lists which will show no more than an idention spot.&amp;lt;br&amp;gt;&lt;br /&gt;
You can use them by typing an asterisk (''*'') at the beginning of the line. The amount of asterisks written indicate the depth of the level in the list.&amp;lt;br&amp;gt;&lt;br /&gt;
Note that no ''&amp;amp;lt;br&amp;gt;'' tags should be used.&amp;lt;br&amp;gt;&lt;br /&gt;
Example follows:&lt;br /&gt;
&lt;br /&gt;
'''''Code:'''''&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;&amp;lt;nowiki&amp;gt;*This is a list&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*With it's second element&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;**And some child elements&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;**And some more&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;***Even subchilds&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*And back to the first level of the list&amp;lt;/nowiki&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Preview:'''''&lt;br /&gt;
*This is a list&lt;br /&gt;
*With it's second element&lt;br /&gt;
**And some child elements&lt;br /&gt;
**And some more&lt;br /&gt;
***Even subchilds&lt;br /&gt;
*And back to the first level of the list&lt;br /&gt;
&lt;br /&gt;
=== Numbered lists ===&lt;br /&gt;
&lt;br /&gt;
This are lists which will have each element of it automatically numbered.&amp;lt;br&amp;gt;&lt;br /&gt;
You can use them by typing slash (''#'') characters at the beginning of the line. The amount of slash (''#'') characters written indicate the depth of the level in the numbered list.&amp;lt;br&amp;gt;&lt;br /&gt;
Note that no ''&amp;amp;lt;br&amp;gt;'' tags should be used and that the lines must be one after the other in order to have them correctly numbered.&amp;lt;br&amp;gt;&lt;br /&gt;
Example follows:&lt;br /&gt;
&lt;br /&gt;
'''''Code:'''''&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;&amp;lt;nowiki&amp;gt;#This is a numbered list&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#With it's second element&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;##And some child elements&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;##And some more&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;###Even subchilds&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#And back to the first level of the list&amp;lt;/nowiki&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Preview:'''''&lt;br /&gt;
#This is a numbered list&lt;br /&gt;
#With it's second element&lt;br /&gt;
##And some child elements&lt;br /&gt;
##And some more&lt;br /&gt;
###Even subchilds&lt;br /&gt;
#And back to the first level of the list&lt;br /&gt;
&lt;br /&gt;
== Displaying the less-than (&amp;amp;lt;) and ampersand (&amp;amp;) characters==&lt;br /&gt;
&lt;br /&gt;
The less-than character (&amp;amp;lt;) is hard to be displayed on [http://www.w3.org/MarkUp HTML] pages because it marks the beginning of a tag.&amp;lt;br&amp;gt;&lt;br /&gt;
Whenever you want to type it, and you're not using it in an [http://www.w3.org/MarkUp HTML] tag, write ''&amp;amp;amp;lt;'' instead of ''&amp;amp;lt;'' like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' ''5 &amp;amp;amp;lt; 7 == true''&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' ''5 &amp;amp;lt; 7 == true''&lt;br /&gt;
&lt;br /&gt;
The ampersand character (&amp;amp;) might also be problematic to show when it is followed by a number or a sequence of characters ending in a semi-colon (;) character (no blank spaces in between).&amp;lt;br&amp;gt;&lt;br /&gt;
If such is yuor case, instead of the ampersand character (&amp;amp;), use ''&amp;amp;amp;amp;'' like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' ''The ampersand character is this: &amp;amp;amp;amp;''&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' ''The ampersand character is this: &amp;amp;amp;''&lt;br /&gt;
&lt;br /&gt;
== Excluding [http://wiki.org/wiki.cgi?WhatIsWiki Wiki] tags ==&lt;br /&gt;
&lt;br /&gt;
If in a given moment you want to use some text which is considered a wiki tag, wrap that text with &amp;amp;lt;nowiki&amp;amp;gt; and &amp;amp;lt;/nowiki&amp;amp;gt; like this:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;&amp;amp;lt;nowiki&amp;gt;This will not be shown in '''bold''' or ''italic''&amp;amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' &amp;lt;nowiki&amp;gt;This will not be shown in '''bold''' or ''italic''&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Inserting images ==&lt;br /&gt;
&lt;br /&gt;
To insert images, just write it's url. Example:&lt;br /&gt;
&lt;br /&gt;
'''''Code:''''' &amp;lt;nowiki&amp;gt;http://www.amule.org/images/logo.gif&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''''Preview:''''' http://www.amule.org/images/logo.gif&lt;br /&gt;
&lt;br /&gt;
== Going forward ==&lt;br /&gt;
&lt;br /&gt;
Of course, since it is all [http://www.w3.org/MarkUp HTML] in the end, you can use any [http://www.w3.org/MarkUp HTML] tag you wish to expand your design abilities.&lt;br /&gt;
&lt;br /&gt;
== Page names ==&lt;br /&gt;
&lt;br /&gt;
The names of the pages must follow this rules:&lt;br /&gt;
*Several words '''never''' go together. Use ''_'' characters to separate them. For example: ''This_are_several_words''&lt;br /&gt;
*When more than one word is used, use lower letter on first letter unless it's a property name. For example: ''Till_there_was_John''&lt;br /&gt;
*If any of the words in the title has an excepting upper letter, put it. For example: ''This_is_aMule''&lt;br /&gt;
*If you are [[translating Wiki|translating a wiki page]], just use the original page's title followed by a dash (''-'') and the language code of your translation. For example: ''Translated_to_french-fr''&lt;br /&gt;
&lt;br /&gt;
== Translating the [[Main Page|Wiki]] ==&lt;br /&gt;
&lt;br /&gt;
Please read [[translating Wiki|this document]].&lt;br /&gt;
&lt;br /&gt;
== Testing pages ==&lt;br /&gt;
&lt;br /&gt;
If you want to test what you've learned, do '''not''' use an existing page/article to test. Instead, create a new page which's title begins with ''test:''.&lt;br /&gt;
&lt;br /&gt;
'''Never''' leave in a test page any usefull information as a backup or some kind of repository to use later. Test pages can be removed at any moment.&lt;br /&gt;
&lt;br /&gt;
== More information ==&lt;br /&gt;
&lt;br /&gt;
Other references:&amp;lt;br&amp;gt;&lt;br /&gt;
*http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide#For_editors&lt;br /&gt;
*http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-08-01T13:41:22Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X$theScreen'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
#Here, the choosen user to run amule&lt;br /&gt;
theUser=choosenuser&lt;br /&gt;
#And here, the choosen screen to run the vncserver&lt;br /&gt;
theScreen=1&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
if [ -f /tmp/.X11-unix/X$theScreen ]; then rm /tmp/.X11-unix/X$theScreen; fi&lt;br /&gt;
/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :$theScreen&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;amule &amp;amp;&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== On [http://www.debian.org Debian] Woody ==&lt;br /&gt;
&lt;br /&gt;
Run (as root):&lt;br /&gt;
&lt;br /&gt;
''apt-get install vncserver xvncviewer''&lt;br /&gt;
&lt;br /&gt;
There is no support for ''~/.vnc/xstartup'' so, instead, use ''$vncStartup'' in ''.vncrc'' to determine a xstartup-script (this replaces your ''~/.xsession'' file).&lt;br /&gt;
&lt;br /&gt;
For more information, read ''man vnc.conf''&lt;br /&gt;
&lt;br /&gt;
For example, in a Woody/Sarge/Sid:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user who is going to run [[aMule]]&amp;lt;br&amp;gt;&lt;br /&gt;
''mkdir ~/.vnc/''&amp;lt;br&amp;gt;&lt;br /&gt;
Create the ''~/.vnc/xstartup'' file, with the previous content&amp;lt;br&amp;gt;&lt;br /&gt;
Create the file ''~/.vncrc'' with the next content:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user and run ''xvncviewer :1'' to create the password file and debug possible probelms (the logs are under the ''~/.vnc/'' dir&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$vncStartup = &amp;quot;/home/amule/.vnc/xstartup&amp;quot;;&lt;br /&gt;
$geometry =&amp;quot;640x480&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To connect with the server, run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xvncviewer localhost:1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-26T21:24:55Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
#Here, the choosen user to run amule&lt;br /&gt;
theUser=choosenuser&lt;br /&gt;
#And here, the choosen screen to run the vncserver&lt;br /&gt;
theScreen=1&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
if [ -f /tmp/.X11-unix/X$theScreen ]; then rm /tmp/.X11-unix/X$theScreen; fi&lt;br /&gt;
/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :$theScreen&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;amule &amp;amp;&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== On [http://www.debian.org Debian] Woody ==&lt;br /&gt;
&lt;br /&gt;
Run (as root):&lt;br /&gt;
&lt;br /&gt;
''apt-get install vncserver xvncviewer''&lt;br /&gt;
&lt;br /&gt;
There is no support for ''~/.vnc/xstartup'' so, instead, use ''$vncStartup'' in ''.vncrc'' to determine a xstartup-script (this replaces your ''~/.xsession'' file).&lt;br /&gt;
&lt;br /&gt;
For more information, read ''man vnc.conf''&lt;br /&gt;
&lt;br /&gt;
For example, in a Woody/Sarge/Sid:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user who is going to run [[aMule]]&amp;lt;br&amp;gt;&lt;br /&gt;
''mkdir ~/.vnc/''&amp;lt;br&amp;gt;&lt;br /&gt;
Create the ''~/.vnc/xstartup'' file, with the previous content&amp;lt;br&amp;gt;&lt;br /&gt;
Create the file ''~/.vncrc'' with the next content:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user and run ''xvncviewer :1'' to create the password file and debug possible probelms (the logs are under the ''~/.vnc/'' dir&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$vncStartup = &amp;quot;/home/amule/.vnc/xstartup&amp;quot;;&lt;br /&gt;
$geometry =&amp;quot;640x480&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To connect with the server, run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xvncviewer localhost:1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-26T21:12:35Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
#Here, the choosen user to run amule&lt;br /&gt;
theUser=choosenuser&lt;br /&gt;
#And here, the choosen screen to run the vncserver&lt;br /&gt;
theScreen=1&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
if [ -x /tmp/.X11-unix/X$theScreen ]; then rm /tmp/.X11-unix/X$theScreen; fi&lt;br /&gt;
/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :$theScreen&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - $theUser -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :$theScreen&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;amule &amp;amp;&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== On [http://www.debian.org Debian] Woody ==&lt;br /&gt;
&lt;br /&gt;
Run (as root):&lt;br /&gt;
&lt;br /&gt;
''apt-get install vncserver xvncviewer''&lt;br /&gt;
&lt;br /&gt;
There is no support for ''~/.vnc/xstartup'' so, instead, use ''$vncStartup'' in ''.vncrc'' to determine a xstartup-script (this replaces your ''~/.xsession'' file).&lt;br /&gt;
&lt;br /&gt;
For more information, read ''man vnc.conf''&lt;br /&gt;
&lt;br /&gt;
For example, in a Woody/Sarge/Sid:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user who is going to run [[aMule]]&amp;lt;br&amp;gt;&lt;br /&gt;
''mkdir ~/.vnc/''&amp;lt;br&amp;gt;&lt;br /&gt;
Create the ''~/.vnc/xstartup'' file, with the previous content&amp;lt;br&amp;gt;&lt;br /&gt;
Create the file ''~/.vncrc'' with the next content:&amp;lt;br&amp;gt;&lt;br /&gt;
Login as the user and run ''xvncviewer :1'' to create the password file and debug possible probelms (the logs are under the ''~/.vnc/'' dir&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$vncStartup = &amp;quot;/home/amule/.vnc/xstartup&amp;quot;;&lt;br /&gt;
$geometry =&amp;quot;640x480&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To connect with the server, run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
xvncviewer localhost:1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-17T11:19:00Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
rm /tmp/.X11-unix/X1&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;amule &amp;amp;&amp;lt;/pre&amp;gt;''&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-17T11:18:24Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By [[User:Frankk|Frankk]]''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch [http://www.redstonesoftware.com/vnc.html VNC] at [http://www.kernel.org Linux] startup (as a specified user). [[aMule]] will be launched automatically with [http://www.redstonesoftware.com/vnc.html VNC].&lt;br /&gt;
This will work in [http://www.slackware.com Slackware] and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
--------Start of rc.vnc--------&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
rm /tmp/.X11-unix/X1&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
--------End of rc.vnc--------&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make it executable with:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;chmod 755 /etc/rc.d/rc.vnc&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home directory of the user specified above) add (change with your preferred [[aMule]] startup script):&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;amule &amp;amp;&amp;lt;/pre&amp;gt;''&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-14T09:06:24Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By Frankk''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch VNC at linux startup (as a specified user). aMule will be launched automatically with VNC.&lt;br /&gt;
This will work in Slackware and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
--------Start of rc.vnc--------&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
rm /tmp/.X11-unix/X1&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
--------End of rc.vnc--------&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home dir of the user specified above) add (change with your preferred aMule startup script):&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;amule &amp;amp;&amp;lt;/pre&amp;gt;''&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-14T09:06:04Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By Frankk''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch VNC at linux startup (as a specified user). aMule will be launched automatically with VNC.&lt;br /&gt;
This will work in Slackware and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
--------Start of rc.vnc--------&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
rm /tmp/.X11-unix/X1&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
--------End of rc.vnc--------&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home dir of the user specified above) add (change with your preferred aMule startup script):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;''amule &amp;amp;''&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot</id>
		<title>How to launch VNC with aMule at Linux boot</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/How_to_launch_VNC_with_aMule_at_Linux_boot"/>
				<updated>2004-07-14T08:29:50Z</updated>
		
		<summary type="html">&lt;p&gt;Frankk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2&amp;gt;''By Frankk''&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This describes a very simple configuration to launch VNC at linux startup (as a specified user). aMule will be launched automatically with VNC.&lt;br /&gt;
This will work in Slackware and distro based on the same init method. If someone knows how to modify it to make it work under other distros you are welcome to add it to this page. Thanks.&lt;br /&gt;
&lt;br /&gt;
Add the ''rc.vnc'' script to ''/etc/rc.d''&lt;br /&gt;
&lt;br /&gt;
Modify user according to the user running [[aMule]].&amp;lt;br&amp;gt;&lt;br /&gt;
The ''rm /tmp/.X11-unix/X11'' is there in case the server crashes or your mother/wife removes the power plug cleaning the room... ;-)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
--------Start of rc.vnc--------&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# Startup/Stop script for vncserver.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
&lt;br /&gt;
'start')&lt;br /&gt;
rm /tmp/.X11-unix/X1&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
'stop')&lt;br /&gt;
/bin/su - user -c &amp;quot;PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/vncserver -kill :1&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
*)&lt;br /&gt;
echo &amp;quot;Usage: /etc/init.d/rc.vnc { start | stop }&amp;quot;&lt;br /&gt;
;;&lt;br /&gt;
&lt;br /&gt;
esac&lt;br /&gt;
--------End of rc.vnc--------&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Modify the following files:&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.local'' add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Start VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
. /etc/rc.d/rc.vnc start&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In ''/etc/rc.d/rc.6'' add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Shut down the VNC server&lt;br /&gt;
if [ -x /etc/rc.d/rc.vnc ]; then&lt;br /&gt;
/etc/rc.d/rc.vnc stop&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In ''~/.vnc/xstartup'' (in home dir of the user specified above) add (change with your preferred aMule startup script):&lt;br /&gt;
&lt;br /&gt;
''amule &amp;amp;''&lt;/div&gt;</summary>
		<author><name>Frankk</name></author>	</entry>

	</feed>