Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Rockbox Ports are now being developed for various digital audio players!

+  Rockbox Technical Forums
|-+  Rockbox General
| |-+  Rockbox General Discussion
| | |-+  Ipod 5G No files
« previous next »
  • Print
Pages: [1]

Author Topic: Ipod 5G No files  (Read 2244 times)

Offline deez

  • Member
  • *
  • Posts: 8
Ipod 5G No files
« on: December 12, 2007, 06:50:43 PM »
Hello all.  First off, RockBox rules!  

But I am having some problems.  I installed the latest build about a week ago...that was the 5th of December or so.  Today it started screwing up...The battery went dead, it shut down, I charged it.  Afterwards, I clicked, 'resume playback' and it said there were no files.  I went to 'files' and then my music folder and there was nothing there.  The database was there, but it wouldn't play any music that it had listed.  I restarted a few times with no luck.  I let it sit and voila, my files are back.  But now it's done it again.  

Any help out there?

Peace
Logged

Offline melancholydm

  • Member
  • *
  • Posts: 71
Re: Ipod 5G No files
« Reply #1 on: December 12, 2007, 07:23:41 PM »
you should post what player you got and what version of rockbox. btw latest build isnt a week ago, you should try updating and see if the problem persists
Logged

Offline AquaStreak

  • Member
  • *
  • Posts: 21
Re: Ipod 5G No files
« Reply #2 on: December 12, 2007, 07:40:08 PM »
I think there is a new build everyday (or at least most days) so always try updating Rockbox.

Also, if you added the songs to your iPod via iTunes (for play in the iPod firmware), then they will be under database; not "Files".
Logged

Offline cool_walking_

  • Rockbox Expert
  • Member
  • *
  • Posts: 695
Re: Ipod 5G No files
« Reply #3 on: December 12, 2007, 07:56:40 PM »
There is a new "current build" with every change to the source (multiple times a day - see the "Subversion" table on the front page).

Try doing a filesystem check. Connect your iPod to a computer, and:

For Windows:
Go to "My Computer" -> Right-click on your iPod drive -> "Properties" -> "Tools" tab -> "Check Now" button under "Error Checking" -> Check both the checkboxes and click "Start".

For Linux (might work on other *nixes such as Mac OS X, I don't know):
As root, do "fsck.vfat -at /dev/sda2" at a shell, where /dev/sda2 is your iPod file partition.

Also, since the files on your iPod are disappearing, it would seem wise to back them up.
« Last Edit: December 13, 2007, 06:29:41 PM by cool_walking_ »
Logged

Offline deez

  • Member
  • *
  • Posts: 8
Re: Ipod 5G No files
« Reply #4 on: December 12, 2007, 10:20:51 PM »
Alright...thanks for the info...

I just unzipped a current build into my player, the same as installation...is this a good way?

As for checking the files, I did the commands in a linux terminal and i get this.

dennis@Delphi:~$ sudo fsck.vfat -at /media/DEEZ
[sudo] password for dennis:
dosfsck 2.11, 12 Mar 2005, FAT32, LFN
open /media/DEEZ:Is a directory

Is that what we're looking for here?


Thanks
Logged

Offline cool_walking_

  • Rockbox Expert
  • Member
  • *
  • Posts: 695
Re: Ipod 5G No files
« Reply #5 on: December 12, 2007, 11:58:43 PM »
Use the device node, not the mount point.

It should be /dev/something.

Mount your iPod, then type "mount" and it will tell you which device /media/DEEZ is.  Make sure to unmount the iPod before doing the fsck.vfat command, like so:
"sudo umount /dev/something"

EDIT: Yes, unzipping to the player is the way to install it.  If there was a new boot loader released since your last version of Rockbox, you also have to reinstall the boot loader.  I can't seem to find information on when the last boot loader was released, but it must have been 6 months to a year ago.
« Last Edit: December 13, 2007, 12:39:25 AM by cool_walking_ »
Logged

Offline deez

  • Member
  • *
  • Posts: 8
Re: Ipod 5G No files
« Reply #6 on: December 13, 2007, 11:23:04 AM »
Alright, thanks for the help cool walking...

dennis@Delphi:~$ sudo fsck.vfat /dev/sda2
dosfsck 2.11, 12 Mar 2005, FAT32, LFN
Reclaimed 276 unused clusters (4521984 bytes).
Free cluster summary wrong (226598 vs. really 226850)
1) Correct
2) Don't correct
? 1
Leaving file system unchanged.
/dev/sda2: 5959 files, 1597640/1824490 clusters

As you can see I tried to correct the errors by pressing 1 but that did nothing for me.  


Logged

Offline cool_walking_

  • Rockbox Expert
  • Member
  • *
  • Posts: 695
Re: Ipod 5G No files
« Reply #7 on: December 13, 2007, 06:30:15 PM »
Use the "-a" and "-t" switches, like so:
Code: [Select]
sudo fsck.vfat -a -t /dev/sda2
or if you're like me and try to save as many keystrokes as possible:
Code: [Select]
sudo fsck.vfat -at /dev/sda2
FYI, not all programs support merging switches together like this, but fsck.vfat (AKA dosfsck) does.
Logged

Offline deez

  • Member
  • *
  • Posts: 8
Re: Ipod 5G No files
« Reply #8 on: December 13, 2007, 08:47:05 PM »
Ran the command 15 minutes ago and I've gotten no output in the terminal screen.....
Logged

Offline cool_walking_

  • Rockbox Expert
  • Member
  • *
  • Posts: 695
Re: Ipod 5G No files
« Reply #9 on: December 13, 2007, 08:48:35 PM »
Yep, that's supposed to happen. The bigger the disk and the more errors found, the longer it takes.  I think you should get output if it finds errors, though.
« Last Edit: December 13, 2007, 08:50:10 PM by cool_walking_ »
Logged

Offline deez

  • Member
  • *
  • Posts: 8
Re: Ipod 5G No files
« Reply #10 on: December 13, 2007, 08:55:31 PM »
i'll continue to wait patiently, then.  thanks for the help.  I really appreciate it.  
Logged

  • Print
Pages: [1]
« previous next »
+  Rockbox Technical Forums
|-+  Rockbox General
| |-+  Rockbox General Discussion
| | |-+  Ipod 5G No files
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.085 seconds with 15 queries.