How can I install an Ipod on solaris 10 x86

I like see the content of my Ipod, but I don't know how can i do it?
[76 byte] By [Enrike_mx87a] at [2007-11-26 23:01:34]
# 1
I think you can mount it as a normal PCFS filesystem if you run something like:mount -F pcfs -o hidden <device>:c /mountpointYou should see the device if you run 'rmformat' .7/M.
mAbrantea at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 2
In solaris 10 all the usb memorys are auto-mounted, but my ipod don't, i attemp:mount -F pcfs -o hidden <device>:c /mountpointbut not serve, says "is not a dos file system valid"other sugerency
Enrike_mx87a at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 3
Hmm, perhaps it was p2 when it was an Ipod, try:mount -F pcfs -o hidden /dev/dsk/cXtXdXp2 /mountpoint .7/M.
mAbrantea at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 4
yes i write that!!,mount -F pcfs -o hidden /dev/dsk/c0t0d0p0 /mount/ipod
Enrike_mx87a at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 5
now says that is "already mounted or the mount point is busy"
Enrike_mx87a at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 6
Perhaps your are standing in the directory /mount/ipod when you ran the mount command?Also, try:mount -F pcfs -o hidden /dev/dsk/c0t0d0p2 /mount/ipod ..7/M...
mAbrantea at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 7

> I think you can mount it as a normal PCFS filesystem if you run something like:

A friend of mine has an Ipod. He says you need special software to access the device (at least the music stuff).

I heard that there is a project creating an open-source software that allows access to the Ipod using Linux. Maybe it is possible to port the software.

Martin

Martin_Rosenaua at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 8
Hmm, when I type that (mount -F pcfs -o hidden /dev/dsk/c0t0d0p2 /mount/ipod) in, I get a message saying, "mount point /mnt/ipod doesn't exist". Am I missing something?Message was edited by: Anya_Prynn
Anya_Prynna at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 9

Hello.

You should create an empty directory (such as /mntdevs/ipod) and take it as second argument of mount (mount .... /dev/dsk/c0d0t0s2 /mntdevs/ipod). I would not create it as subdirectory of /mnt because some programs mount devices directly to /mnt. You may use /mnt itself as second argument.

Are you sure "c0t0d0s2" is your ipod? It sounds more like the main (internal) hard disk of a Sparc computer.

Martin

Martin_Rosenaua at 2007-7-10 13:26:23 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...