Viewing hidden partition to access New York Times papers? - Nook Touch General

Hi, i was wondering if there's a way to access the hidden partition so that I can move my Nook New York times newspaper files.

There are several ways. You could use ADB or boot the noogie image to get access to the files from your desktop. You could set a symlink from the sdcard to /data/media to allow the files to be viewed from their desktop without needing ADB or noogie.
If you've rooted your device, the files are under /data/media/B&N Downloads. You could copy the files from there. You could use Dropsync or similar to upload the files to Dropbox daily.

bobstro said:
There are several ways. You could use ADB or boot the noogie image to get access to the files from your desktop. You could set a symlink from the sdcard to /data/media to allow the files to be viewed from their desktop without needing ADB or noogie.
If you've rooted your device, the files are under /data/media/B&N Downloads. You could copy the files from there. You could use Dropsync or similar to upload the files to Dropbox daily.
Click to expand...
Click to collapse
Thanks so much! Perfect!

Related

Partitioning microSD card

After setting up my wife's A7 and using it for three weeks, I have decided to open mine up. I waited because I wanted to see if CES had anything I wanted more. I decided they didn't.
So, I am starting from scratch again.
The main issue I've had with my wife's A7 has been the lack of storage space for apps, especially the big games.
Bazbob seems to have a solution by partioning the microSD card and using Apps2sd.
I took a new Class 10 16GB microSD card.
I downloaded and burned Ubuntu onto a CD from here: http://www.ubuntu.com/desktop/get-ubuntu/download
Put the card in my laptop, restarted it into Ubuntu.
Ran gparted.
Shrunk the Fat32 partition to just under 8GB and added another partion as ext2 primary.
When I restarted my laptop, my sd reader in the laptop doesn't work.
When I put it into the A7, it says the SD card has Total Space of 7.73GB.
At this point, I'm not sure what to do next.
Help is appreciated!
jazzbone said:
After setting up my wife's A7 and using it for three weeks, I have decided to open mine up. I waited because I wanted to see if CES had anything I wanted more. I decided they didn't.
So, I am starting from scratch again.
The main issue I've had with my wife's A7 has been the lack of storage space for apps, especially the big games.
Bazbob seems to have a solution by partioning the microSD card and using Apps2sd.
I took a new Class 10 16GB microSD card.
I downloaded and burned Ubuntu onto a CD from here: http://www.ubuntu.com/desktop/get-ubuntu/download
Put the card in my laptop, restarted it into Ubuntu.
Ran gparted.
Shrunk the Fat32 partition to just under 8GB and added another partion as ext2 primary.
When I restarted my laptop, my sd reader in the laptop doesn't work.
When I put it into the A7, it says the SD card has Total Space of 7.73GB.
At this point, I'm not sure what to do next.
Help is appreciated!
Click to expand...
Click to collapse
You needed to make a second partition EXT2 and format it. You then need to mount the partition. I did this by using the install-recovery.sh that it located in /system/etc. I used the following tutorial and it worked. I got over 12gb of space to install apps.
http://forum.xda-developers.com/showthread.php?t=832799
I did try to mount the new partition to /storage which is also /sdcard and i was still not able to use titanium backup to move apps. The only way i have alot of space is use this method.
I'm also mounting the fat32 partition to location /storage so that when i download apps thats where they are stored until you install them. Also Titanium backup dumps the backups here. This is done with a custom mod of Dexters 1.0c mod.
I did not use adb, i used a app called quicksshd which allows you secure ftp into the tablet and make changes. I suggest using a windows programs called winscp and putty.
Thanks for replying rfisher.
Turns out that my laptop lost the drive letter for the sd card. That's fixed now. When I insert the card into my laptop, it says that you need to format the card in the drive to use it. Any idea why?
I am confused by your instructions.
You said
You needed to make a second partition EXT2 and format it.
Click to expand...
Click to collapse
I did that. First partition is FAT 32, and second partition is EXT2, primary.
Maybe I didn't format the partition? I just created it.
I'll install busybox and see how far I can get with it.
With the other A7, I was never able to work with ADB.
This device really makes me feel like an idiot.
Still can't believe I was the first to get Google Apps working on my wife's tablet!
no adb
Well, the hours of frustration have returned...
I can't get adb running on my laptop.
I installed Android SDK.
When I type adb in the cmd window on my laptop, I get
"adb" is not recognized as an internal or external command, operable program or batch file"
I have tried moving the ADK folder to c:\
and
to:
C:\Users\Bucks HP
No luck.
I added the path c:\android-sdk-windows\platform-tools
to the environment variables in my system properties.
My head is going to explode!
Well, I got adb working, I think...
Problem was in the cmd window. I had to change the path.
Now, I can't install busybox. I followed the instructions from the wiki.
When I type "adb push busybox /data/local"
it returns: cannot stat 'busybox' : no such file or directory.
I pasted the busybox file in the
C:\android-sdk-windows\platform-tools
folder.
Was that the right place for it?
Is the busybox file just a text file?
Also, mine is named busybox-armv6l
Should it be renamed? I tried "adb push busybox-armv6l /data/local"
and got the same result...
I gave up on installing busybox via the wiki instructions.
I installed Titanium Backup and installed busybox through it.
Now, when I type: cd /system
mkdir sd
I get :
mkdir failed for sd, read-only file system
What does that mean and how do I fix it?
Thanks
The saga continues...
With the busybox from Titanium Backup installed,
I needed to type:
adb shell
su
mount -o remount,rw /dev/block/mmcblk3p1 /system
exit
exit
Then, following the tutorial, I am up to step 12:
12) Now comes the tricky part: making Android mount your new partition at boot time. All the hard work would be useless if Android discarded the mount points every time we restarted our phones. To do this we’ll need to create 2 scripts and store then into /system/etc. Obviously the scripts should be started by init.rc and need to run as root. Fortunately Android’s init.rc have a gap that makes this possible. The scripts are named install-recovery.sh and init-sd2.sh.
My question is: How do you create scripts?
You would create them with notepad++ which is a windows program. Then using adb push them to the /system/etc directory.
I used a app called quicksshd and a windows program called winscp to copy the files to the directory. If you used my method you first need to make the /system directory rw before it will let you copy the files. It worked for me, the only thing i did differently is edit init.rc to mount the first partition of the sd card to /storage, but this was creating a modded 1.0c rom. So the result is about 4gb for my sd memory and 12gb for installing apps.
jazzbone said:
The saga continues...
With the busybox from Titanium Backup installed,
I needed to type:
adb shell
su
mount -o remount,rw /dev/block/mmcblk3p1 /system
exit
exit
Then, following the tutorial, I am up to step 12:
12) Now comes the tricky part: making Android mount your new partition at boot time. All the hard work would be useless if Android discarded the mount points every time we restarted our phones. To do this we’ll need to create 2 scripts and store then into /system/etc. Obviously the scripts should be started by init.rc and need to run as root. Fortunately Android’s init.rc have a gap that makes this possible. The scripts are named install-recovery.sh and init-sd2.sh.
My question is: How do you create scripts?
Click to expand...
Click to collapse
Hi rfisher
Thanks for replying!
While waiting, I opened Notepad++, copied the text in the tutorial window into it and saved the file as Unix.
Then, I copied it to a USB drive, put it in the A7, and copied to the system/etc folder.
Is that acceptable?
Then, I followed steps 13-15.
I think I did something wrong. I am not seeing it in Root Explorer. What should I be looking for?
Was I supposed to install Apps2SD already?
I got winscp and quicksshd working. YEAH!
Used them to copy the files as you did.
Restarted A7.
Still don't see the other partition.
PS. I was just rereading your earlier post and you mentioned:
I did try to mount the new partition to /storage which is also /sdcard and i was still not able to use titanium backup to move apps. The only way i have alot of space is use this method.
I'm also mounting the fat32 partition to location /storage so that when i download apps thats where they are stored until you install them. Also Titanium backup dumps the backups here. This is done with a custom mod of Dexters 1.0c mod.
Looking on my A7, I don't see a location that is /storage
My tablet is fresh out of the box, without any firmware updates yet.

