krausam

June 27, 2009

SSH/Shell access to iomega StorCenter ix2

Filed under: Embeded, Spielzeug, Unix — micha @ 10:55 am

I recently got the “iomega StorCenter ix2″ it’s a little NAS for home or small office use.
Soon it was clear to me that it runs Linux, and a Linux device whithout shell access is hard to bear.
After googeling for a day, I found nothing on this subject which would work whith a recent firmware version (2.0.15.43099).
So here is what I did to get access:

I opened the case to get direct access to the S-ATA HDs, then I connected the HDs to my Linux PC.
After booting up, I could see how it is configured:

My PC detected the 2 HDs as /dev/sdb and /dev/sdc.
Each HD contains 2 Linux software-raid partitions.
The first raid partition (1GB) is always raid1 and contains the firmware.
The second raid partition is raid1 or linear-raid; this is configurable whith the web interface.

After assembling the first raid with
mdadm /dev/md0 /dev/sdb1 /dev/sdc1
I could mount /dev/md0 to /mnt
mount /dev/md0 /mnt/md0
(the filesystem is ext2).
The mounted filesystem contained:

# ls -lh
drwxr-xr-x 2 root root 4.0k Mar 14 16:52 images
drwx------ 2 root root 16.0k Mar 14 15:00 lost+found
-rwx------ 1 root root 512.0M Mar 14 16:54 swapfile
# ls -lh images/
-rw-r--r-- 1 root root 163.0M Jun 25 20:37 apps
-rw-r--r-- 1 root root 5.0M Mar 14 15:03 config
-rw-r--r-- 1 root root 416.0k Jun 25 20:37 oem

The files in images/ looked like they contained what I was searching for. To find out the filetype I used file:

# file images/*
images/apps: Linux rev 0.0 ext2 filesystem data
images/config: Linux rev 0.0 ext2 filesystem data
images/oem: Linux Compressed ROM File System data, little endian size 425984 version #2 sorted_dirs CRC 0xd3a158e1, edition 0, 222 blocks, 34 files

That meant that I could simply mount the config and apps file, as they contained an ext2 filesystem.

mount -o loop /mnt/md0/images/config /mnt/config

This image file contained the /etc directory of the storage.
Now I could edit the configfiles and changed the following files:

Activate ssh:

init.d/S50ssh

There I changed:

start() {
echo -n "Starting sshd: "
#/usr/sbin/sshd
#touch /var/lock/sshd
echo "OK"
}
stop() {
echo -n "Stopping sshd: "
#killall sshd
#rm -f /var/lock/sshd
echo "OK"
}

To:

start() {
echo -n "Starting sshd: "
/usr/sbin/sshd
touch /var/lock/sshd
echo "OK"
}
stop() {
echo -n "Stopping sshd: "
killall sshd
rm -f /var/lock/sshd
echo "OK"
}


sshd_config

Changed:

Subsystem sftp /usr/sbin/sftp-server

To:

#Subsystem sftp /usr/sbin/sftp-server

To set a password I simply copied the hash from an account of my PC to the shadow file.

shadow
root:
Hash from my PCs account:10933:0:99999:7:::

After unmounting all disks, shutting down my PC, reconnecting the drives to the StorCenter and switching it on, I had access:

