Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
Yes. A separate port for each uTorrent.
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
Great guide NAQ, it's very straightforward. However, I've run into a problem. At Step 7, when I try to set up the FTP portion of the server, things dont seem to be working. I am using Debian on a Leaseweb box btw. This is the step I'm stuck at:
Here, we need to enter the root password to switch to the root user.
Create a new SSH certificate for VSFTPD:
Code:
# openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /root/vsftpd.pem -out /root/vsftpd.pem
When I type this in, i get the error "bash: openssl: command not found
EDIT: I've also made another mistake; I mistakedly right clicked in the main gui and clicked exit. Now all it says is "ressFamily not implemented!" every time i connect with tightvnc viewer. To be more specific, I can connect, but I can't do anything any more.
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
Your server needs openssl:
# apt-get install openssl
You'll have to restart the vncserver for your second issue.
$ vncserver -kill :1
$ vncserver :1
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
How can i exactly downgrande from 1.1.1 to 0.9.25 version of wine ?
I keep getting low peer connections.
OS: Debian 4.0 (Etch)
Thanks in advance.
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
You can try the following:
- Stop the running uTorrent
- Uninstall wine:
# apt-get --purge remove wine
- remove the budgetdedicated.com repo:
# rm /etc/apt/sources.list.d/winehq.list
- Install the older wine:
# apt-get update
# apt-get install wine
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
It worked.
My server is now running again at full speed - 10 or 11 MB/s up and down.
Big thanks. :cool:
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
Thanks naq, it worked for me. However, I have a new problem now. I've installed both firefox and vlc but when i try to launch them i get this error:
Code:
sh-3.1$ firefox
Error: Cairo does not yet support the requested image format:
Depth: 8
Alpha mask: 0x00000000
Red mask: 0x00000007
Green mask: 0x00000038
Blue mask: 0x000000c0
Please file an enhacement request (quoting the above) at:
http://bugs.freedesktop.org/enter_bug.cgi?product=cairo
firefox-bin: /build/buildd/libcairo-1.2.4/src/cairo-image-surface.c:155: _cairo_format_from_pixman_format: Assertion `NOT_REACHED' failed.
Aborted
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
That's a known bug: https://bugs.freedesktop.org/show_bug.cgi?id=4945
I think the simple fix is to restart vncserver with the -depth syntax, try:
$vncserver -kill :1
$vncserver -depth 16 :1
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)
Thanks naq !!!
I have problems with settung up the VNC Desktop.
When I type in "vncserver :1" it says:
"-bash: vncserver: command not found"
What should I do?
Re: NaQ's Complete Setup Guide for Linux Seedboxes (Fedora Core/CentOS/Debian/Ubuntu)