Rom manager

It hides the clockwork mod backups you make in a folder you can't access via usb mount. I'm wondering if there is a work around because transferring via Wi-Fi is slow. I just wanna put them on an external hard drive and free up the memory on my phone.
ADB is your friend. The best way to do it is to use "adb pull" to copy the backup to your computer.
Or, I suppose you could copy/move the backup to a folder that's visible when you mount the phone and then move it to your computer from there. I never tried it that way. I always get really slow MTP transfer speeds so I prefer using adb.
jr67 said:
ADB is your friend. The best way to do it is to use "adb pull" to copy the backup to your computer.
Or, I suppose you could copy/move the backup to a folder that's visible when you mount the phone and then move it to your computer from there. I never tried it that way. I always get really slow MTP transfer speeds so I prefer using adb.
Click to expand...
Click to collapse
The problem is the folder isn't visible when the phone is on. So moving the backup folder on the phone is impossible.
You need a root explorer to see the folder. I use Total Commander but there are a bunch of other choices. The backup should be located:
/mnt/shell/clockwordmod/backup
or
/mnt/shell/emulated/clockworkmod/backup
(Both are symlinks to a folder or subfolder located in /data/media/)
Even if you can't see the folder as long as you know where the backups are located you can still use adb:
Assuming the backups are in /mnt/shell/emulated/clockworkmod/backup the adb command would be:
adb pull "mnt/shell/emulated/clockwordmod" "C:/CWMbackup"

