<?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=82.242.101.49</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=82.242.101.49"/>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Special:Contributions/82.242.101.49"/>
		<updated>2026-04-05T17:08:44Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/FAQ_amuled</id>
		<title>FAQ amuled</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/FAQ_amuled"/>
				<updated>2005-12-03T23:34:29Z</updated>
		
		<summary type="html">&lt;p&gt;82.242.101.49: Added startup script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[aMuled]] is a full featured [[aMule]], running without any user interface ([http://www.webopedia.com/TERM/G/Graphical_User_Interface_GUI.html GUI]). It is controlled by remote access through [[aMuleWeb]], [[aMuleCMD]], [[aMuleGUI]] or other [[FAQ_eD2k-Kademlia#What_is_ED2K?|ed2k]] [[FAQ_utils|utilities]].&lt;br /&gt;
&lt;br /&gt;
Stripped from [http://www.webopedia.com/TERM/G/Graphical_User_Interface_GUI.html GUI], [[aMuled]] has reduced memory and CPU requirements and it can run without [http://www.xfree86.org X] at all.&lt;br /&gt;
&lt;br /&gt;
'''Please note:''' Remember '''not''' to set your max-Connections higher than 1024, since [[wxBase]] cannot handle more connections.&lt;br /&gt;
&lt;br /&gt;
If you just need to run [[aMule]] on a remote server [[FAQ_aMule#Is there any way to start aMule with no graphical interface?|try Xvfb]] (see [[FAQ_aMule#Can_I_manage_aMule_remotely_through_telnet_in_the_same_way_I_do_with_eDonkey?|this]] too).&lt;br /&gt;
&lt;br /&gt;
=== Startup script ===&lt;br /&gt;
Here is an amuled startup script to make amuled start and stop with your computer. It is derived from the one at [[aMuleWeb]], but follows stricter quoting rules, doesn't require a configuration file in /etc/defaults , and doesn't start a web server.&lt;br /&gt;
Run su, or prefix commands with sudo, to become root.&lt;br /&gt;
Edit the USER= line to set it to your current user (as reported by whoami)&lt;br /&gt;
Copy the script as /etc/init.d/amuled:&lt;br /&gt;
  cp amuled /etc/init.d/amuled&lt;br /&gt;
make it executable&lt;br /&gt;
  chmod 755 /etc/init.d/amuled&lt;br /&gt;
set it to run at startup&lt;br /&gt;
  #on debian distros:&lt;br /&gt;
  update-rc.d amuled defaults&lt;br /&gt;
  #on a generic distro&lt;br /&gt;
  ln -s /etc/init.d/amuled /etc/rc0.d/K20amuled;&lt;br /&gt;
  ln -s /etc/init.d/amuled /etc/rc1.d/K20amuled;&lt;br /&gt;
  ln -s /etc/init.d/amuled /etc/rc6.d/K20amuled;&lt;br /&gt;
  ln -s /etc/init.d/amuled /etc/rc4.d/S20amuled&lt;br /&gt;
  ln -s /etc/init.d/amuled /etc/rc5.d/S20amuled&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
NAME=$(basename &amp;quot;$0&amp;quot;)&lt;br /&gt;
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin&lt;br /&gt;
DAEMON=/usr/bin/amuled&lt;br /&gt;
DESC=amuled&lt;br /&gt;
USER=g2p #A user who already ran amule once to configure it.&lt;br /&gt;
&lt;br /&gt;
test -x &amp;quot;$DAEMON&amp;quot; || exit 0&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
    echo -n &amp;quot;Starting $DESC: &amp;quot;&lt;br /&gt;
      su &amp;quot;$USER&amp;quot; -c &amp;quot;$(printf &amp;quot;%q -f&amp;quot; &amp;quot;$DAEMON&amp;quot; )&amp;quot;&lt;br /&gt;
    echo &amp;quot;$NAME.&amp;quot;&lt;br /&gt;
    ;;&lt;br /&gt;
  stop)&lt;br /&gt;
    echo -n &amp;quot;Stopping $DESC: &amp;quot;&lt;br /&gt;
      killall --quiet &amp;quot;$DAEMON&amp;quot;&lt;br /&gt;
    echo &amp;quot;$NAME.&amp;quot;&lt;br /&gt;
    ;;&lt;br /&gt;
  restart|force-reload)&lt;br /&gt;
    echo -n &amp;quot;Restarting $DESC: &amp;quot;&lt;br /&gt;
      killall --quiet &amp;quot;$DAEMON&amp;quot;&lt;br /&gt;
    sleep 1&lt;br /&gt;
      su &amp;quot;$USER&amp;quot; -c &amp;quot;$(printf &amp;quot;%q -f&amp;quot; &amp;quot;$DAEMON&amp;quot; )&amp;quot;&lt;br /&gt;
    ;;&lt;br /&gt;
  *)&lt;br /&gt;
    printf &amp;quot;Usage: %q {start|stop|restart|force-reload}\n&amp;quot; &amp;quot;$0&amp;quot; &amp;gt;&amp;amp;2&lt;br /&gt;
    exit 1&lt;br /&gt;
    ;;&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>82.242.101.49</name></author>	</entry>

	</feed>