Category Archives: Electronics

Linkstation on Linux

Linkstation on Linux

I got myself a Buffalo Linkstation (NAS) and got some Linux experiences with it the tough way. Especially I’ve had my share of learning, man’ing when trying to mount this beast. So I hope that sharing this will help somebody getting an easy experience.

This is based on a live Ubuntu 10.04. Linux is not officially supported by Buffalo and what you do is on your own risk.

Prerequisites

To be able to mount, you need the smbfs package as it contains mount.cifs:

sudo apt-get install smbfs

Mounting Linkstation

We need to ensure that some important things are in place when mounting

The IP address is 192.168.1.36 and the shared directory is “share”

First argument is

//192.168.1.36/share

. Remember the leading double slash or it will fail.

We would like to mount at /media/linkstation
Second argument is

/media/linkstation

. Remember to create the directory.

The charset must be correct. Otherwise, “Røde Mor” becomes “R├╕de Mor”
use options

iocharset=utf8,codepage=cp437

. Don’t ask me why, but I guess that it has something to do with the codepage that Windows uses

The user/group must match be “ubuntu” (default is root)
use options

uid=999,gid=999

. “999″ is looked up in

/etc/passwd

.

Linkstation shall use the guest account and avoid password
option

guest

now, the full command line becomes

<span style="background-color: #ff99cc">sudo mount.cifs //192.168.1.36/share /media/linkstation -oguest,uid=999,gid=999,iocharset=utf8,codepage=cp437</span>

Remember the -o or the options will be silently ignored :pinch:

Now, the Linkstation is nicely mounted and the file names are encoded correctly. To unmount, simply type

sudo unmount /media/linkstation

Happy Linkstation’ing!

Update me when site is updated

Subwoofer Project

Subwoofer Project

This post will be updated as I decide on the different aspects.

I’ve decided to build a subwoofer + amp for my old, rusty, trustworthy Felicia. This is how my brainstorm has ended up so far:

TDA1562 based amp

Like http://www.stardi.com/diy-12-volt-chip-amp-70-watts-car-power-amplifier/

Requires ~12V and provides 70W music power into 4Ω.

I considered building a class D amplifier, but learned that class D requires a switch mode power supply in order to provide mentionable power. During my research, I continously stumbled upon Phillips TDA1562 which operates as a combination of class-AB and class-H depending on temperature, allowing it to deliver up to 70W depending on supply voltage and die temperature.

The basic TDA1562 setup requires only a small number of passives: some capacitors for the power supply, two giant capacitors for the class-H operation and a couple of other passives.

Speaker Unit(s)

To be decided.

Should look mean, but sound good and be not-too-pricey.

Speaker Box

Should be covered with.
  • Tweed and round headed nails + alu/metal dashboard (a’la 60′s guitar amp)
  • Cotton filling + fake leather + sofa buttons
  • Fake fur
  • Tartan
  • Hessian
  • Fake leopard
  • Latex
  • Varnish
  • Lace or cutwork
  • Wood laminate

Decoration/status LEDs (under cloth?)

  • Skull
  • Smiley
  • VU
  • Status/Clip
  • Foot tapping guy
Dimensions
To be decided – depends on speaker
Size
To be decided- depends on speaker

Shape/type

To be decided- depends on speaker

Update me when site is updated