[Q] Where do I find my nandroid backup (done from Clockworkmod Recovery) on the S4?

I have recently flashed Clockworkmod Recovery on my Galaxy S4 (GT-I9500). I performed a nandroid backup which works just fine since I've been able to use it to restore my stock ROM. However, the phone seems to know where to fetch the backup but I can't locate it personally on the phone either through the PC or using file managers on the device like Root Explorer and Solid Explorer. I even used Solid Edxplorer to change permissions so that I could see all hidden files. Still, all I saw was a 35 byte file named .recovery_version located in /sdcard/clockworkmod with these permissions: rw-rw-r-- and from what I see in the properties of the file it is an MD5. That is all I see. In clockworkmod recovery, the backup is quoted to be in /sdcard/clockworkmod/backup. I can't see that file on my device. Why aren't I seeing this nandroid backup of mine yet it is in the internal storage? I want to move it from my ohone to PC to free up space since it occupies around 3 GB of the precious storage (you all know the storage issues the GS4 is facing don't you?). Help please.
echenze said:
I have recently flashed Clockworkmod Recovery on my Galaxy S4 (GT-I9500). I performed a nandroid backup which works just fine since I've been able to use it to restore my stock ROM. However, the phone seems to know where to fetch the backup but I can't locate it personally on the phone either through the PC or using file managers on the device like Root Explorer and Solid Explorer. I even used Solid Edxplorer to change permissions so that I could see all hidden files. Still, all I saw was a 35 byte file named .recovery_version located in /sdcard/clockworkmod with these permissions: rw-rw-r-- and from what I see in the properties of the file it is an MD5. That is all I see. In clockworkmod recovery, the backup is quoted to be in /sdcard/clockworkmod/backup. I can't see that file on my device. Why aren't I seeing this nandroid backup of mine yet it is in the internal storage? I want to move it from my ohone to PC to free up space since it occupies around 3 GB of the precious storage (you all know the storage issues the GS4 is facing don't you?). Help please.
Click to expand...
Click to collapse
your backup is located in Data/Media/clockworckmod
use es explorer, enable root, move clockworckmod folder to sd card then to your pc
or use adb command to pull it to your pc
re: backup files
echenze said:
I have recently flashed Clockworkmod Recovery on my Galaxy S4 (GT-I9500). I performed a nandroid backup which works just fine since I've been able to use it to restore my stock ROM. However, the phone seems to know where to fetch the backup but I can't locate it personally on the phone either through the PC or using file managers on the device like Root Explorer and Solid Explorer. I even used Solid Edxplorer to change permissions so that I could see all hidden files. Still, all I saw was a 35 byte file named .recovery_version located in /sdcard/clockworkmod with these permissions: rw-rw-r-- and from what I see in the properties of the file it is an MD5. That is all I see. In clockworkmod recovery, the backup is quoted to be in /sdcard/clockworkmod/backup. I can't see that file on my device. Why aren't I seeing this nandroid backup of mine yet it is in the internal storage? I want to move it from my ohone to PC to free up space since it occupies around 3 GB of the precious storage (you all know the storage issues the GS4 is facing don't you?). Help please.
Click to expand...
Click to collapse
If you cannot see or find it in your /sdcard internal, look in your external sdcard /clockworkmod
folder and sub directories in that folder.
The backups are either in internal or external sdcard /clockworkmod and it's sub-directories
Good luck,
Thanks, I found it using root Explorer in the directories you directed me to. Good day mate
samersh72 said:
your backup is located in Data/Media/clockworckmod
use es explorer, enable root, move clockworckmod folder to sd card then to your pc
or use adb command to pull it to your pc
Click to expand...
Click to collapse
samersh72 said:
your backup is located in Data/Media/clockworckmod
use es explorer, enable root, move clockworckmod folder to sd card then to your pc
or use adb command to pull it to your pc
Click to expand...
Click to collapse
Really appreciate this. Was looking around and noticed my phone storage was fairly low, and couldn't find my stock backup to save my life. Googled this and it brought it right up! Again, thanks! Was fixing to make another backup of my current setup and realized I didn't have enough room lol.
Billy
samersh72 said:
your backup is located in Data/Media/clockworckmod
use es explorer, enable root, move clockworckmod folder to sd card then to your pc
or use adb command to pull it to your pc
Click to expand...
Click to collapse
Thanks.
I had similar issue.
Your advice resolved it for me as it was exactly where you pointed.
I go about it a bit differently. Under settings in CWMR you can change the backup location to the external sdcard. Do your backup, connect your phone to the pc and copy it off like any other file. The only downside is you need the available space on your card.
apel69 said:
I go about it a bit differently. Under settings in CWMR you can change the backup location to the external sdcard. Do your backup, connect your phone to the pc and copy it off like any other file. The only downside is you need the available space on your card.
Click to expand...
Click to collapse
Until you are on the road and need that backup because you got a bad dl. Unless you keep a zip drive on you.. Which is actually a good idea. I switched over to twrp so I can save it to extsd.
Sent from my SGH-M919 using Tapatalk 4
Brain fart. I meant to say I change the settings in ROM Manager not CWMR.
I think we are talking about doing the same thing but with different apps. I change the location setting in ROM Manager which I use for my backups and it automatically saves the backup to the extsd instead of the device. I then copy it to my pc but always maintain the latest backup on my extsd in case I need it wherever I am. Done and done. No annoying copying from device to extsd to pc or using download server or an adb pull needed.
It's personal preference to use ROM Manager with CWMR or TWRP. It doesn't matter to me. I started off using clockworkmod's apps some time ago and am happy with them. I just moved to 4.2.2 and noticed how ROM Manager handles the backups differently and the number of questions regarding how to get them off their phone. This is my solution and how I have always done it.
Worked on Samsung Galaxy S Duos GT 7562. Thanks!
Don't have the S4, but after googling this, well, THANKS!!!
open your es explorer and active it'a rooting option in slide panel or use root expkorer then go to this path
mnt//shell/emulated/clockworkmod/backup/ you will fine a folder named this date and time thats your backup folder copy it into your mobile storage .... done the n copy or move it in to your pc like normaly file ...
Why is this all the sudden not put on the sdcard? Privacy? Anyway to change recovery to sdcard/clockworkmod/backup?
I used the adb pull command to pull from phone mnt//shell/emulated/clockworkmod/backup
Sent from my Nexus 5 using Tapatalk
In Android 4.2+ backups are placed in secure directory, inaccessible to other apps. Backups can be pulled with adb or by using the ROM Manager Backup Download Server.
Heads up
thanks, i was also looking for the backup location as i dont have an external card, thanks.
Jnewell05 said:
In Android 4.2+ backups are placed in secure directory, inaccessible to other apps. Backups can be pulled with adb or by using the ROM Manager Backup Download Server.
Click to expand...
Click to collapse
Ehm, no. Running 4.4.2 and still the back-ups are located in the directories talked about above. Easily accessible by all file manager apps.
Never been any other way as well.
found the backup dir
my portion of a backup was under CWM and backups found deleted using sd card:good:
Having trouble finding backups on Nexus4
I have the same problem....
The backup was made through the CWM in recovery mode...
The MD5 checksum gave an error..I am trying to fix it so I need access to the files.
I can see the backup folders in recovery mode but cant find them with any file explorer nor did they show with adb pulling sdcard...
Any ideas??
helsoommoosleh said:
open your es explorer and active it'a rooting option in slide panel or use root expkorer then go to this path
mnt//shell/emulated/clockworkmod/backup/ you will fine a folder named this date and time thats your backup folder copy it into your mobile storage
Click to expand...
Click to collapse
Thank you sir a lot.
I would pray CWM devs, and all the other app devs like Dolphin, Whatsapp etc to please print the path once the backup is done. This will save us a bunch of time!
THANKS
samersh72 said:
your backup is located in Data/Media/clockworckmod
use es explorer, enable root, move clockworckmod folder to sd card then to your pc
or use adb command to pull it to your pc
Click to expand...
Click to collapse
Hi, Thanks a lot I am new to using SONY devices as I have used SAMSUNG and HTC ones before. Your direction pointed me to the right path and I was able to move it to the PC afterwards.
I really appreciate your help.
Bye

[Q] [SOLVED] [4.3] Cannot write to SD card properly?

Hi,
I updated my nexus 7 to from PA 4.2 to PA 4.3, before this I did multiple backups using TWRP, TiB and copied the entire contents of my SD card to my computer using adb (adb push and adb pull) on OS X (android file transfer does not work properly and windows kept on not responding, Linux had no space and no write to my OS X partitions or Windows Drive.
After the update I restored apps from TiB, and copied the data folders for some apps (apex launcher backups etc.), my TWRP folder and TiB folder back to my SD card. (using adb again) Then, with adb, I copied some films to a Media folder on the root of my sdcard, I created the folder with adb but now, with any file manager I can't write to the contents of that folder anymore, or change anything. Then I tried to make another, updated TiB backup, but it said insufficient storage space, even for just one app with well over 5GB of free space. Then I tried to do a TWRP backup using offline nandroid backup, however the backup completed in 0 seconds and made no new file or folder in the TWRP folder on sdcard. I then tried in recovery, the backup completed, but upon further inspection no new files or folders were made.
I think the problem is that any folders I have made through adb have no write permissions, even though mounted rw(x). And I cannot change the permissions. ( in Linux would I be able to cd to the directories on my n7 then sudo chmod 755 them?), I already tried this with mobile terminal however on my N7 and had no result. What is the solution for this problem?, should I wipe sdcard and make folders using a file explorer, then use adb to copy files into the premade folders, or just find a way to use Ubuntu to copy the files?
Thanks!
Sent from my Nexus 7
I have fixed it my self by doing this:
I was originally using the link from solid explorer to view and edit my sdcard files, which uses the /sdcard directory on root. For some reason I could not edit files going through /sdcard made from adb on OS X, however, when navigating internal storage through /data/media/0/ I had full permissions and could delete the folders made through adb, making new TiBu Backups and TWRP backups.
I tried using shell through adb to change permissions and remove the directories using:
Code:
adb shell
su chmod 777 /sdcard/(TWRP/TiBu etc...)
and
Code:
adb shell
rm -rf /sdcard/(TWRP/TiBu etc...)
but had permission denied errors.

[Q] sdcard read only from PC

This was a bit unexpected. Lollipop is supposed to make using SDCARD (in this case there is NO sdcard) more sensible.
However now I can't copy any files to Nexus in MTP mode. I can do that in P2P mode but only to the picture folders. Any suggestions on that? Selinux setting?
And, yes, I did try making a new folder but no joy. I also noticed I can't see app-specific folders such as titaniumbackup.
Barleyman said:
This was a bit unexpected. Lollipop is supposed to make using SDCARD (in this case there is NO sdcard) more sensible.
However now I can't copy any files to Nexus in MTP mode. I can do that in P2P mode but only to the picture folders. Any suggestions on that? Selinux setting?
And, yes, I did try making a new folder but no joy. I also noticed I can't see app-specific folders such as titaniumbackup.
Click to expand...
Click to collapse
I just upgraded my N10 to Lollipop yesterday. I'm rooted, have SELinux Mode Changer (set to permissive mode) and have USB OTG Helper [root]https://play.google.com/store/apps/details?id=net.shajul.usbotg&hl=en installed. That gives me full unfettered RW access to my OTG SDCard reader. USB OTG Helper expands the number of SDCard file formats that Android supports. I have mine formatted to ext4 to remove the 2GB file limit but thats just my requirement. I used ES File Explorer to access the SDCard and move/copy files, although I'm sure many other file managers would have worked.
I hope that info helps.
It's not an actual SDCARD but the internal emulated sdcard which is being difficult.
Barleyman said:
It's not an actual SDCARD but the internal emulated sdcard which is being difficult.
Click to expand...
Click to collapse
I am in the same boat. I want to restore some apps I backed up in 4.4.4 and lollipop won't read the backup folders in the root directory. I can see and access them via pc, but not through Android. I tried using Titanium & MyBack Up Pro w/ SU access. No dice. Like you, I also tried moving the folders to my Desktop and back. Renaming, creating new folders, etc..., doesn't help.
I can't work around the issue. My current thinking is that we are dealing with a security feature. It seems like all my 4.4.4 folders with user info in them are walled off.
Grrrrr

Categories

Resources