QUOTE(pigowallace @ Jan 13 2015, 18:23)

[snip]
So the question is... can I run H@H using an ext hdd on a Debian-like OS system?
Or specifically... can I run H@H on a Raspberry Pi correctly set?
Thanks
Yes it works. I'm using it on Raspbian. Here are a few advises for you:
Don't run it on sdcard. After some time it get's corrupted and Java can't handle IO errors very well and the machine will freeze.
An ext hdd is very recommended.
Uninstall openjdk and install oraclejdk, which removes a bottleneck lowering your connection speed (almost doubled my speed).
If you want to use it as a pure H@H server you could also remove all gui apps with commands like:
(use at your own risk)CODE
sudo aptitude purge gpicview xarchiver xpdf galculator scratch dillo midori netsurf-gtk
sudo aptitude purge omxplayer alsa-base alsa-utils penguinspuzzle python-pygame
sudo aptitude purge lxde-core lxde-common lxde-icon-theme lxinput lxmenu-data lxpolkit
sudo aptitude purge lxrandr lxsession lxsession-edit lxshortcut lxtask lxterminal
sudo aptitude purge lxappearance lightdm lightdm-gtk-greeter openbox ttf-dejavu-core fontconfig fontconfig-config
sudo aptitude purge fonts-freefont-ttf wpagui x11-common dbus-x11 desktop-base
sudo aptitude purge desktop-file-utils hicolor-icon-theme leafpad xdg-utils xauth
sudo aptitude purge gnome-themes-standard gtk2-engines raspberrypi-artwork wolfram-engine
sudo dpkg --configure -a
In the memory split options, assign 16MB to gpu. You can find the rest of the configuration here in the forum and in the wiki.
I am using the following script to start my server:
CODE
#!/bin/bash
sudo mount -t ntfs-3g -o uid=pi,gid=pi /dev/sda1 /home/pi/MyExtHDD
cd /home/pi/MyExtHDD/H@H/
screen -dmS HentaiAtHome java -jar HentaiAtHome.jar --disable_logging --disable_bwm --skip_free_space_check --use_more_memory
Of course you have to install ntfs-3g and screen first and adjust the path.
This post has been edited by MrCrackR: Jan 13 2015, 23:24