Starting Nmap 4.76 ( http://nmap.org ) at 2009-06-27 11:15 CEST
Interesting ports on storage (192.168.2.11):
PORT STATE SERVICE
22/tcp open ssh
MAC Address: 00:D0:B8:03:0B:33 (Iomega)

Nmap done: 1 IP address (1 host up) scanned in 0.34 seconds

ssh root@storage
root@storage's password:

BusyBox v1.8.2 (2009-01-09 09:01:03 EST) built-in shell (ash)
Enter 'help' for a list of built-in commands.

#

Some impressions from the comandline:

# mount
rootfs on / type rootfs (rw)
/dev/root.old on /initrd type ext2 (rw)
none on / type tmpfs (rw)
/dev/md0 on /boot type ext2 (rw)
/dev/loop0 on /mnt/apps type ext2 (ro)
/dev/loop1 on /etc type ext2 (rw)
/dev/loop2 on /oem type cramfs (ro)
proc on /proc type proc (rw)
none on /proc/bus/usb type usbfs (rw)
none on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw)
/dev/md1 on /mnt/soho_storage type ext3 (rw,noatime,data=ordered)
/dev/sdc1 on /mnt/soho_storage/samba/shares/conny type vfat (rw,fmask=0000,dmask=0000,codepage=cp437,iocharset=utf8)
/dev/sdd1 on /mnt/soho_storage/samba/shares/micha type ext3 (rw,data=ordered)

# df
Filesystem Size Used Available Use% Mounted on
/dev/root.old 3.7M 1.1M 2.5M 30% /initrd
none 61.8M 2.9M 58.9M 5% /
/dev/md0 980.4M 845.5M 85.1M 91% /boot
/dev/loop0 162.3M 135.7M 18.5M 88% /mnt/apps
/dev/loop1 4.8M 754.0k 3.9M 16% /etc
/dev/loop2 888.0k 888.0k 0 100% /oem
/dev/md1 922.2G 118.8G 794.1G 13% /mnt/soho_storage
/dev/sdc1 232.8G 201.3G 31.5G 86% /mnt/soho_storage/samba/shares/conny
/dev/sdd1 275.1G 549.0M 260.6G 0% /mnt/soho_storage/samba/shares/micha

# cat /proc/mdstat
Personalities : [raid1] [raid10] [linear]
md1 : active linear sda2[0] sdb2[1]
974727680 blocks 0k rounding

md0 : active raid1 sda1[0] sdb1[1]
1020032 blocks [2/2] [UU]

unused devices:

# cat /proc/cpuinfo
Processor : ARM926EJ-S rev 0 (v5l)
BogoMIPS : 266.24
Features : swp half thumb fastmult edsp
CPU implementer : 0×41
CPU architecture: 5TEJ
CPU variant : 0×0
CPU part : 0×926
CPU revision : 0
Cache type : write-back
Cache clean : cp15 c7 ops
Cache lockdown : format C
Cache format : Harvard
I size : 32768
I assoc : 1
I line length : 32
I sets : 1024
D size : 32768
D assoc : 1
D line length : 32
D sets : 1024

Hardware : Feroceon
Revision : 0000
Serial : 0000000000000000

# iostat
sda sdb md0 md1 sdc sdd cpu
kps tps svc_t kps tps svc_t kps tps svc_t kps tps svc_t kps tps svc_t kps tps svc_t us sy wt id
23 1 4.4 676 15 4.1 24 2 0.0 668 122 0.0 4 1 3.5 2 0 9.9 25 12 13 50

# sdparm -C stop /dev/sdc
/dev/sdc: ST325082 0A 3.AA

