Hello, has somebody tried to hack SONY NAC-HD1 250GB Gigajuke?
The one thing I changed, I expanded storage from 250GB to 1TB of storage.
Show next post below.
Expanding size of your Sony NAC-HD1 is pretty easy.
I'll be glad to help you considering NAC-HD1 and moving data partitions to larger hard disk, such as 3TB western digital sataIII drive, cause I have my own NAC-HD1E @ home I migrate all of my music to larger disk.
In Europe, sony provide NAC-HD1E model, without "ANY MUSIC" function, other functions are exact to Sony's NAC-HD1 Japanese model.
I wrote down things you need to expand NAC-HD1E/NAC-HD1 on larger disk:
1) Destination drive (1TB, 2TB, 3TB ... etc) I used WESTERN DIGITAL, 1TB, SATA, 7200RPM, 32MB cache, RE WD1002FBYS
2) SATA TO IDE CONVERTER BOARD (sony use old parallel ata controller and nowadays P-ATA is going to disappear completely, further disks are provided only on sata interface.
N.B.!!! Remeber, that SATA does not need MASTER and SLAVE modes, theese modes can be selected on CONVERTER BOARD. As we know, system uses hard disk to boot, you need to set it as MASTER disk on CONVERTER, and CD-ROM - SLAVE
3) personal computer (PC) with P-ATA and S-ATA (sata) connectors and linux distribution Live CD, personally I used Fedora core 12 Live CD
4) Acronis Disk Director bootable CD
5) elementary knowledge of basic Linux/UNIX shell commands
Instructions (STEP BY STEP):
1) open GigaJuke Deck, disassemble hard disk and it's connectors from unit
2) connect both NAC-HD1 orginal P-ATA hard disk and the new one SATA hard disk drive on which you want to clone GigaJuke to PC
3) boot your computer with linux live and enter system console via terminal and with super-user rights
Type su at the command promt:
linux# su
Then we need device names with apropriate dev's
linux# ls /dev
then output shows /dev/hda1 /dev/sdb1 etc
on system properties under hard disk managment you can detect hard disk's system name.
For example, let's say the first drive (original drive from JukeBox) is called /dev/hda (ATA drive) and the destination /dev/sdb (new disk where all information is going to be copied sector by sector)
Linux/UNIX cames with utility called data dump, you can execute it by entering command dd with parameters.
dd utility can copy hard disk contents sector by sector.
to copy original disk contents (boot record, partitions - swap, ext3 fs)
you must type the command dd if=/dev/hda of=/dev/sdb bs=65536
where:
dd - data dump utility,
if=/dev/hda - source or input drive (listed as hda under dev) ,
of=/dev/sdb destination or output drive (listed as sdb under dev) ,
bs = 65536 (64k) - block size (in bytes) typicaly used for harddrive standard block sizes. N.B.!!! do not increase bs size under 64k, it will lead to errors during sector syncronize, smaller values susch as bs=32768 (32k) also can be used, but it takes longer to copy a disk.
after copying the disk clone was completed. Only left one problem, after copying, there are only 250GB of allocated space on disk.
N.B.!!! Do not use Acronis True Image, it will corrupt swap partition size and need to do disk clone again.
Need to resize partition, it's done by Acronis Disk Doctor. You need to boot Acronis Disk Doctor CD and resize partition.
after resize boot again linux live cd and shell promt type command fsck fsck sdb and wait till check is complete.
Shut down computer and disconnect new hard disk and prepare to put it on GigaJuke Deck.
Putting new disk on GigaJuke
Assemble hard disk holder unit. Place The converter board on sata connector on hard disk, then wire connectors to converter board and connect PATA cable.
GigaJuke is ready
The you can fully assemble sony's deck unit. Turn the unit on and wait until it boots. I'll recommend that U have a backup copy of you music and reformat the new free space with format function on NAC-HD1, then restore again, because NAC-HD1 creates indexes for storage, and sometimes unit will be not happy to detect that unit has more storage than it was on previous format.
Question
Andris Vasers
Hello, has somebody tried to hack SONY NAC-HD1 250GB Gigajuke?
The one thing I changed, I expanded storage from 250GB to 1TB of storage.
Show next post below.
Expanding size of your Sony NAC-HD1 is pretty easy.
I'll be glad to help you considering NAC-HD1 and moving data partitions to larger hard disk, such as 3TB western digital sataIII drive, cause I have my own NAC-HD1E @ home I migrate all of my music to larger disk.
In Europe, sony provide NAC-HD1E model, without "ANY MUSIC" function, other functions are exact to Sony's NAC-HD1 Japanese model.
I wrote down things you need to expand NAC-HD1E/NAC-HD1 on larger disk:
1) Destination drive (1TB, 2TB, 3TB ... etc) I used WESTERN DIGITAL, 1TB, SATA, 7200RPM, 32MB cache, RE WD1002FBYS
2) SATA TO IDE CONVERTER BOARD (sony use old parallel ata controller and nowadays P-ATA is going to disappear completely, further disks are provided only on sata interface.
Show this link: http://www.cooldrive...toidecofor.html
N.B.!!! Remeber, that SATA does not need MASTER and SLAVE modes, theese modes can be selected on CONVERTER BOARD. As we know, system uses hard disk to boot, you need to set it as MASTER disk on CONVERTER, and CD-ROM - SLAVE
3) personal computer (PC) with P-ATA and S-ATA (sata) connectors and linux distribution Live CD, personally I used Fedora core 12 Live CD
4) Acronis Disk Director bootable CD
5) elementary knowledge of basic Linux/UNIX shell commands
Instructions (STEP BY STEP):
1) open GigaJuke Deck, disassemble hard disk and it's connectors from unit
2) connect both NAC-HD1 orginal P-ATA hard disk and the new one SATA hard disk drive on which you want to clone GigaJuke to PC
3) boot your computer with linux live and enter system console via terminal and with super-user rights
Type su at the command promt:
linux# su
Then we need device names with apropriate dev's
linux# ls /dev
then output shows /dev/hda1 /dev/sdb1 etc
on system properties under hard disk managment you can detect hard disk's system name.
For example, let's say the first drive (original drive from JukeBox) is called /dev/hda (ATA drive) and the destination /dev/sdb (new disk where all information is going to be copied sector by sector)
Linux/UNIX cames with utility called data dump, you can execute it by entering command dd with parameters.
dd utility can copy hard disk contents sector by sector.
to copy original disk contents (boot record, partitions - swap, ext3 fs)
you must type the command dd if=/dev/hda of=/dev/sdb bs=65536
where:
dd - data dump utility,
if=/dev/hda - source or input drive (listed as hda under dev) ,
of=/dev/sdb destination or output drive (listed as sdb under dev) ,
bs = 65536 (64k) - block size (in bytes) typicaly used for harddrive standard block sizes. N.B.!!! do not increase bs size under 64k, it will lead to errors during sector syncronize, smaller values susch as bs=32768 (32k) also can be used, but it takes longer to copy a disk.
after copying the disk clone was completed. Only left one problem, after copying, there are only 250GB of allocated space on disk.
N.B.!!! Do not use Acronis True Image, it will corrupt swap partition size and need to do disk clone again.
Need to resize partition, it's done by Acronis Disk Doctor. You need to boot Acronis Disk Doctor CD and resize partition.
after resize boot again linux live cd and shell promt type command fsck fsck sdb and wait till check is complete.
Shut down computer and disconnect new hard disk and prepare to put it on GigaJuke Deck.
Putting new disk on GigaJuke
Assemble hard disk holder unit. Place The converter board on sata connector on hard disk, then wire connectors to converter board and connect PATA cable.
GigaJuke is ready
The you can fully assemble sony's deck unit. Turn the unit on and wait until it boots. I'll recommend that U have a backup copy of you music and reformat the new free space with format function on NAC-HD1, then restore again, because NAC-HD1 creates indexes for storage, and sometimes unit will be not happy to detect that unit has more storage than it was on previous format.
Believe, this may help
Link to comment
Share on other sites
21 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.