<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Installing &amp; Configuring Programs (new threads)</title>
		<link>http://mybookworld.wikidot.com/forum/c-34764/installing-configuring-programs</link>
		<description>Threads in the forum category &quot;Installing &amp; Configuring Programs&quot; - Discussion about installing and configuring various programs on MBWE</description>
				<copyright></copyright>
		<lastBuildDate></lastBuildDate>
		
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-200672</guid>
				<title>usb over network</title>
				<link>http://mybookworld.wikidot.com/forum/t-200672/usb-over-network</link>
				<description>usbip binary for WD MyBook</description>
				<pubDate>Sun, 29 Nov 2009 20:31:20 +0000</pubDate>
				<wikidot:authorName>kisamartin</wikidot:authorName>				<wikidot:authorUserId>409306</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>usbip makes it easy to share your usb port to other computers on your network..<br /> see <a href="http://www.nslu2-linux.org/wiki/HowTo/UseUsbIpOnTheNSLU2">http://www.nslu2-linux.org/wiki/HowTo/UseUsbIpOnTheNSLU2</a></p> <p>this works well on mybook..</p> <p>you need to install:</p> <ol> <li>libglib2.0-0</li> <li>libsysfs2</li> <li>libwrap0-dev</li> </ol> <p>download usbip for mybook here: <a href="http://alvnet.eu.org/usbip-0.1.7-arm-mybook.tar.gz">http://alvnet.eu.org/usbip-0.1.7-arm-mybook.tar.gz</a><br /> extract and place the files where you want them..</p> <p>install usbip on the client<br /> ubuntu: apt-get install usbip<br /> windows: <a href="http://sourceforge.net/projects/usbip/">http://sourceforge.net/projects/usbip/</a></p> <p>[Usage] (<a href="http://usbip.svn.sourceforge.net/viewvc/usbip/linux/trunk/src/README?view=markup">http://usbip.svn.sourceforge.net/viewvc/usbip/linux/trunk/src/README?view=markup</a>)<br /> 35 server:# (Attach your USB device physically.)<br /> 36<br /> 37 server:# insmod usbip_common_mod.ko<br /> 38 server:# insmod usbip.ko<br /> 39 - It was formerly named as stub.ko.<br /> 40<br /> 41 server:# usbipd -D<br /> 42 - Start usbip daemon.<br /> 43<br /> 44 server:# usbip_bind_driver —list<br /> 45 - List driver assignments for usb devices.<br /> 46<br /> 47 server:# usbip_bind_driver —usbip 1-2<br /> 48 - Bind usbip.ko to the device of busid 1-2.<br /> 49 - A usb device 1-2 is now exportable to other hosts!<br /> 50 - Use 'usbip_bind_driver —other 1-2' when you want to shutdown exporting<br /> 51 and use the device locally.<br /> 52<br /> 53<br /> 54 client:# insmod usbip_common_mod.ko<br /> 55 client:# insmod vhci-hcd.ko<br /> 56 - It was formerly named as vhci.ko.<br /> 57<br /> 58 client:# usbip —list server<br /> 59 - List exportable usb devices on the server.<br /> 60<br /> 61 client:# usbip —attach server 1-2<br /> 62 - Connect the remote USB device.<br /> 63<br /> 64 client:# usbip —port<br /> 65 - Show virtual port status.<br /> 66<br /> 67 client:# usbip —detach 0<br /> 68 - Detach the usb device.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-200185</guid>
				<title>cross-compilation of applications or kernel modules</title>
				<link>http://mybookworld.wikidot.com/forum/t-200185/cross-compilation-of-applications-or-kernel-modules</link>
				<description>Tips to help in cross compilation usues</description>
				<pubDate>Fri, 27 Nov 2009 14:10:32 +0000</pubDate>
				<wikidot:authorName>sacamante</wikidot:authorName>				<wikidot:authorUserId>82549</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have been trying to compile a kernel module (usbhid), to make mybook monitor a UPS over USB (so it can shutodown in case a power failure). I have found quite a lot of difficulties, which I finally solved, so I give some ideas here:</p> <p>The best reference I got is:<br /> <a href="http://mybookworld.wikidot.com/adding-sound-support">compile sound support</a><br /> which also refers to:<br /> <a href="http://www.ismprofessional.net/pascucci/documenti/mybook/mybook-hacking-en.html">guide installing debian</a></p> <p>When following those posts, consider also these points:<br /> - You can do it in anylinux modern version, regardless the gcc compiler inside. No need to change the linux distro compiler (e.g., I did it with Ubuntu 8.04, gcc-4.3). The reason is that the buildroot will compile the specific gcc version with cross-compilation support.<br /> - When configuring buildroot, set always soft emulated FP processor. Configure not to include any application, so it takes less time. The interesting thing is to compile basic tools and the applicable gcc compiler for arm cross compilation.<br /> - If you compile applications, the easiest is to use all which comes in the WD source package. Just put all the buildroot archives inside buildroot/dl directory (so there is no download), and configure buildroot as in the original system, e.g. with FW 1.0.18 with gcc-3, and kernel 2.6.17.14. Important point is not to get the latest uClibc snapshot, but the version a specified version (leave empty and it takes default one, already indl, I think). If setting all correct, it compiles ok, except last steps of building the root, which is not necessary.<br /> - Once you have the compiler, you can try to compile applications from source code, using the buildroot generated copiler and libraries. I have not done it, but maybe you need to touch makefiles to use correct elements. You can see how buildroot compiles applications to do the same.<br /> - If you want to compile a kernel module, it is a bit more difficult, because you need to use arm gcc-4.1 compiler generated by build root. The main problem is that buildroot and uClibc evolve, and they do not support anymore old compilers gcc-4.1 and kernel. The following worked for me:<br /> - Download the latest buildroot package and extract it. Maybe in the future it does not work, so instead of latest, take from buildroot site the one available as latest around nov-2009, which I used. The same for uClibc<br /> - In the configuration, it is the same as for applications, except that you have to enable obsolete packages, and then select the gcc-4.1 version (in my case it was gcc-4.1.2). Take the latest snapshot of uClibc. Use the latest In the kernel headers, specify manually the version 2.6.18.1 (because kernel 17 does not have headers install kernel, so buildroot fails. It seems that using this version is ok.<br /> - When you make, it takes quite a long time, because it downloads some packages and compiles big thing like gmp (I do not know why). At the end, it should compile until the erroor when creating root image, and hopefully the gcc-4.1.2 should be available.<br /> - You can then go to the vendor/kernel sources provided by WD, set the path to the generated gcc-4.1.2 compiler and try. I could obtain my module doing this.</p> <p>I hopt that with the original instructions and these tips someone with good knowledge of linux and compilation can get things to work…</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-198611</guid>
				<title>DNS Server / djbdns bind</title>
				<link>http://mybookworld.wikidot.com/forum/t-198611/dns-server-djbdns-bind</link>
				<description></description>
				<pubDate>Fri, 20 Nov 2009 15:22:29 +0000</pubDate>
				<wikidot:authorName>Alein</wikidot:authorName>				<wikidot:authorUserId>184459</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi I need to have DNS server on MB. I was trying djbdns, but even after successful compilation with daemontool it is still very tricky to run.I am able to run service dnscache only. So next on the list was bind, but this one in not even able to run.<br /> My question is . Did anyone of you install any DNS server on WD?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-198437</guid>
				<title>ipmitool and the MBWE</title>
				<link>http://mybookworld.wikidot.com/forum/t-198437/ipmitool-and-the-mbwe</link>
				<description>Compiling ipmitool for the MBWE</description>
				<pubDate>Thu, 19 Nov 2009 21:39:12 +0000</pubDate>
				<wikidot:authorName>Gompho</wikidot:authorName>				<wikidot:authorUserId>405013</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>Has anyone here tried to compile ipmitool for the MBWE. I looked through the Optware packages and didn't find any precompiled packages for ipmitool. I saw a tutorial about how to run an rc script by pressing the power button and thought it would be really useful if I could install ipmitool so that when I press the power button it could turn on one of my servers or something. If anyone has any experience in getting ipmitool on the MBWE let me know. I would greatly appreciate it.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-198072</guid>
				<title>lsusb and cups</title>
				<link>http://mybookworld.wikidot.com/forum/t-198072/lsusb-and-cups</link>
				<description>Cannot add printer, lsusb lists nothing</description>
				<pubDate>Wed, 18 Nov 2009 16:55:49 +0000</pubDate>
				<wikidot:authorName>Dudi</wikidot:authorName>				<wikidot:authorUserId>404388</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi all,</p> <p>maybe somebody can help me, I'm trying to make my printer visible in cups with no luck, so I try to check with lsusb.</p> <p>to sum up:</p> <p>- the printer is connect and turned on<br /> - user is root<br /> - lsusb (installed with ipkg install usbutils) display nothing<br /> - lsusb -t displays: cannot open /proc/bus/usb/devices<br /> - dmesg | grep usb displays:</p> <p>~ # dmesg | grep usb<br /> usbcore: registered new interface driver usbfs<br /> usbcore: registered new interface driver hub<br /> usbcore: registered new device driver usb<br /> usbcore: registered new interface driver usb-storage<br /> usb usb1: configuration #1 chosen from 1 choice<br /> usb 1-1: new full speed USB device using oxnas-ehci and address 2<br /> usb 1-1: configuration #1 chosen from 1 choice</p> <p>Any help?</p> <p>Thanks,</p> <p>D</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-197679</guid>
				<title>help installing clutch interface without gcc compiler</title>
				<link>http://mybookworld.wikidot.com/forum/t-197679/help-installing-clutch-interface-without-gcc-compiler</link>
				<description></description>
				<pubDate>Tue, 17 Nov 2009 13:50:57 +0000</pubDate>
				<wikidot:authorName>keops</wikidot:authorName>				<wikidot:authorUserId>403743</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello,<br /> I have the WD mybook world edition (white bar) with new firmware (without Gcc compiler :( )</p> <p>I tryed to install with Optware, but I have this message:</p> <div class="code"> <pre> <code>/ # /opt/bin/ipkg install clutch Nothing to be done An error ocurred, return value: 4. Collected errors: Cannot find package clutch. Check the spelling or perhaps run 'ipkg update' / #</code> </pre></div> <p>Somebody can help me ? thanks</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-197409</guid>
				<title>Installing NZBget</title>
				<link>http://mybookworld.wikidot.com/forum/t-197409/installing-nzbget</link>
				<description>Any danger installing NZBget and Feature Pack for TwonkyVision</description>
				<pubDate>Mon, 16 Nov 2009 17:43:04 +0000</pubDate>
				<wikidot:authorName>MartyF</wikidot:authorName>				<wikidot:authorUserId>403441</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I am running for quite a long time now TwonkyVision on my ByBookWorld (with blue ledrings). I would like to install additional features like NZBget on to the MBW. The easiest this can be done via the feature pack and the automatic NZBget installation procedure. Will the installation of the feature pack have any influence on my Twonky-installation and settings?</p> <p>THNX.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-197177</guid>
				<title>Installing Web Server</title>
				<link>http://mybookworld.wikidot.com/forum/t-197177/installing-web-server</link>
				<description></description>
				<pubDate>Sun, 15 Nov 2009 22:03:04 +0000</pubDate>
				<wikidot:authorName>banana_split09</wikidot:authorName>				<wikidot:authorUserId>403097</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hey Guys!</p> <p>I bought the WD World (2TB, white LED) a few days ago and I'm terribly disappointed of the Mionet service, so I tried to install the web server tutorial on my NAS. I'm quite a newbie in this kind of stuff, but I can follow instructions :-D.</p> <p>Well, I activated SSH with the no-hack method. That worked out quite well. Afterwards I installed Teraterm on my PC and logged in with root/welc0me. This worked out too and I rebooted and tried to install the web server. That's the point where I got stuck. When I enter cd /shares/internal/public the box tells me that this folder doesn't exist or something. So i tried to install optware first. This was successful, too as far as I interpret that xD. I also tried to access my NAS via FTP. This didn't work at first, but worked out when I entered the main directory (/shares/internal/public). I saw the scructure and all the data on the NAS.</p> <p>What do I have to do to make the web server work?</p> <p>Thanks in advance</p> <p>Banana_Split</p> <p>P.S. I've done all the routing and so on with my father, so this is all fine. I can access my NAS via dyndns…</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-196121</guid>
				<title>Help Installing new Samba Version to White Bar</title>
				<link>http://mybookworld.wikidot.com/forum/t-196121/help-installing-new-samba-version-to-white-bar</link>
				<description></description>
				<pubDate>Thu, 12 Nov 2009 08:34:00 +0000</pubDate>
				<wikidot:authorName>Frankus1977</wikidot:authorName>				<wikidot:authorUserId>400734</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello,</p> <p>i'm trying to install a newer Samba Version on my WD 1TB White Bar by using ipkg. The reason for this is that i cannot connect to the samba shares of the WD using a Conceptronic CFULLHDMA Media Device with the latest firmwares (it works with older firmwares, till they changed the samba version)</p> <p>It successfully installed the Samba version 3.2.15-1 to /opt/bin on the WD. But now i'm clueless how to replace the original samba service, i. e. how to automatically start the new version at bootup. Further i need a new samba.conf as the installer told me that there's a new format of it.</p> <p>Thank you for helping.<br /> Frankus</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-194776</guid>
				<title>Itunes server: how add to ipod (White light)</title>
				<link>http://mybookworld.wikidot.com/forum/t-194776/itunes-server:how-add-to-ipod-white-light</link>
				<description></description>
				<pubDate>Sun, 08 Nov 2009 08:46:59 +0000</pubDate>
				<wikidot:authorName>Tobs</wikidot:authorName>				<wikidot:authorUserId>394512</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I enabled the itunes server in my mybook and it shows op in the shared section in Itunes. I can play music from my mybook in itunes now.<br /> But how can I sync that music with ipod nano. I can't copy the mybook files to my library. Anybody got a clue? Do I have to make a apple store account?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-193229</guid>
				<title>mini_httpd largefile support</title>
				<link>http://mybookworld.wikidot.com/forum/t-193229/mini-httpd-largefile-support</link>
				<description></description>
				<pubDate>Sun, 01 Nov 2009 21:41:20 +0000</pubDate>
				<wikidot:authorName>kpxalex</wikidot:authorName>				<wikidot:authorUserId>367156</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have written a little PHP script, to accsess my files from the internet. But i have a problem with files larger than 2GB. I can't download them (404 not found). I looked up the specifications of the mini_httpd webserver <a href="http://www.acme.com/software/mini_httpd/">here</a> and they say they have a support for files larger than 2GB. Does anyone know how to modify mini_httpd to solve this problem?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-192523</guid>
				<title>Child exited with status 1! Why?</title>
				<link>http://mybookworld.wikidot.com/forum/t-192523/child-exited-with-status-1-why</link>
				<description></description>
				<pubDate>Thu, 29 Oct 2009 17:42:49 +0000</pubDate>
				<wikidot:authorName>crossmax</wikidot:authorName>				<wikidot:authorUserId>393492</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello,<br /> I trying configurate cups service but I have 2 problems.<br /> If executed /opt/sbin/cupsd I get this error:<br /> Child exited with status 1!<br /> If I type "ldconfig" I get: command not found</p> <p>My HDD is "white led" and I update to 01.00.28 firmware.<br /> I followed this steps <a href="http://mybookworld.wikidot.com/print-server">http://mybookworld.wikidot.com/print-server</a><br /> Before I changed the parameters of cups.conf I did can entry to <a href="https://192.168.1.2:631/admin">https://192.168.1.2:631/admin</a> but my printer not found.<br /> After this changes (MaxJobs, AuthType…) I can´t run cupsd without error Child exited with status 1!<br /> My printer is supported by gutenprint driver</p> <p>Anyone can help me? please!!<br /> Thanks</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-191761</guid>
				<title>Web Server + AccessBook uploadlimit</title>
				<link>http://mybookworld.wikidot.com/forum/t-191761/web-server-accessbook-uploadlimit</link>
				<description></description>
				<pubDate>Mon, 26 Oct 2009 14:01:37 +0000</pubDate>
				<wikidot:authorName>stagejunk</wikidot:authorName>				<wikidot:authorUserId>394358</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi everyone,</p> <p>I have installed all the apps i need on my mybook, but there is still one thing that's bothering me,..<br /> The 8 mb upload limit on the webserver/accesbook app.</p> <p>Is there any way (keep in mind that im not that great in linux stuff :P) of increasing that number to arround 100 a 200 mb?</p> <p>Greetz danny<br /> (sorry for my bad english, im dutch :P)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-191195</guid>
				<title>Squeezebox server</title>
				<link>http://mybookworld.wikidot.com/forum/t-191195/squeezebox-server</link>
				<description>can it be made to work?</description>
				<pubDate>Fri, 23 Oct 2009 13:16:57 +0000</pubDate>
				<wikidot:authorName>etheric</wikidot:authorName>				<wikidot:authorUserId>393234</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I bought myself a squeezebox duet and WD world book in the hope that they could be made to work nicely together. Unfortunately the squeezebox wants to talk either to something on the internet or its own server, which is annoying.</p> <p>There is a linux version of the squeezebox software, including what is called a "perl source" version. Just wondering if anyone has tried it before I give it a go.</p> <p>THe alternataive is to take the squeezebox back and get something that talks to twonkey.</p> <p>I am worried that it will require some complex X stuff and not work at all. There is a precompiled version for a netgear NAS thoguh, which I guess has similar levels of ram/cpu to the mybook.</p> <p>Anyway open to suggestions :D.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-189302</guid>
				<title>help with SSH keys to automate login / rsync (Bluerings)</title>
				<link>http://mybookworld.wikidot.com/forum/t-189302/help-with-ssh-keys-to-automate-login-rsync-bluerings</link>
				<description>Mybook (bluerings) - Cygwin on Windows server 2003. Always have to enter password.</description>
				<pubDate>Fri, 16 Oct 2009 11:41:07 +0000</pubDate>
				<wikidot:authorName>madbook</wikidot:authorName>				<wikidot:authorUserId>390508</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi everyone,</p> <p>First off, I’m new to a lot of this so please excuse my *nix ignorance!</p> <p>What I’ve done to the mybook:<br /> 1. Enabled SSH<br /> 2. Enabled Rsync Server</p> <p>I’ve installed cygwin on a machine running server 2003. I can ssh fine to the mybook and rsync runs fine from the 2003 server once I enter a password. What I’m trying to do now is do away with the need for me to enter a password every time I run rsync. I <a href="http://mybookworld.wikidot.com/tutorial-setup-2mbwe-with-rsync-over-the-internet">followed the instructions</a> but I am still being prompted for a password.</p> <p>It’s probably something simple but it has me stumped and any help you can give would be greatly appreciated.</p> <p>Here’s what I get when I try to connect from the server 2003 box</p> <div class="code"> <pre> <code>$ ssh -vvv root@Mybook_1 OpenSSH_5.1p1, OpenSSL 0.9.8k 25 Mar 2009 debug2: ssh_connect: needpriv 0 debug1: Connecting to Mybook_1 port 22. debug1: Connection established. debug1: identity file /home/Administrator/.ssh/identity type 0 debug3: Not a RSA1 key file /home/Administrator/.ssh/id_rsa. debug2: key_type_from_name: unknown key type '-----BEGIN' debug3: key_read: missing keytype debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug2: key_type_from_name: unknown key type '-----END' debug3: key_read: missing keytype debug1: identity file /home/Administrator/.ssh/id_rsa type 1 debug3: Not a RSA1 key file /home/Administrator/.ssh/id_dsa. debug2: key_type_from_name: unknown key type '-----BEGIN' debug3: key_read: missing keytype debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug2: key_type_from_name: unknown key type '-----END' debug3: key_read: missing keytype debug1: identity file /home/Administrator/.ssh/id_dsa type 2 debug1: Remote protocol version 1.99, remote software version OpenSSH_3.9p1 debug1: match: OpenSSH_3.9p1 pat OpenSSH_3.* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_5.1 debug2: fd 3 setting O_NONBLOCK debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug2: kex_parse_kexinit: diffie-hellman-group-exchange-sha256,diffie-hellman-g roup-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 debug2: kex_parse_kexinit: ssh-rsa,ssh-dss debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour1 28,arcfour256,arcfour,aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se,aes128-c tr,aes192-ctr,aes256-ctr debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour1 28,arcfour256,arcfour,aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se,aes128-c tr,aes192-ctr,aes256-ctr debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160 ,hmac-ripemd160@openssh.com,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160 ,hmac-ripemd160@openssh.com,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: none,zlib@openssh.com,zlib debug2: kex_parse_kexinit: none,zlib@openssh.com,zlib debug2: kex_parse_kexinit: debug2: kex_parse_kexinit: debug2: kex_parse_kexinit: first_kex_follows 0 debug2: kex_parse_kexinit: reserved 0 debug2: kex_parse_kexinit: diffie-hellman-group-exchange-sha1,diffie-hellman-gro up14-sha1,diffie-hellman-group1-sha1 debug2: kex_parse_kexinit: ssh-rsa debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour, aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se,aes128-ctr,aes192-ctr,aes256-ctr debug2: kex_parse_kexinit: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour, aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se,aes128-ctr,aes192-ctr,aes256-ctr debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hmac-ripemd160@open ssh.com,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: hmac-md5,hmac-sha1,hmac-ripemd160,hmac-ripemd160@open ssh.com,hmac-sha1-96,hmac-md5-96 debug2: kex_parse_kexinit: none,zlib debug2: kex_parse_kexinit: none,zlib debug2: kex_parse_kexinit: debug2: kex_parse_kexinit: debug2: kex_parse_kexinit: first_kex_follows 0 debug2: kex_parse_kexinit: reserved 0 debug2: mac_setup: found hmac-md5 debug1: kex: server-&gt;client aes128-cbc hmac-md5 none debug2: mac_setup: found hmac-md5 debug1: kex: client-&gt;server aes128-cbc hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024&lt;1024&lt;8192) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug2: dh_gen_key: priv key bits set: 111/256 debug2: bits set: 504/1024 debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug3: check_host_in_hostfile: filename /home/Administrator/.ssh/known_hosts debug3: check_host_in_hostfile: match line 1 debug3: check_host_in_hostfile: filename /home/Administrator/.ssh/known_hosts debug3: check_host_in_hostfile: match line 1 debug1: Host 'mybook_1' is known and matches the RSA host key. debug1: Found key in /home/Administrator/.ssh/known_hosts:1 debug2: bits set: 535/1024 debug1: ssh_rsa_verify: signature correct debug2: kex_derive_keys debug2: set_newkeys: mode 1 debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug2: set_newkeys: mode 0 debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug2: service_accept: ssh-userauth debug1: SSH2_MSG_SERVICE_ACCEPT received debug2: key: /home/Administrator/.ssh/id_rsa (0xaaaa38) debug2: key: /home/Administrator/.ssh/id_dsa (0xaaaa50) debug1: Authentications that can continue: publickey,password,keyboard-interactive debug3: start over, passed a different list publickey,password,keyboard-interactive debug3: preferred publickey,keyboard-interactive,password debug3: authmethod_lookup publickey debug3: remaining preferred: keyboard-interactive,password debug3: authmethod_is_enabled publickey debug1: Next authentication method: publickey debug1: Offering public key: /home/Administrator/.ssh/id_rsa debug3: send_pubkey_test debug2: we sent a publickey packet, wait for reply debug1: Authentications that can continue: publickey,password,keyboard-interactive debug1: Offering public key: /home/Administrator/.ssh/id_dsa debug3: send_pubkey_test debug2: we sent a publickey packet, wait for reply debug1: Authentications that can continue: publickey,password,keyboard-interactive debug2: we did not send a packet, disable method debug3: authmethod_lookup keyboard-interactive debug3: remaining preferred: password debug3: authmethod_is_enabled keyboard-interactive debug1: Next authentication method: keyboard-interactive debug2: userauth_kbdint debug2: we sent a keyboard-interactive packet, wait for reply debug1: Authentications that can continue: publickey,password,keyboard-interactive debug3: userauth_kbdint: disable: no info_req_seen debug2: we did not send a packet, disable method debug3: authmethod_lookup password debug3: remaining preferred: debug3: authmethod_is_enabled password debug1: Next authentication method: password root@mybook_1's password:</code> </pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-189032</guid>
				<title>HEEELP!!! - MiniDLNA instalation on 1st edition 500GB Bluering</title>
				<link>http://mybookworld.wikidot.com/forum/t-189032/heeelp-minidlna-instalation-on-1st-edition-500gb-bluering</link>
				<description></description>
				<pubDate>Thu, 15 Oct 2009 23:53:02 +0000</pubDate>
				<wikidot:authorName>ilovemynas</wikidot:authorName>				<wikidot:authorUserId>164778</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm having some serious issues getting minidlna to run/install on my MBWE 1st edition 500Gb Bluering…..</p> <p>I first installed it via optware from the bluering feed, but every time i tried to launch it, it threw a seg fault.<br /> I then removed it and proceeded to compile from source… managed to get most of the bugs ironed out there (dependency packages and libraries with .h files were installed by optware - just had to repoint to the header files) but now am at this point:</p> <p>[root@MyBookWorld minidlna]# make<br /> make: *** No rule to make target ‘-lexif’, needed by ‘minidlna’. Stop.<br /> [root@MyBookWorld minidlna]#<br /> I'm a bit lost as far as where to go from here - what do i need to double-check first?<br /> I can post a copy of anything that will help, just let me know… Makefile, ldconfig -p output, etc…</p> <p>I really hope someone can assist here as I'd love to be able to finally stream music to my xbox 360. uShare just doesn't handle metadata or playlists very well and I've read great things about mini.</p> <p>Can anyone please offer advice on this? Thanks.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-188889</guid>
				<title>Hamachi VPN</title>
				<link>http://mybookworld.wikidot.com/forum/t-188889/hamachi-vpn</link>
				<description>How to install Hamachi VPN</description>
				<pubDate>Thu, 15 Oct 2009 16:55:41 +0000</pubDate>
				<wikidot:authorName>huotg01</wikidot:authorName>				<wikidot:authorUserId>79906</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I know that there is a thread about that (<a href="http://mybookworld.wikidot.com/forum/t-20624/hamachi-installation#post-489751">http://mybookworld.wikidot.com/forum/t-20624/hamachi-installation#post-489751</a>), but I don't see any confirmation that someone really got a working Hamachi on MBWE.</p> <p>Talking for myself, I'm unable to run Hamachi ("cannot execute binary file"), and I have problem completing the install process.</p> <p>Is there someone who has it working ?</p> <p>G.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-186898</guid>
				<title>vsftpf SSL / MyBook White Light</title>
				<link>http://mybookworld.wikidot.com/forum/t-186898/vsftpf-ssl-mybook-white-light</link>
				<description></description>
				<pubDate>Tue, 06 Oct 2009 19:47:59 +0000</pubDate>
				<wikidot:authorName>mwd</wikidot:authorName>				<wikidot:authorUserId>386495</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>I've added the following configurations to vsftpd.conf:</p> <p>ssl_enable=YES<br /> allow_anon_ssl=NO<br /> force_local_data_ssl=NO<br /> force_local_logins_ssl=NO<br /> ssl_tlsv1=YES<br /> ssl_sslv2=NO<br /> ssl_sslv3=NO<br /> rsa_cert_file=/etc/ssl.pem</p> <p>But if I try to connect via FTP over TLS/SSL i get the error: ssl_enable is set but SSL support not compiled in.</p> <p>How can I enable FTP over TLS/SSL for vsftpd in MyBoo ?</p> <p>Thank you,</p> <p>Martin</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-184641</guid>
				<title>AccessBook charset</title>
				<link>http://mybookworld.wikidot.com/forum/t-184641/accessbook-charset</link>
				<description>Problem with charset in AccessBook pages</description>
				<pubDate>Fri, 25 Sep 2009 10:46:22 +0000</pubDate>
				<wikidot:authorName>madmax13</wikidot:authorName>				<wikidot:authorUserId>381620</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi.</p> <p>I have problem with AccessBook application.<br /> I installed it using ipkg - all looked fine.<br /> But when i browsing my shares (thru webbrowser), files and dir names with national characters showed incorrectly.<br /> I looked at the page source and Content-Type was set properly: text/html; charset=utf-8, but webbrowser selected ISO-8859-1. When i force it to use utf8 it looked fine - until refresh.</p> <p>Someone solwed this?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-184046</guid>
				<title>Scheduling Torrents and modem reboot</title>
				<link>http://mybookworld.wikidot.com/forum/t-184046/scheduling-torrents-and-modem-reboot</link>
				<description></description>
				<pubDate>Tue, 22 Sep 2009 18:07:20 +0000</pubDate>
				<wikidot:authorName>ravirb</wikidot:authorName>				<wikidot:authorUserId>380354</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,I recently bought WD 1TB edition.Since I don't have unlimited internet connection :( I can only download torrents between 2AM-8AM.Also I have to reboot my modem @ 2AM and stop torrent downloads at 8AM.<br /> Is it possible to perform automatic modem reboots(Linksys WAG200G) and torrent scheduling and finally spin down HDD?<br /> Please help me.I'm linux noob.</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>