Freelink - Convert the LinkStation into a Full-fledged Debian Linux Server
From NAS-Central Buffalo - The Linkstation Wiki
This article Based on work by frontalot and mox69. Originally by frontalot. at Linkstationwiki.org
How to Convert the LinkStation into a Full-fledged Debian Linux Server
The following guide will attempt to explain the steps involved in converting a stock Buffalo LinkStation into a fully functional Linux system with Samba administered via Webmin/SSH. The following is a list of things that I will assume from the reader:
- You have a basic understanding of Linux command line functions.
- Your LinkStation must be connected to the Internet! I have mine connected via a standard 5 port router to take advantage of the router's DHCP capabilities.
- It will be handy to have the IP addresses of your ISP’s DNS servers.
- You know the current IP address of your LinkStation.
- Some familiarity with the Linux text editor called “vi.”
Install FreeLink
1) Install FreeLink First: Get the latest version of FreeLink from the downloads area
| LS1 | freelink_powerpc-hdhlan-1.11.zip | |
| LS2 | freelink_mipsel-hdhlan-060810.zip | |
| HG | freelink_powerpc-hdhglan-1.11.zip |
2) Flash The The LinkStation firmware flasher
- Open the archive and carefully read the included README file for any specific instructions.
- Disable any firewall(s), including any built-in Windows firewall
- Make sure the LinkStation and your PC are on the same sub-network. This likely requires that you change the IP address (and probably the subnet-mask) of your PC and router to a different IP address (out of the box the LS should start out on 192.168.1.XXX but in EM Mode it will have a static IP address of 192.168.11.150)
- Run the firmware updater executable HD-???LAN FWUpdate-english.exe
- After finding your LinkStation, press the "Renew Firmware" button, and wait. Have patience, and keep your calm. If you think the Firmware updater is acting strange, do not try to disconnect the LinkStation or abort the update in another way.
- After flashing connect your LinkStation up to the network with subnet 192.168.1.XXX
- Find your LinkStation on the network and Telnet to it with PuTTYtel You will be at the root shell.
login as: root , password: freelink |
Debian GNU/Linux 3.1 %h
root@LinkStation:/#
3) Change the root password
passwd root
- If you want to name your LinkStation something besides LinkStation, type the following commands (replacing BuffaloNas with your choice of name):
echo “127.0.0.1 BuffaloNas” > /etc/hosts hostname BuffaloNas export hosts echo “BuffaloNas” > /etc/hostname
- Do you need to use static network settings? Click here.
Install Software
4) Test your Internet connection:
ping www.google.com
if you get no response you will have to edit the /etc/resolv.conf file and add a DNS server address to the bottom
/etc/resolv.conf
#frontalot's static setup (adjust to your network settings) # search nameserver 192.168.1.1 nameserver <<DNS SERVER IP>>
5) Now we can begin installing software. Debian uses a program called The Advanced Packaging Tool (apt) to manage the software on your computer. Think of it as a very advanced command line version of Windows add / remove programs. First update the apt package list and install SSH:
apt-get update
6) Then install OpenSSH:
note: this step is only necessary for the PowerPC(LS1,HG) versions of freelink. The MIPSel(LS2) version comes with SSH enabled
apt-get install ssh
7) Answer the installation prompts, making sure to enable the SSH daemon (server). Now use your favorite SSH program to make sure we can SSH in (I prefer PuTTY). If SSH is working you should be able to log in like this:
8) You should upgrade all currently installed programs:
apt-get upgrade
9) Now close out your telnet session and disable the telnet daemon (utelnetd):
rm /etc/rc2.d/S05utelnetd
10) Let's install specific packages. Type the following at the SSH prompt:
apt-get install samba smbfs
11) For Debian, Webmin no longer exists in the Stable repository. It was removed some time ago from unstable at the request of the maintainer. As a result it never made it into testing and at present does not exist in Etch (the current Stable)[1]

