<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ehwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=LostLogia4</id>
	<title>EHWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ehwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=LostLogia4"/>
	<link rel="alternate" type="text/html" href="https://ehwiki.org/wiki/Special:Contributions/LostLogia4"/>
	<updated>2026-05-30T00:22:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://ehwiki.org/index.php?title=Installing_H@H_on_Debian&amp;diff=30476</id>
		<title>Installing H@H on Debian</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Installing_H@H_on_Debian&amp;diff=30476"/>
		<updated>2014-08-17T02:08:42Z</updated>

		<summary type="html">&lt;p&gt;LostLogia4: Updated to latest Java and H@H version.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==Requirements==&lt;br /&gt;
* Being able to use Google.&lt;br /&gt;
&lt;br /&gt;
* Basic Linux knowledge.&lt;br /&gt;
&lt;br /&gt;
* A running Debian GNU/Linux server.&lt;br /&gt;
&lt;br /&gt;
* PuTTY or any other SSH program to connect to your server. This allows for copying/pasting of commands.&lt;br /&gt;
&lt;br /&gt;
* An “active” H@H client (http://g.e-hentai.org/hentaiathome.php).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===A couple things to be aware of before starting===&lt;br /&gt;
&lt;br /&gt;
* Linux IS case sensitive on file names. Therefore, it is best to use lower case names everywhere to make it easier for yourself.&lt;br /&gt;
&lt;br /&gt;
* Commands you should type are given in &amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;Green&amp;lt;/FONT&amp;gt;;&lt;br /&gt;
* Output from the command prompt is given in &amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;Red&amp;lt;/FONT&amp;gt;;&lt;br /&gt;
* Text in commands that you&#039;ll probably need to change is given in &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;Blue&amp;lt;/FONT&amp;gt;.&lt;br /&gt;
* Commands starting with &#039;&#039;&#039;$&#039;&#039;&#039; are to be run as current user, those starting with &#039;&#039;&#039;#&#039;&#039;&#039; - as root (using su/sudo).&lt;br /&gt;
&lt;br /&gt;
* This manual is based on a virtual server (VPS/VDS). The use of a physical server, home PC or any program other than VMware to virtualize your server may require doing some things differently.&lt;br /&gt;
&lt;br /&gt;
==Installing Java==&lt;br /&gt;
To run the H@H server you will have to have Java installed on the server.&lt;br /&gt;
&lt;br /&gt;
Now select Java package on [http://www.oracle.com/technetwork/java/javase/downloads/index.html official download page], accept license and copy download link depending on your OS (32-bit/64-bit).&lt;br /&gt;
&lt;br /&gt;
For our case JDK isn&#039;t needed. If you need some monitoring tools (and know how to use them) - pick Server JRE. Otherwise, your choice is JRE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the JRE can be with the following command:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget --no-cookies --header &amp;quot;Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F&amp;quot; &amp;quot;https://download.oracle.com/otn-pub/java/jdk/7u67-b01/jre-7u67-linux-x64.tar.gz&amp;quot;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create directory for JVM in /opt:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# mkdir /opt/java-oracle&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unpack the downloaded archive in /opt:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# tar -zxf &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;jre-7u67-linux-x64.tar.gz&amp;lt;/FONT&amp;gt; -C /opt/java-oracle&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set our JVM to be used as the default Java on the system:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ Java_Home=/opt/java-oracle/&amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;jre1.7.0_67&amp;lt;/FONT&amp;gt;&lt;br /&gt;
# update-alternatives --install /usr/bin/java java ${Java_Home%*/}/bin/java 20000&lt;br /&gt;
# update-alternatives --install /usr/bin/javac javac ${Java_Home%*/}/bin/javac 20000&lt;br /&gt;
# update-alternatives --install /usr/bin/javaws javaws ${Java_Home%*/}/bin/javaws 20000&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify (or set) JVM to be used as a default Java on the system:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# update-alternatives --config java&lt;br /&gt;
&amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;There is only one alternative in link group java (providing /usr/bin/java): /opt/java-oracle/jre1.7.0_67/bin/java&lt;br /&gt;
Nothing to configure.&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify Java version:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ java -version&lt;br /&gt;
&amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;java version &amp;quot;1.7.0_67&amp;quot;&lt;br /&gt;
Java(TM) SE Runtime Environment (build 1.7.0_67-b01)&lt;br /&gt;
Java HotSpot(TM) 64-Bit Server VM (build 24.65-b04, mixed mode)&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing H@H==&lt;br /&gt;
&lt;br /&gt;
For more security let&#039;s create new user for H@H:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# adduser &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now login as the new user and create a directory for H@H client:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# login &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&lt;br /&gt;
$ mkdir &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Download H@H (check for the latest version [http://g.e-hentai.org/hentaiathome.php here]):&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget http://hentaiathome.net/get/HentaiAtHome_1.2.1.zip&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip the downloaded archive (install unzip if you haven&#039;t yet):&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ unzip HentaiAtHome_1.2.1.zip -d &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath/&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Well done, let&#039;s launch it!&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ cd &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&lt;br /&gt;
$ java -jar HentaiAtHome.jar&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your client ID and Password which you can find on [http://g.e-hentai.org/hentaiathome.php your H@H page]&lt;br /&gt;
&lt;br /&gt;
You will need to configure your client settings on the above page before you get your client password. If you have not applied to run a H@H client yet, you will have to do so first.&lt;br /&gt;
&lt;br /&gt;
To stop the server, press &amp;quot;Ctrl+C&amp;quot; and wait for a couple seconds.&lt;br /&gt;
&lt;br /&gt;
==Run H@H as service==&lt;br /&gt;
&lt;br /&gt;
Now, finally, we&#039;ve got our H@H. But to start it manually every single time is quite a bother.&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the init script to make work with H@H more comfortable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the script:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget https://github.com/Yukariin/hath-scripts/raw/master/hentaiathome -O hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you haven&#039;t created new user for H@H - edit presented script and replace USER and DIR variables to your correct:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ nano hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Copy script into /etc/init.d:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# cp hentaiathome /etc/init.d/&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fix chmod:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# chmod 755 /etc/init.d/hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Stop H@H if it already running and start  is as a service:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# /etc/init.d/hentaiathome start&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And check if it is working properly:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# /etc/init.d/hentaiathome status&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or by using top/htop. You can also see the server status on [http://g.e-hentai.org/hentaiathome.php your H@H page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now let&#039;s make H@H auto start:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# update-rc.d hentaiathome defaults&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So if your server will reboot, H@H will start automatically right after boot.&lt;br /&gt;
&lt;br /&gt;
You can start/stop/restart H@H as a simple service.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also you can get systemd service for H@H [https://github.com/Yukariin/hath-scripts/blob/master/systemd.service here]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Hentai@Home]]&lt;br /&gt;
*[[Installing H@H on Ubuntu]]&lt;br /&gt;
*[http://forums.e-hentai.org/index.php?showtopic=19795&amp;amp;st=0&amp;amp;p=797807&amp;amp;#entry797807 Advanced Linux Installation]&lt;br /&gt;
&lt;br /&gt;
[[Category:E-Hentai Galleries]]&lt;/div&gt;</summary>
		<author><name>LostLogia4</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=Skills&amp;diff=30441</id>
		<title>Skills</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Skills&amp;diff=30441"/>
		<updated>2014-08-14T09:16:56Z</updated>

		<summary type="html">&lt;p&gt;LostLogia4: /* Weapon Skills */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Skills&#039;&#039;&#039; are special abilities in the [[HentaiVerse]], currently for aiding the user in combat.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Universal Skills&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
==Innate Skills==&lt;br /&gt;
These skills are available to all players.&lt;br /&gt;
{|class=wikitable width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Skill !! Status Effect&lt;br /&gt;
|-&lt;br /&gt;
! [[Image:defend.png]]&amp;lt;br&amp;gt;Defend&lt;br /&gt;
| You are defending from enemy blows. The amount of damage you take is reduced by 25%&lt;br /&gt;
* &#039;&#039;&#039;&#039;&#039;Defending&#039;&#039;&#039; lasts for 2 turns - the turn in which it was cast and the following turn&#039;&#039;&lt;br /&gt;
* &#039;&#039;10% [[Overcharge]] is consumed to recover 10% [[Character_Stats#Bases|base health]].&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! [[Image:Abilities_Static_Charge.png]]&amp;lt;br&amp;gt;Focus&lt;br /&gt;
| You are mentally prepared for casting a magical attack. The chance for your spell being resisted or interfered is reduced, but so are your avoidance stats.&lt;br /&gt;
* &#039;&#039;&#039;&#039;&#039;Focusing&#039;&#039;&#039; will leave the player unable to Evade/Block/Parry/Resist (-100% penalty). Monsters can still miss though.&lt;br /&gt;
* &#039;&#039;Increases Magic Hit Chance by 100%, reduce interference by 50%, and reduce monsters&#039; resist chance by 50%?&#039;&#039;&lt;br /&gt;
* &#039;&#039;25% [[Overcharge]] is consumed to recover 5% [[Character_Stats#Bases|base mana]].&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! [[Image:flee.png]]&amp;lt;br&amp;gt;Flee&lt;br /&gt;
| You are running away.&lt;br /&gt;
* &#039;&#039;&#039;&#039;&#039;Fleeing&#039;&#039;&#039; may take a full turn to take effect, during which monsters may still attack&lt;br /&gt;
* &#039;&#039;Removes the player from the current [[battle]] series&#039;&#039;&lt;br /&gt;
* &#039;&#039;Counts as a [[Monster_Lab#Chances|victory]] for monsters involved. There is a cooldown on how often a player can count towards a monster&#039;s win stat.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
! Scan&lt;br /&gt;
| Retrieve data on the target.[[Image:Scan_Example.JPG|frame|right|Scan Example]]&lt;br /&gt;
*&#039;&#039;Gives further details about a single monster, including its&#039;&#039;:&lt;br /&gt;
** Health, Mana, and Spirit Points&lt;br /&gt;
** Class and [[Monster_Lab#Monster_Stats_.26_Power_Level|Power Level]]&lt;br /&gt;
** Owner&lt;br /&gt;
** Melee attack [[damage type]]&lt;br /&gt;
** Damage type mitigation values&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Fighting Skills&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Weapon Skills==&lt;br /&gt;
A player&#039;s [[fighting style]] will grant additional fighting skills to players. &lt;br /&gt;
*They cannot miss, be parried, or be evaded.&lt;br /&gt;
*Players do not need to be in [[Spirit Stance]] to use these skills though this does boost their damage.&lt;br /&gt;
**If they are used while Spirit Stance is activated, the cost for Spirit Stance will be deducted before the skill is used. Thus, the skill will fail if the player doesn&#039;t have at least 10% Overcharge past the skill&#039;s cost.&lt;br /&gt;
*Using skills will drain [[Overcharge]] according to the table below. Additional Overcharge won&#039;t give any bonus towards the inflicted damage.&lt;br /&gt;
*All skills have a cooldown time before they can be used again.&lt;br /&gt;
*New skills are unlocked with higher [[Proficiencies]]. For Niten Ichiryu, the smaller of dual-wield and two-handed proficiencies is used for this calculation.&lt;br /&gt;
*These skills use the player&#039;s current mainhand [[Weapons|weapon]]&#039;s element / damage type unless otherwise stated.&lt;br /&gt;
*Skills can be chained. Players need to use lower-tier skills in order to activate higher-tier skills. This lasts for 5 turns each.&lt;br /&gt;
**[[Image:chain1.png]] = Tier 2 unlocked&lt;br /&gt;
**[[Image:chain2.png]] = Tier 3 unlocked&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable width=&amp;quot;100%&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
!Fighting Style&lt;br /&gt;
!Skill (Tier)&lt;br /&gt;
!Cost&lt;br /&gt;
!Cooldown&lt;br /&gt;
!width=60px|[[Proficiency|Prof.]] Required&lt;br /&gt;
!Description / Status Effect(s)&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;3&amp;quot; | [[Fighting_Styles#One-Handed|One-Handed]]&lt;br /&gt;
!Shield Bash (T1)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |25&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |0&lt;br /&gt;
|Bash an enemy with your shield to stun it, and follow up with a devastating strike with your weapon. &lt;br /&gt;
*Does NOT require a [[Shield_(Equipment)|shield]].&lt;br /&gt;
*Causes [[Equipment_Procs|Stunned]] for 5 turns.&lt;br /&gt;
*Does crushing damage.&lt;br /&gt;
|-&lt;br /&gt;
!Vital Strike (T2)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|&lt;br /&gt;
*Causes 5 stacks of [[Equipment_Procs|Bleeding Wound]] (Bleeding % = 50%) to a stunned enemy for 5 turns.&lt;br /&gt;
*Deals extra damage to a stunned enemy.&lt;br /&gt;
|-&lt;br /&gt;
!Merciful Blow (T3)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |75&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |100&lt;br /&gt;
|Finish off a mortally wounded enemy.&lt;br /&gt;
*Instantly kills a bleeding target with less than 25% health.&lt;br /&gt;
**A target with more than 25% health simply takes damage.&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;3&amp;quot; | [[Fighting_Styles#Dual_Wielding|Dual Wielding]]&lt;br /&gt;
!Iris Strike (T1)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |5&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |0&lt;br /&gt;
|A precision strike towards the sensory organs of your enemy inflicts massive damage and temporarily blinds it.&lt;br /&gt;
*Causes [[Spells#Deprecating_Magic|Blind]] for 100 turns.&lt;br /&gt;
|-&lt;br /&gt;
!Backstab (T2)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |5&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|Ponies do it from behind.&lt;br /&gt;
*Deals extra damage on Blinded targets.&lt;br /&gt;
*Has a ~50% chance to inflict a Poison effect on Blinded targets for 15 turns.&lt;br /&gt;
|-&lt;br /&gt;
!Frenzied Blows (T3)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |75&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |100&lt;br /&gt;
|Go nuts.&lt;br /&gt;
*Hits up to 5? adjacent enemies for a total of 10-20 hits (depends on the number of enemies).&lt;br /&gt;
|-&lt;br /&gt;
! rowspan=&amp;quot;4&amp;quot; | [[Fighting_Styles#Two-Handed|2-Handed Weapon]]&lt;br /&gt;
|-&lt;br /&gt;
!Great Cleave (T1)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |0&lt;br /&gt;
|Focus a powerful strike on a single enemy.&lt;br /&gt;
|-&lt;br /&gt;
!Rending Blow (T2)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|Tears through enemy defenses, leaving them vulnerable for followup attacks. &lt;br /&gt;
*Inflicts 3 stacks of Penetrated Armor on all targets.&lt;br /&gt;
|-&lt;br /&gt;
!Shatter Strike (T3)&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |100&lt;br /&gt;
|A mighty swing with your weapon causes your enemies to stagger.&lt;br /&gt;
*Inflicts Stunned on all targets if chained of off Rending Blow.&lt;br /&gt;
|-&lt;br /&gt;
![[Fighting_Styles#Niten_Ichiryu|Niten Ichiryu]]&lt;br /&gt;
!Skyward Sword&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |100&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |0&lt;br /&gt;
|Channels the power of the heavens for a powerful strike that causes massive carnage.&lt;br /&gt;
*Inflicts both 3 stacks of Penetrated Armor (reduced to 25% mitigation) and 5 stacks of Bleeding Wound (Bleeding % = 20%) up to 5 targets.&lt;br /&gt;
|-&lt;br /&gt;
![[Fighting_Styles#Staff|Staff]]&lt;br /&gt;
!Concussive Strike&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |0&lt;br /&gt;
|Focus your power into a precision strike towards the head of your enemy, causing major damage and stunning it.&lt;br /&gt;
*Causes Stunned for 5 turns. Will not refresh an existing stun.&lt;br /&gt;
*Does magical damage, not physical.&lt;br /&gt;
*Can proc [[Fighting_Styles#Staff|Coalesced Mana]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Special Skills==&lt;br /&gt;
Skills that have special requirements to unlock.&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Skill !! Cost !! Cooldown !! Status Effect&lt;br /&gt;
|-&lt;br /&gt;
!Orbital Friendship Cannon&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |200&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |50&lt;br /&gt;
|Massive AoE damage to all enemies on the battlefield.&lt;br /&gt;
*Hits up to 10 targets.&lt;br /&gt;
*Does [[Void]] damage.&lt;br /&gt;
*Unlocked as long as the player owns at least 21 different [[collectables]].&lt;br /&gt;
*Damage can be greatly increased via the Manehattan Project [[Hath Perk]].&lt;br /&gt;
|-&lt;br /&gt;
!FUS RO DAH&lt;br /&gt;
&#039;&#039;(The Power of the Dragonborn)&#039;&#039;&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |100&lt;br /&gt;
|style=&amp;quot;text-align: center&amp;quot; |10&lt;br /&gt;
|Damages and temporarily staggers all enemies on the battlefield.&lt;br /&gt;
*Does [[Void]] damage.&lt;br /&gt;
*Causes Stunned for 5 turns.&lt;br /&gt;
*Unlocked by obtaining and using the Dovahkiin [[title]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Damage==&lt;br /&gt;
&amp;lt;!-- Overcharge for damage calculations is the Overcharge before skill use (otherwise a skill that used all OC would do 0 damage). --&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&#039;&#039;&#039;Base Skill Damage&#039;&#039;&#039; = Physical_Attack_Base_Damage * Skill_Multiplier &amp;lt;!--* Overcharge --&amp;gt;* 0.02&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Skill Name&lt;br /&gt;
!Skill Multiplier&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&#039;&#039;&#039;1H&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Shield Bash || 1?&lt;br /&gt;
|-&lt;br /&gt;
|Vital Strike || 2.5?, 5? if stunned&lt;br /&gt;
|-&lt;br /&gt;
|Merciful Blow || 5? if Monster HP &amp;gt; 25%&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&#039;&#039;&#039;2H&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Great Cleave || 2.5?&lt;br /&gt;
|-&lt;br /&gt;
|Rending Blow || 1?&lt;br /&gt;
|-&lt;br /&gt;
|Shatter Strike || 1?&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&#039;&#039;&#039;Dual Wield&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Iris Strike || 1.5?&lt;br /&gt;
|-&lt;br /&gt;
|Backstab || 2.5?, 5? if blinded&lt;br /&gt;
|-&lt;br /&gt;
|Frenzied Blows || 1?&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&#039;&#039;&#039;Niten&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Skyward Sword || 1?&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&#039;&#039;&#039;Staff&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Concussive Strike || 1.5?&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&#039;&#039;&#039;Special&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Orbital Friendship Cannon || 5?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Abilities]]&lt;br /&gt;
*[[Overcharge]]&lt;br /&gt;
*[[Spells]]&lt;br /&gt;
&lt;br /&gt;
{{HVnav}}&lt;/div&gt;</summary>
		<author><name>LostLogia4</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=Installing_H@H_on_Debian&amp;diff=30122</id>
		<title>Installing H@H on Debian</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Installing_H@H_on_Debian&amp;diff=30122"/>
		<updated>2014-07-25T15:27:44Z</updated>

		<summary type="html">&lt;p&gt;LostLogia4: Make the H@Home execute command more CP friendly&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==Requirements==&lt;br /&gt;
* Being able to use Google.&lt;br /&gt;
&lt;br /&gt;
* Basic Linux knowledge.&lt;br /&gt;
&lt;br /&gt;
* A running Debian GNU/Linux server.&lt;br /&gt;
&lt;br /&gt;
* PuTTY or any other SSH program to connect to your server. This allows for copying/pasting of commands.&lt;br /&gt;
&lt;br /&gt;
* An “active” H@H client (http://g.e-hentai.org/hentaiathome.php).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===A couple things to be aware of before starting===&lt;br /&gt;
&lt;br /&gt;
* Linux IS case sensitive on file names. Therefore, it is best to use lower case names everywhere to make it easier for yourself.&lt;br /&gt;
&lt;br /&gt;
* Commands you should type are given in &amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;Green&amp;lt;/FONT&amp;gt;;&lt;br /&gt;
* Output from the command prompt is given in &amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;Red&amp;lt;/FONT&amp;gt;;&lt;br /&gt;
* Text in commands that you&#039;ll probably need to change is given in &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;Blue&amp;lt;/FONT&amp;gt;.&lt;br /&gt;
* Commands starting with &#039;&#039;&#039;$&#039;&#039;&#039; are to be run as current user, those starting with &#039;&#039;&#039;#&#039;&#039;&#039; - as root (using su/sudo).&lt;br /&gt;
&lt;br /&gt;
* This manual is based on a virtual server (VPS/VDS). The use of a physical server, home PC or any program other than VMware to virtualize your server may require doing some things differently.&lt;br /&gt;
&lt;br /&gt;
==Installing Java==&lt;br /&gt;
To run the H@H server you will have to have Java installed on the server.&lt;br /&gt;
&lt;br /&gt;
Now select Java package on [http://www.oracle.com/technetwork/java/javase/downloads/index.html official download page], accept license and copy download link depending on your OS (32-bit/64-bit).&lt;br /&gt;
&lt;br /&gt;
For our case JDK isn&#039;t needed. If you need some monitoring tools (and know how to use them) - pick Server JRE. Otherwise, your choice is JRE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the JRE can be with the following command:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget --no-cookies --header &amp;quot;Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F&amp;quot; &amp;quot;http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-linux-x64.tar.gz&amp;quot;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create directory for JVM in /opt:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# mkdir /opt/java-oracle&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unpack the downloaded archive in /opt:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# tar -zxf &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;jre-7u51-linux-x64.tar.gz&amp;lt;/FONT&amp;gt; -C /opt/java-oracle&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set our JVM to be used as the default Java on the system:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ Java_Home=/opt/java-oracle/&amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;jre1.7.0_51&amp;lt;/FONT&amp;gt;&lt;br /&gt;
# update-alternatives --install /usr/bin/java java ${Java_Home%*/}/bin/java 20000&lt;br /&gt;
# update-alternatives --install /usr/bin/javac javac ${Java_Home%*/}/bin/javac 20000&lt;br /&gt;
# update-alternatives --install /usr/bin/javaws javaws ${Java_Home%*/}/bin/javaws 20000&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify (or set) JVM to be used as a default Java on the system:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# update-alternatives --config java&lt;br /&gt;
&amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;There is only one alternative in link group java (providing /usr/bin/java): /opt/java-oracle/jre1.7.0_51/bin/java&lt;br /&gt;
Nothing to configure.&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify Java version:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ java -version&lt;br /&gt;
&amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;java version &amp;quot;1.7.0_51&amp;quot;&lt;br /&gt;
Java(TM) SE Runtime Environment (build 1.7.0_51-b13)&lt;br /&gt;
Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing H@H==&lt;br /&gt;
&lt;br /&gt;
For more security let&#039;s create new user for H@H:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# adduser &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now login as the new user and create a directory for H@H client:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# login &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&lt;br /&gt;
$ mkdir &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Download H@H (check for the latest version [http://g.e-hentai.org/hentaiathome.php here]):&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget http://hentaiathome.net/get/HentaiAtHome_1.2.0.zip&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip the downloaded archive (install unzip if you haven&#039;t yet):&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ unzip HentaiAtHome_1.2.0.zip -d &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath/&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Well done, let&#039;s launch it!&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ cd &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&lt;br /&gt;
$ java -jar HentaiAtHome.jar&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your client ID and Password which you can find on [http://g.e-hentai.org/hentaiathome.php your H@H page]&lt;br /&gt;
&lt;br /&gt;
You will need to configure your client settings on the above page before you get your client password. If you have not applied to run a H@H client yet, you will have to do so first.&lt;br /&gt;
&lt;br /&gt;
To stop the server, press &amp;quot;Ctrl+C&amp;quot; and wait for a couple seconds.&lt;br /&gt;
&lt;br /&gt;
==Run H@H as service==&lt;br /&gt;
&lt;br /&gt;
Now, finally, we&#039;ve got our H@H. But to start it manually every single time is quite a bother.&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the init script to make work with H@H more comfortable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the script:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget https://github.com/Yukariin/hath-scripts/raw/master/hentaiathome -O hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you haven&#039;t created new user for H@H - edit presented script and replace USER and DIR variables to your correct:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ nano hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Copy script into /etc/init.d:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# cp hentaiathome /etc/init.d/&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fix chmod:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# chmod 755 /etc/init.d/hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Stop H@H if it already running and start  is as a service:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# /etc/init.d/hentaiathome start&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And check if it is working properly:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# /etc/init.d/hentaiathome status&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or by using top/htop. You can also see the server status on [http://g.e-hentai.org/hentaiathome.php your H@H page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now let&#039;s make H@H auto start:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# update-rc.d hentaiathome defaults&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So if your server will reboot, H@H will start automatically right after boot.&lt;br /&gt;
&lt;br /&gt;
You can start/stop/restart H@H as a simple service.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also you can get systemd service for H@H [https://github.com/Yukariin/hath-scripts/blob/master/systemd.service here]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Hentai@Home]]&lt;br /&gt;
*[[Installing H@H on Ubuntu]]&lt;br /&gt;
*[http://forums.e-hentai.org/index.php?showtopic=19795&amp;amp;st=0&amp;amp;p=797807&amp;amp;#entry797807 Advanced Linux Installation]&lt;br /&gt;
&lt;br /&gt;
[[Category:E-Hentai Galleries]]&lt;/div&gt;</summary>
		<author><name>LostLogia4</name></author>
	</entry>
</feed>