# rsync -aPh mk@schreibtisch:/home/mk/Desktop/foodir /mnt/soho_storage/samba/shares/micha/Desktop
receiving file list …
4 files to consider
foodir/
foodir/foofile1
0 100% 0.00kB/s 0:00:00 (xfer#1, to-check=2/4)
foodir/foofile2
0 100% 0.00kB/s 0:00:00 (xfer#2, to-check=1/4)
foodir/foofile3
0 100% 0.00kB/s 0:00:00 (xfer#3, to-check=0/4)

sent 92 bytes received 247 bytes 678.00 bytes/sec
total size is 0 speedup is 0.00

# lv
lvchange lvdisplay lvm lvmdiskscan lvmsar lvremove lvresize lvscan
lvcreate lvextend lvmchange lvmsadc lvreduce lvrename lvs
# pv
pvchange pvcreate pvdisplay pvmove pvremove pvresize pvs pvscan
# vg
vgcfgbackup vgchange vgconvert vgdisplay vgextend vgmerge vgreduce vgrename vgscan
vgcfgrestore vgck vgcreate vgexport vgimport vgmknodes vgremove vgs vgsplit

# top
Mem: 124424K used, 2248K free, 0K shrd, 8588K buff, 89860K cached
CPU: 53% usr 30% sys 0% nice 7% idle 0% io 0% irq 7% softirq
Load average: 1.34 0.96 1.79
PID PPID USER STAT VSZ %MEM %CPU COMMAND
18683 18682 root S 4916 4% 65% ssh krausam.de rsync –server –sender -vlogDtpr . /mnt/programme
55 2 root SW 0 0% 10% [pdflush]
1338 31651 root R 2820 2% 7% top
26256 740 root S < 352m 284% 5% /usr/sbin/appweb -r /usr/local/appweb -f appweb.conf
18709 18682 root S 6300 5% 5% rsync -aPh krausam.de:/mnt/programme ./
839 740 root S 68312 54% 0% /usr/sbin/upnpd -webdir /etc/upnpd/web
740 1 root S 11100 9% 0% /sbin/executord -c /etc/sohoConfig.xml
1790 740 root S 8276 7% 0% /usr/local/samba/sbin/smbd -F
1833 1790 root S 8276 7% 0% /usr/local/samba/sbin/smbd -F
17127 672 root S 7240 6% 0% sshd: root@pts/1
31634 672 root S 7080 6% 0% sshd: root@pts/2

45 Comments »

  1. This was a really helpful post! I was hoping that something like this would work. Thank you!

    We bought one of these to do some backups for our photography folks, and in the process of getting NFS/AFP/Samba set up, some of the user/group ownership appears to have been mangled. NFS must have some sort of root squash going on, because I couldn’t chown anything as root on a Linux box.

    After enabling the SSH access, I was able to go in as root and re-chown the mangled permissions.

    This makes me curious if I can get rsnapshot running on the box, and do automated backups without having to have a server.

    Comment by Tim — August 6, 2009 @ 8:30 pm

  2. Really a nice post! Wonder if you could even find a way to speed up writes to the device… lightspeed reading but damn slow writing, too bad!

    Good work anyway!

    Comment by Stefano — August 27, 2009 @ 2:48 pm

  3. Is it possible to port applications to ubuntu? I would like to have the web interface on my ubuntu server to.
    Thank you

    Comment by alex — October 22, 2009 @ 11:45 pm

  4. Is it possible to run sabnzbd?

    Comment by MEl — December 1, 2009 @ 4:28 pm

  5. Be aware that the page http:///support.html enables one to start and stop the ssh server.
    The ssh server is supposed to be used by support iomega personell (or the NSA?), I have not figured out which account is used for this.

    Comment by etmmvdp — December 4, 2009 @ 6:19 pm

  6. http:///support.html should read http://ip-of-nas/support.html

    Comment by etmmvdp — December 4, 2009 @ 6:24 pm

  7. big thanks for comment #6

    Comment by john — December 11, 2009 @ 5:04 am

  8. [...] I must.. I must increase my SSH ability! And while searching I came across not only this webpage SSH/Shell access to iomega StorCenter ix2 but that little gem of a webpage included this little link at the bottom! [...]

    Pingback by Iomega ix4-200d data reconstruction, ssh and more! | Christopher Kusek, Technology Evangelist — December 17, 2009 @ 6:09 am

  9. has somebody found a valid user and password combo for the ssh server?

    Comment by etmmvdp — December 20, 2009 @ 4:12 pm

  10. If someone managed to find the password for an account with ssh access (root ?), please post it here in the comments.
    Thanks !

    Comment by Marc — December 20, 2009 @ 9:03 pm

  11. Hello,
    I tried the link http://ip-of-nas/support.html on my ix2, but got redirected to the main index.html. So it seems that this file now contains a redirection…
    I am running 2.0.15.43099. Would anyone have an idea of how to get this ssh server access again?
    Thanks!

    Comment by Patrick — December 29, 2009 @ 1:35 pm

  12. You need to be logged in to see the page.

    Comment by etmmvdp — December 30, 2009 @ 6:29 pm

  13. Thanks! Weird, I thought I had done that…. anyway. Now trying to guess user/password. Did anyone have a chance yet?

    Comment by Patrick — December 31, 2009 @ 3:50 pm

  14. Thanks to Christopher Kusek: try soho as the ssh root password.
    See also http://bit.ly/8IM9g6

    Comment by etmmvdp — January 8, 2010 @ 9:16 am

  15. Thank you!
    however, it seems they changed the password in the latest firmware (2.0.15.43099).
    I found 2 shadow files in the support dump. One named “shadow” and one named “shadow-”. I could find the soho password in shadow-, but not in shadow. A “john the ripper” has been running for few hours now.

    Comment by Patrick — January 10, 2010 @ 9:34 am

  16. Hi,

    current firmware: Iomega StorCenter ix2-200 2.1.25.229
    root password soho…

    Comment by Martin — January 16, 2010 @ 10:35 pm

  17. I finally found the root password, thanks to http://bit.ly/8IM9g6 (which i had previously misread.
    If you set yout admin password to , then root password is soho.
    Cheers!

    Comment by Patrick — January 17, 2010 @ 6:06 pm

  18. shoot, my previous post got garbled…
    if admin password is myOwnPassword, then root password will be sohomyOwnPassword.

    Comment by Patrick — January 17, 2010 @ 6:07 pm

  19. has any one experience to install ps3server on the storCenter? i prefer this one to the installed …
    otta

    Comment by otta74 — January 29, 2010 @ 11:54 am

  20. I’m able to enable ssh, but I cant login. My hardware is a Iomega StorCenter ix2-200 2.1.25.229 and the “soho” prefix isn’t working. I was able to get the shadow file and I’m trying to break it, but so far john didn’t found the password. I think that the differenc between “shadow” and “shadow-” is that “shadow” is the current shadow file. “shadow-” is the previous one. I found it, because I compared it after creating a new user. The unique diference between then was that the new user was in “shadow”, but not in “shadow-”. Someone got success login in with 2.1.25.229 firmware?

    Comment by BobRivers — February 7, 2010 @ 6:56 am

  21. Sorry my noob post… yes, it work. Just now I understood that the password for root is “soho” + my admin user password.

    Comment by BobRivers — February 7, 2010 @ 1:01 pm

  22. It is a nice post. I recently bought ix2-200. I wanted to do rsync and ssh. Is there a way I can connect to NAS to start ssh daemon? I do not have linux pc. I have Windows XP pc only.

    Comment by Naveen — February 17, 2010 @ 12:13 am

  23. This one works.
    But how to access the raid?
    I want to use native cp and mv commands via ssh.
    Thanks in advance.

    Comment by lame — February 28, 2010 @ 3:34 pm

  24. I believe that data on raid is mounted on /mnt/soho_storage/samba/shares.

    Now, what I realy like to know is how we can install transmission on this device :)

    Comment by BaRRoS — February 28, 2010 @ 9:48 pm

  25. Thanks. Yeah. The mount point is right.
    How can I speed up cp command ?
    It seems to take ages to copy. I guess speed is about 10-12 MByte per second.
    Native copy should be at 20 MByte/s due source and destination is same raid ?
    Any help? Is there a cache like buffers to be set higher ?

    Thanks again.

    Comment by lame — March 1, 2010 @ 9:21 am

  26. One more question:
    Connecting a external HD to storage. Where is the mountpoint ?
    Considering external backup via ssh cp.

    Comment by lame — March 1, 2010 @ 9:34 am

  27. Hi

    External usb mounts in the same path, something like /mnt/soho_storage/samba/shares/USB_UnknownVendor….(name may depend on the USB external storage)
    Regarding the copy speed I dont have a clue :( I bought the device less than a week ago, still studying the thing :P

    Btw, just for the sake of sharing knowledge, i found this: http://zepman.tweakblogs.net/blog/3552/iomega-ix2-200-bad-flash-recovery-and-hdd-replacement.html

    Comment by BaRRoS — March 1, 2010 @ 11:50 pm

  28. First of all: thank a lot for this very usefull post.
    Then, succedded to activate ssh access via support.html page and log in as root user with ssh on ix2-200 device
    (password was simply soho and firmware=2.1.25.229)

    Linux running is a debian 5.0.2 (see /etc/debian_version) ARM release.

    I finally succed to have apt-get running, but I didn’t try to install anything for the moment…
    Affraid to totaly corrupt the system ;)…. I need to backup original OS install or to have a closer read on the URL posted in the previous comment before going further.

    For copy speed when I do copies, CPU is at a good level (let say about 50%) so the limitation doesn’t come from here….
    I guess that limit is due to the available RAM on the device (256Mb) witch is not enough… Look at this “top” command:
    Mem: 255876k total, 252952k used, 2924k free, 5052k buffers
    Not a lot free….

    Enjoy!

    Comment by Zorg — March 8, 2010 @ 2:26 pm

  29. Hi,

    The ix2 (not ix2-200!) has a web page to configure iscsi storage: https://ip-of-nas/stg-iscsi.html
    Has somebody used this configuration yet? Is iscsi really supported on the ix2?

    Comment by etmmvdp — March 8, 2010 @ 11:37 pm

  30. Fantastic information, thanks! Using rsync to copy files from my Ubuntu system to the ix2 caused permissions of drwx—— and I could not access them from Windoze even though under the public area. Easily fixed now with ssh to the root account and my wife can happily access the files. Thanks a lot!

    Comment by DougO — March 14, 2010 @ 2:27 am

  31. Thanks for the tips! I have also managed to get apt-get to work but when I try to install anything it tells me things like:
    ” unable to create `./usr/lib/libmpfr.so.1.2.2′: Read-only file system”.
    I think it has something to do with :
    /dev/loop0 on /mnt/apps type ext2 (ro)
    /dev/loop2 on /oem type cramfs (ro)

    but I don’t know how I may be able to change that? Do you have any ideas on this?

    Comment by ZeRak — March 21, 2010 @ 6:27 pm

  32. I’ve written a small shell script that allows the installation of deboostrap on ix2-200. It is unpretentious, and deserves to be reviewed. I deboostrap serves to create an environment for squid. http://code.google.com/p/debootstrap-ix2/

    After granting access ssh: https://myix2/supportaccess.html, login as root and password as gold soho sohoadminpassword. Download install-debootstrap-ix2.sh via wget:

    wget http://debootstrap-ix2.googlecode.com/files/install-debootstrap-ix2.sh -P /tmp

    Start installation: sh /tmp/install-debootstrap-ix2.sh

    Example to install squid:

    mkdir /mnt/soho_storage/samba/shares/user/squid
    debootstrap unstable /mnt/soho_storage/samba/shares/user/squid
    chroot /mnt/soho_storage/samba/shares/user/squid
    apt-get install squid3 ;)

    Help me thank you for the improvement.

    Comment by ja — March 31, 2010 @ 3:32 pm

  33. Download at : http://code.google.com/p/debootstrap-ix2/downloads/list

    Comment by ja — March 31, 2010 @ 4:19 pm

  34. Hi Everybody,

    Thanks a lot for the tips!! ON my side the copy and past of the encrypted password didn’t not work, I used an ubuntu 9.10 live CD, maybe the encryption is not the same…
    So to be able to ssh my box, i empty the root password in the shadow file so you’ll should have something like that:

    root::10933:0:99999:7:::

    then allow in the sshd_config file to logon using a password and allow the empty password by editing those to lines from:

    #PasswordAuthentication yes
    #PermitEmptyPasswords no

    to

    PasswordAuthentication yes
    PermitEmptyPasswords yes

    and you’re all set !!

    You have to keep in mind that is temporary config, because this not safe at all!!
    As soon as you are login

    $passwd root # to create a new root password.

    and disable empty password in the sshd_config file:

    PermitEmptyPasswords no.

    Enjoy!

    Comment by Vagrantin — April 1, 2010 @ 12:45 pm

  35. I expected the bogomips in the ix4 to be higher than that.

    262 bogomips? Really? That’s really low.

    My 10 year old StrongARM NetWinder bogomips # is 262.14 @ ~250MHz.

    Isn’t the Marvell CPU in the ix4 supposed to be running at 1.2GHz?

    Does anyone have the bogomips number for an ix4-200d?

    Comment by Joe Perches — May 6, 2010 @ 1:04 am

  36. Hi all,

    I’m trying to ssh/scp to the iomega storage without specifying the password but setting up using SSH public keys. i have created public keys using

    ssh-keygen -t rsa

    on my local linux and copied the key found in ssh_rsa.pub to the /root/.ssh/authorized_keys file on the iomega storage.
    I’ve chmod 400 /root/.ssh/authorized_keys and it is not accepting the public key.

    From my linux to storage in with ssh in verbose mode:

    debug1: SSH2_MSG_NEWKEYS received
    debug1: SSH2_MSG_SERVICE_REQUEST sent
    debug1: SSH2_MSG_SERVICE_ACCEPT received
    debug1: Authentications that can continue: publickey,password
    debug1: Next authentication method: publickey
    debug1: Trying private key: /root/.ssh/identity
    debug1: Offering public key: /root/.ssh/id_rsa
    debug1: Authentications that can continue: publickey,password
    debug1: Trying private key: /root/.ssh/id_dsa
    debug1: Next authentication method: password

    the public key is not accepted.

    I’ve also set this up vice-versa. e.g. iomega storage to my linux and it works fine.

    e.g.

    debug1: SSH2_MSG_NEWKEYS received
    debug1: SSH2_MSG_SERVICE_REQUEST sent
    debug1: SSH2_MSG_SERVICE_ACCEPT received
    debug1: Authentications that can continue: publickey,gssapi-with-mic,password
    debug1: Next authentication method: publickey
    debug1: Trying private key: /.ssh/identity
    debug1: Offering public key: /.ssh/id_rsa
    debug1: Server accepts key: pkalg ssh-rsa blen 277
    debug1: read PEM private key done: type RSA
    debug1: Authentication succeeded (publickey).
    debug1: channel 0: new [client-session]
    debug1: Entering interactive session.

    Has anyone encountered this problem? i’m trying to set this up so that i can use rsync in a script without having to specify the password.

    Comment by Steven — May 20, 2010 @ 9:54 am

  37. Hi,
    I am trying to figure out how to add a crontab entry in the Iomega StoreCentre IX2. Adding a process using crontab -e command does not remain once the device is rebooted. Adding a process directly in /etc/crontab is not executing on the time specified. Can some one kindly recommend how I can schedule a process in this device.

    Comment by Syed Rabbul Nawazs — June 15, 2010 @ 8:23 am

  38. This helped me solve an issue I was having with my storcenter. I’ll outline the provlem briefly and the steps to fix it for the sake of posterity:

    I’m running OSX Snow Leopard and I have a few different administrator accounts setup for my storcenter. For some reason, files created by admin1 could not be read by admin2, despite the fact that all permissions were set correctly via the iomega storcenter application. Iomega support was unable to fix it.

    After some poking around, I realized that the group membership information for many of the inaccessible folders was inconsistent.

    I found this article and followed these steps to fix it on my own:

    I couldn’t change the group membership via FTP, so I typed: “[storecenter ip]/support.html” into my web browser and clicked Support Access –> Allow remote access for support (SSH and SFTP). I then opened the terminal application and logged in via SSH:

    ssh root@[storecenter ip]
    sohoMYPASSWORD

    cd /mnt/soho_storage/samba/shares

    chgrp -R users shares

    This changed the group membership of all of my files to “users” (which somehow translates into group “100″ when viewed via FTP). This fixed the otherwise unfixable permissions problem. Hope this helps someone.

    Comment by madmatter23 — June 15, 2010 @ 9:33 pm

  39. correction: navigate to samba folder via:

    “cd /mnt/soho_storage/samba/”

    accidentally added “shares” in the last post.

    Comment by madmatter23 — June 15, 2010 @ 9:34 pm

  40. Hello (Bonjour je suis français ;))

    I want help because I buy Iomega IX2 without hard disk and I want to put in two of mine.
    It’s possible to install this two hard drive with a firmware and how do ?
    Tks a lot for your help

    Comment by teurf — June 21, 2010 @ 6:43 pm

  41. I have a USB HD plugged into mine and it plays fine through the meda server to my PS3. However the video I copied from the USB to the NAS will not play - I get the dread unsupported data message. This is quite odd as both files look identical. If I play the file from the share using VLC is plays fine.

    Any ideas anyone?

    Equally odd, I have the print server working fine for my PC, but it doesn’t work from the Mac. Quite frustrating :-(

    Comment by Andy — July 18, 2010 @ 4:57 pm

  42. hmmm, rebooted it and it all works !

    So, if in doubt give it the microsoft windows treatment ;-)

    Comment by Andy — July 18, 2010 @ 5:42 pm

  43. I am running on 2.1.30.10908 on my IX2-200. Does anyone what is the root password for http://NASIP/support.html page?
    I tried soho and soho+my Password. Neither of them worked.
    Please let me know.
    Sri.

    Comment by srikanth — July 31, 2010 @ 11:03 pm

  44. Moin, Moin!

    I have struggled several hours with a rebooting issue - after rebooting from the console (after ssh login) or from the web interface, the ssh port was closed again and sshd was not running anymore. I have removed the S50ssh script from /etc/rc2.d and inserted it in /etc/rcS.d (symlink on ../init.d/sshd); now, it’s reboot persistent. Good night!

    Comment by andreas — August 7, 2010 @ 11:35 pm

  45. Thanks for this very useful information. Could anyone please guide me on installing rssh on iomega store ix2. I’ve tried installing it using ipkg using this source http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/ in the ipkg config but I get this error message when trying to install rssh

    Package rssh (2.3.2-1) installed in root is up to date.
    Configuring openssh
    //opt/ipkg/info/openssh.postinst: line 3: /opt/bin/update-alternatives: not found
    //opt/ipkg/info/openssh.postinst: line 4: /opt/bin/update-alternatives: not found

    Generating RSA Key…
    /opt/bin/ssh-keygen: relocation error: /opt/bin/ssh-keygen: symbol __stack_chk_guard, version GLIBC_2.4 not defined in file ld-linux.so.3 with link time reference
    Generating RSA Key…
    /opt/bin/ssh-keygen: relocation error: /opt/bin/ssh-keygen: symbol __stack_chk_guard, version GLIBC_2.4 not defined in file ld-linux.so.3 with link time reference
    Generating DSA Key…
    /opt/bin/ssh-keygen: relocation error: /opt/bin/ssh-keygen: symbol __stack_chk_guard, version GLIBC_2.4 not defined in file ld-linux.so.3 with link time reference
    Fixing permissions on the /tmp directory…
    killall: /opt/sbin/sshd: no process killed
    /opt/sbin/sshd: relocation error: /opt/sbin/sshd: symbol __stack_chk_guard, version GLIBC_2.4 not defined in file ld-linux.so.3 with link time reference
    postinst script returned status 127
    ERROR: openssh.postinst returned 127
    Nothing to be done
    Successfully terminated.

    Comment by Bruno — August 12, 2010 @ 9:04 am

RSS feed for comments on this post. TrackBack URL

Leave a comment

Powered by WordPress