I've got a problem with my files. For example I've a lot musics in sdcard/external_sd but I can't find it in apollo. There isn't any musics in apollo. I think problem is mount/unmount settings but I don't know how can I fix it.
This is cwm menu, i think problem in here:
Mounts and Stroage Menu
-mount /system
-unmount /cache
-mount /data
-mount /sdcard
-mount /external_sd
-format /system
-format /cache
-format /data
-format /sdcard
-format /external_sd
-mount USB storage
CWM-based Recovery v6.0.2.7
Did you tried 'mount external_sd' and reboot?
I didn't do it.
Sent from my GT-I8150 using xda app-developers app
UniQuE_12 said:
I didn't do it.
Sent from my GT-I8150 using xda app-developers app
Click to expand...
Click to collapse
Then mount it and reboot. If it doesn't work, check if the files can be identified by other phone, or computer.
FelixMG said:
Then mount it and reboot. If it doesn't work, check if the files can be identified by other phone, or computer.
Click to expand...
Click to collapse
I will try it. But I know the files haven't got a problem. Because if I download a mp3 this can be played in music app. But when telephone scan sd cards they will disappear in music app. And I don't understand, quickpic app shows my videos,photos but mx player doesn't show them.
FelixMG said:
Then mount it and reboot. If it doesn't work, check if the files can be identified by other phone, or computer.
Click to expand...
Click to collapse
I forgot to tell it to you. When this problem occured I have got another problem. I have got charging problem. I can't use my charger. I'm using usb to charge it. I'm waiting to charge my battery %80 and am I do mount /sdcard and mount /external_sd?
Related
Hi friends,
As you may know the build 2 of CM9 from our lord Arco sometimes mount the internal memory instead of the sdcard when the usb cable is connected.
Well, my problem is that I was formating it thinking it was my sdcard... the problem is that I have removed the cable in the middle of the format process. Now I'm not able to mount this partition.
How can I fix this issue?
frede_sch said:
Hi friends,
As you may know the build 2 of CM9 from our lord Arco sometimes mount the internal memory instead of the sdcard when the usb cable is connected.
Well, my problem is that I was formating it thinking it was my sdcard... the problem is that I have removed the cable in the middle of the format process. Now I'm not able to mount this partition.
How can I fix this issue?
Click to expand...
Click to collapse
As a basic solution:
A:
Can you still use CWM?
B:
Can you still boot into download mode and flash stock ROM? If yes, do so, flash CWM using ODIN and then flash CM9 again. (If no....... ask other members and see if they can help.)
frede_sch said:
Hi friends,
As you may know the build 2 of CM9 from our lord Arco sometimes mount the internal memory instead of the sdcard when the usb cable is connected.
Well, my problem is that I was formating it thinking it was my sdcard... the problem is that I have removed the cable in the middle of the format process. Now I'm not able to mount this partition.
How can I fix this issue?
Click to expand...
Click to collapse
As already mentioned:
1. Do all the backups you can make of your files.
2. Flash ClockWorkMod Recovery if you have not only done so(I guess you did )
3. Open ClockWorkMod Recovery:
I am not sure whether the memory swap in CM9 effects the management of the memory in CWM, but this is how it normally defined:
internal SD: mounts and storage-> format/sdcard ->confirm
external SD: mounts and storage-> format/emmc -> confirm
But I guess it does not make a difference for you, because you want to format both "sd cards" anyway.
greets
THE-E
THE-E said:
As already mentioned:
1. Do all the backups you can make of your files.
2. Flash ClockWorkMod Recovery if you have not only done so(I guess you did )
3. Open ClockWorkMod Recovery:
I am not sure whether the memory swap in CM9 effects the management of the memory in CWM, but this is how it normally defined:
internal SD: mounts and storage-> format/sdcard ->confirm
external SD: mounts and storage-> format/emmc -> confirm
But I guess it does not make a difference for you, because you want to format both "sd cards" anyway.
greets
THE-E
Click to expand...
Click to collapse
Formatting /sdcard...
Error mounting /sdcard!
Skipping format...
Done.
/emmc works!
I was changing the "mount /system, /cache, /data" options for something then realized I forgot what the original order of the "mount or unmount" should be. Currently it is:
-mount /system
-unmount /cache
-mount /data
-mount USB storage (at the bottom)
I'm asking because when I go to settings->storage I get the "Unfortunately, settings have stopped" error. I've searched other threads and found one exactly like this from a few months ago but unfortunately there were no replies. Does anyone know what these values should be by default? Its found by booting into CWM recovery and selecting mounts and storage. Thanks.
Moonkae said:
I was changing the "mount /system, /cache, /data" options for something then realized I forgot what the original order of the "mount or unmount" should be. Currently it is:
-mount /system
-unmount /cache
-mount /data
-mount USB storage (at the bottom)
I'm asking because when I go to settings->storage I get the "Unfortunately, settings have stopped" error. I've searched other threads and found one exactly like this from a few months ago but unfortunately there were no replies. Does anyone know what these values should be by default? Its found by booting into CWM recovery and selecting mounts and storage. Thanks.
Click to expand...
Click to collapse
Mine is
mount /system
mount /data
unmount /cache
mount /sdcard
mount /sd-ext
format /system
format /data
format /cache
format /sdcard
format /sd-ext
mount usb storage
Basically what im getting at is would it be possible to combine both storage units to where the os can mount them as one? In traditional Linux I would use LVM2.
Anybody? You think something like this would've been done already but I haven't found any directions on Google just a project page.
dude, desktop computers require an entire card in order to do this kind of stuff, it's called raid, and android isn't programmed to support it
Sent from my SPH-L900 using xda app-developers app
That is incorrect. Try looking into what an LVM actually is before attempting to answer. RAID is something completely different.
Edit: not trying to be a **** but your post had a condescending tone to it.
schnowdapowda is correct, LVM would be able to do this just fine if Android supported it, but as far as I can tell the Android system doesn't have the kernel modules or systems in place sadly. Otherwise it'd be no problem making a physical volume from the two SD partitions, then a volume group and logical volumes.
One down side is you would run into system overhead while the slower SD card is keeping LVM from writing to faster on-board "SD card" partition space.
I just run the following at boot time, and it swaps the internal and external cards... Note this is with the Perseus kernel.
Code:
busybox mount -o remount,rw /
busybox mount -t exfat -o umask=0000 /dev/block/vold/179:49 /mnt/sdcard
if busybox mount | busybox grep vold/179:49; then
busybox mount -o bind /data/media /mnt/extSdCard
fi
I saw this on a website and it works perfectly, just need to verify your dev/block/vold/NNN:NN mount point and make this change after the SDCard is initialized.
aramova said:
schnowdapowda is correct, LVM would be able to do this just fine if Android supported it, but as far as I can tell the Android system doesn't have the kernel modules or systems in place sadly. Otherwise it'd be no problem making a physical volume from the two SD partitions, then a volume group and logical volumes.
One down side is you would run into system overhead while the slower SD card is keeping LVM from writing to faster on-board "SD card" partition space.
I just run the following at boot time, and it swaps the internal and external cards... Note this is with the Perseus kernel.
Code:
busybox mount -o remount,rw /
busybox mount -t exfat -o umask=0000 /dev/block/vold/179:49 /mnt/sdcard
if busybox mount | busybox grep vold/179:49; then
busybox mount -o bind /data/media /mnt/extSdCard
fi
I saw this on a website and it works perfectly, just need to verify your dev/block/vold/NNN:NN mount point and make this change after the SDCard is initialized.
Click to expand...
Click to collapse
How well does this work for you? And do you do this at every boot or only when you want to swap? Also when running apps after you swap the two and all of your other apps are already installed on internal then you swap the two, can you still just open the app drawer click and run? Or do they no longer run after the switch.
Also after the switch how does that all work when going into recovery and wiping directory's/folders etc and flashing ROM's what will it wipe since the directories are switched?
What is the benefit of swapping?
Sent from my SPH-L900 using xda app-developers app
Tw1sted247 said:
How well does this work for you? And do you do this at every boot or only when you want to swap? Also when running apps after you swap the two and all of your other apps are already installed on internal then you swap the two, can you still just open the app drawer click and run? Or do they no longer run after the switch.
Also after the switch how does that all work when going into recovery and wiping directory's/folders etc and flashing ROM's what will it wipe since the directories are switched?
Click to expand...
Click to collapse
Sorry i had forgotten about this thread. This shouldn't effect app storage. Only SD storage and the mock SD storage partition on your internal memory. I believe it might screw up any apps you have installed on your external unless there is some mechanism that changes where the system thinks they're installed. And this wouldn't effect recovery as you cant run that script till startup.
Devi0124 said:
What is the benefit of swapping?
Sent from my SPH-L900 using xda app-developers app
Click to expand...
Click to collapse
Being able to save stuff automatically to your external without in app configuration.
Anyway.. this isn't what I'm really looking for. As far as I'd be concerned.. the system overhead wouldn't be an issue as I would gladly take a slowdown in read and writes to my storage for the convenience of having it accesible like that. I guess its just a matter of some genius dev compiling LVM into their kernel.
Devi0124 said:
What is the benefit of swapping?
Sent from my SPH-L900 using xda app-developers app
Click to expand...
Click to collapse
More space
Sent from my SPH-L900 using xda app-developers app
I have a big problem I cannot wipe data properly it say some errors like cannot mount .sdcard/.andorid secure and some E:format_volume: make_extf4fs dev/bloc/mmcblk0p2 and i cannot mount sdcard or mount usb storage before this happen I was playing a game in my phone and then normal using it kept it in my pocket for something like 5 mins then took out and found out it was switched off I turn it on but it wasnt booting(was Stuck at cm7 bootanimation). I did a factory reset it got booted but with problems as metioned before. What to do? Im using Outdated cm7 version of ItachiSama. Need help!
batman38102 said:
I have a big problem I cannot wipe data properly it say some errors like cannot mount .sdcard/.andorid secure and some E:format_volume: make_extf4fs dev/bloc/mmcblk0p2 and i cannot mount sdcard or mount usb storage before this happen I was playing a game in my phone and then normal using it kept it in my pocket for something like 5 mins then took out and found out it was switched off I turn it on but it wasnt booting(was Stuck at cm7 bootanimation). I did a factory reset it got booted but with problems as metioned before. What to do? Im using Outdated cm7 version of ItachiSama. Need help!
Click to expand...
Click to collapse
I'm afraid that you've to format your sdcard. Do backup of both partitions, do format and let us know if it helped.
Cheers
Macław
New Macław said:
I'm afraid that you've to format your sdcard. Do backup of both partitions, do format and let us know if it helped.
Cheers
Macław
Click to expand...
Click to collapse
Okkay but whats second partition. I have already kept a backup of the sdcard but whats the other partition?
EDIT: Can i format sdcard using cwm?
batman38102 said:
Okkay but whats second partition. I have already kept a backup of the sdcard but whats the other partition?
EDIT: Can i format sdcard using cwm?
Click to expand...
Click to collapse
Oh sh.t when i press format sdcard on cwm it says Error mounting sdcard! Skip formatting sdcard Done! Now what I do
Never mind I fixed it but had to flash another ROM to fix bootloops. Thanks Maclaw and welcome back
Sent from my GT-S5660 using xda app-developers app
Should I mount system In order to format system in cmw? And what if I just formatted system without mounting?
Sent from my SM-T210R using Tapatalk
Ripshock said:
Should I mount system In order to format system in cmw? And what if I just formatted system without mounting?
Sent from my SM-T210R using Tapatalk
Click to expand...
Click to collapse
You shouldn't need to do it manually, it should mount it for you.
Sent from my SCH-I605
gr8nole said:
You shouldn't need to do it manually, it should mount it for you.
Sent from my SCH-I605
Click to expand...
Click to collapse
I know that if I mount system, it allows me to access system files and edit them but what about mount data?
Sent from my SM-T210R using Tapatalk
Ripshock said:
I know that if I mount system, it allows me to access system files and edit them but what about mount data?
Sent from my SM-T210R using Tapatalk
Click to expand...
Click to collapse
/data doesn't usually get mounted on recovery boot. Most update scripts contain a line about mounting each partition that it needs to modify. You won't normally need to mount anything manually if you are simply using the "wipe" or "format" commands built into the recovery.
gr8nole said:
/data doesn't usually get mounted on recovery boot. Most update scripts contain a line about mounting each partition that it needs to modify. You won't normally need to mount anything manually if you are simply using the "wipe" or "format" commands built into the recovery.
Click to expand...
Click to collapse
What if I just format data and cache in cwm via updater-script without mounting said partitions after the format command? Would it cause any problems? I just want to automate everything in the zip file and I'm only flashing system partition.
iZLeeP said:
What if I just format data and cache in cwm via updater-script without mounting said partitions after the format command? Would it cause any problems? I just want to automate everything in the zip file and I'm only flashing system partition.
Click to expand...
Click to collapse
You need to mount system so you can do whatever you want with it
Sent from my SM-T210R using Tapatalk
Ripshock said:
You need to mount system so you can do whatever you want with it
Sent from my SM-T210R using Tapatalk
Click to expand...
Click to collapse
Yup, that's what I do.
1. Format system, cache, and data
2. Mount system
3. Extract system package
Never had problems with this order. What I want to confirm is if there is a need to mount cache and data after the format command even though the rom package is only for the system partition?
iZLeeP said:
Yup, that's what I do.
1. Format system, cache, and data
2. Mount system
3. Extract system package
Never had problems with this order. What I want to confirm is if there is a need to mount cache and data after the format command even though the rom package is only for the system partition?
Click to expand...
Click to collapse
Just unmount system after everything
Sent from my SM-T210R using Tapatalk
And i think that mounting system means mounting everything else because i never saw in a script mount /data nor /cache
Sent from my SM-T210R using Tapatalk
Ripshock said:
And i think that mounting system means mounting everything else because i never saw in a script mount /data nor /cache
Sent from my SM-T210R using Tapatalk
Click to expand...
Click to collapse
No, it's different! The mount system in updater-script refers to the partition where /system is located. Cache and data partitions are separate from the system partition. So, if you want to flash something to data partition (e.g., apps, etc.) you have to mount it aside from that of the system partition.
iZLeeP said:
No, it's different! The mount system in updater-script refers to the partition where /system is located. Cache and data partitions are separate from the system partition. So, if you want to flash something to data partition (e.g., apps, etc.) you have to mount it aside from that of the system partition.
Click to expand...
Click to collapse
Oh, thank you, you changrd my thinking 360 degree
Sent from my SM-T210R using Tapatalk