[Q] Gobackup not access to sdcard1 - General Omni Discussion

hi
run Gobackup on "omni-4.4.2-20140126-mint-NIGHTLY" and see this erro
Cannot identify backups, SD Card might damage!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
try to solve this problem ....
finally solved by this commands:
Code:
$ adb shell
[email protected]:/ $ su
[email protected]:/ # mount -o remount rw /
[email protected]:/ # chmod 751 /mnt/media_rw
Now Gobackup display Error But Everything working good :laugh:
on "/init.qcom.rc"
chmod 0701 /mnt/media_rw
Click to expand...
Click to collapse
cheng 0701 to 0751 and reboot but after reboot return to default value 0701
how to solve this problem
thanks

open-mind said:
hi
run Gobackup on "omni-4.4.2-20140126-mint-NIGHTLY" and see this erro
Cannot identify backups, SD Card might damage!
try to solve this problem ....
finally solved by this commands:
Code:
$ adb shell
[email protected]:/ $ su
[email protected]:/ # mount -o remount rw /
[email protected]:/ # chmod 751 /mnt/media_rw
Now Gobackup display Error But Everything working good :laugh:
on "/init.qcom.rc"
cheng 0701 to 0751 and reboot but after reboot return to default value 0701
how to solve this problem
thanks
Click to expand...
Click to collapse
Your app is not KitKat compatible.

Can You Find Any Solve Method ?

Pester Go on the Reviews thread! Works for me!

harrybarracuda said:
Pester Go on the Reviews thread! Works for me!
Click to expand...
Click to collapse
I restore my old rom and re backup with old version of go backup ( ver 1.13 ) and flash kitkat now go-backup worked and restore my backup without any error perfect :good:
Its strange new version doesn't work but old version worked

Related

More stock live wallpapers working!

I got the stock live wallpapers Grass, Galaxy, and Water working brilliantly. Nexus doesn't work here, but Nexus Revamped in the market (same thing, only customizable) works perfectly.
Download this apk: http://db.tt/ur0c98s
It won't install, so use either adb or use Root Explorer instructions below . . .
Root Explorer:
Copy the file. Go to to system/app. Set r-w. Paste. Set the permissions for the file the same as the other apks in that folder. They should now work! If not, try a reboot.
adb commands:
adb shell
mount -o remount,rw /dev/block/mmcblk0p5 /system
cd system/app
mv LiveWallpapers.apk system/app/LiveWallpapers.bak
exit
adb push LiveWallpapers.apk system/app/LiveWallpapers.apk
adb shell chmod 644 /system/app/LiveWallpapers.apk
adb reboot
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
it works for me.
btw the command to set the permissions is
chmod 644 /system/app/LiveWallpapers.apk
sent from my nook color using the xda app
wvcachi said:
I got the stock live wallpapers Grass, Galaxy, and Water working brilliantly. Nexus doesn't work here, but Nexus Revamped in the market (same thing, only customizable) works perfectly.
Download this apk: http://www.mediafire.com/?oymijnnydnz
It won't install, so either adb or use Root Explorer to copy it to system/app. Set the permissions the same as the other apks in that folder, and paste. They should now work! If not, try a reboot.
Click to expand...
Click to collapse
Will this mess up any of the live wallpapers that I already have installed?
Also, could you post step by step installation instructions using adb?
Noah98 said:
Will this mess up any of the live wallpapers that I already have installed?
Also, could you post step by step installation instructions using adb?
Click to expand...
Click to collapse
No, your other Live Wallpapers will be fine. OP updated with adb commands.
This worked great, thanks! I really love the "water" live wallpaper, but couldn't figure out how to get it.
wvcachi said:
adb commands:
adb shell
mount -o remount,rw /dev/block/mtd3 /system
cd system/app
mv LiveWallpapers.apk system/app/LiveWallpapers.bak
exit
adb push LiveWallpapers.apk system/app/LiveWallpapers.apk
adb shell chmod 644 /system/app/LiveWallpapers.apk
adb reboot
Click to expand...
Click to collapse
Does /dev/block/mtd3 equal /dev/block/mmcblk0p5 ?? I used mmcblk0p5 successfully. I didn't try mtd3, in case it was some reserved disk location. Thanks.
I know this is an old thread but thought I would try any way. Does anyone have the modified apk that allows these (galaxy, water) to work on the stock rooted Nook? The link in the OP is dead. I have LWP working but can't get these to function. If someone could share the file, it would be much appreciated

Busybox DNS fix

You may or may not have noticed that busybox utilities that require DNS lookups aren't working (nslookup,traceroute,wget). Here is a simple fix:
I didn't find a resolv.conf so I added one and it started working.
adb remount
adb shell
echo "nameserver 8.8.8.8" > /system/etc/resolv.conf
8.8.8.8 is one of Google's public nameservers, you may want to add another for redundancy
Rerun the above echo but make sure to use >>
Sent from my Xoom using XDA Premium App
Thank you so much! I did check for resolv.conf, but since it didn't exist I figured it wasn't used on Android.
The weird part is wget used to work. Then one day it stopped ["bad address"]. So I manally specified /system/xbin/wget [instead of /system/bin/wget I think] and it worked! But then I guess I upgraded busybox or something and it stopped working again so I googled and found this post. Thanks again.
wget, I have missed you
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Cannot remount and Read-only file system
Need help, please
__________SOLVED_____________________
adb shell [enter]
su [enter]
mount -o remount, rw /system [enter]
echo "nameserver 8.8.8.8" > /system/etc/resolv.conf [enter]
Didn't work for me
Hi,
Your solution didn't work for me (Galaxy note ICS stock and rooted), even after rebooting the phone.
cat /system/etc/resolv.conf gives
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 4.4.4.4
while ls -la /system/etc/resolv.conf gives the correct permissions
-rw-rw-rw- 1 0 0 57 Feb 17 04:34 /system/etc/resolv.conf
It's incredible that such a serious bug last for years!
Thanks,
L.
onicrom said:
You may or may not have noticed that busybox utilities that require DNS lookups aren't working (nslookup,traceroute,wget). Here is a simple fix:
I didn't find a resolv.conf so I added one and it started working.
adb remount
adb shell
echo "nameserver 8.8.8.8" > /system/etc/resolv.conf
8.8.8.8 is one of Google's public nameservers, you may want to add another for redundancy
Rerun the above echo but make sure to use >>
Sent from my Xoom using XDA Premium App
Click to expand...
Click to collapse
onicrom said:
Here is a simple fix:
I didn't find a resolv.conf so I added one and it started working.
echo "nameserver 8.8.8.8" > /system/etc/resolv.conf
Click to expand...
Click to collapse
Many thanks for that solution! :good:
It worked for my Samsung Galaxy Ace 2.3.3 stock rooted.
greets
Gottard

[GUIDE]How to get Play Music back!

OK, something that can happen when you install a custom rom that the music player has changed to "apollo" or something else.
So lets restore the old music app back!
Before we start remove all the thing you tried before please...
First thing you need to do is disable (or remove) the old music player.
So go to Setting --> Apps --> everything. And Click on the music player for disabling.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Now download the App.
Place it in the root of your nexus 7.
Brows with a file explorer (with root access) to "/SDCARD" and copy your file to "/SYSTEM/APP"Note: If you can not copy please make sure your system is mounted Read-write.
To make sure it is mounted RW do "adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system" in your console.
Or if you use root explorer there is a small button with R/W that you can press.​
Fix your permissions RW--R--R
And Reboot.
FAQ
Wy we do it so?
Because the App is a system app. It do not work normal if you install it on the normal way. Examples of isue's are.
Artworks broken if you minimize the app
Crashes
...
Artworks are broken again!
Try to Clear data and cache in the app info.
DON'T SKIP STEP 1!!!
Which Version is the app?
4.4.811H.526848
And why can't one just install Google Music from the market?
This didn't work for me... I did everything and rebooted and it's not showing up in my app drawer.... any ideas?
khaytsus said:
And why can't one just install Google Music from the market?
Click to expand...
Click to collapse
Because not everybody lives in the UK or USA. In Belgium we don't have access to that application. And if i use a market-enabler the app does not work good.
lumberg said:
This didn't work for me... I did everything and rebooted and it's not showing up in my app drawer.... any ideas?
Click to expand...
Click to collapse
? Strange Are you sure that you placed it in system/apps and that the permissions are correct. Normally you will get a message "Android is updating..." after reboot.

[BOOT ANIMATION]Dusty Sand Animation[480 X 800]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
* DISCLAIMER
# I am not responsible if anything happens
to your phone/device.
# You have to be rooted in order
to apply this mod.
# Anyone interested to make a different size animation is
welcomed but he/she should get the permissions.
Click to expand...
Click to collapse
Download Here:- MEDIAFIRE LINK
Click to expand...
Click to collapse
* HOW TO INSTALL​
# METHOD - 1 (USING FILE MANAGER APP)
~ Copy the boot_animation.zip to the root directory of your sdcard.
~ Install a file manager (like ES File Manager) and browse to the /system
directory and then media and delete the boot_animation.zip present there.
~ Now go to the sdcard folder copy the boot_animation.zip to the
/system/media directory.
~ Reboot and Enjoy
# METHOD - 2 (USING ADB)
~ Download APKTOOLS.zip from here.
~ Extract it to somewhere like Desktop and browse to it.
~ Hold down shift and then right click, you will get an extended menu,
Select "Open command Window Here" (Minimize it.)
~ Copy the boot_animation.zip to this extracted folder.
~ Connect your phone with USB Debugging ON.
~ Type in the following commands:-
Code:
adb kill-server
adb start-server
adb remount rw
adb shell
(You will get a # sign...Don't Worry..Continue typing the commands.)
rm /system/media/boot_animation.zip
exit
(Now the # sign will be removed and you will return back to your directory.)
adb push boot_animation.zip /system/media
adb reboot
~ Enjoy the new boot animation.
Click to expand...
Click to collapse
Please If You like It, then Hit the THANKS buttons or just comment...
​
TeKnoGin said:
Please If You like It, then Hit the THANKS buttons or just comment...
​
Click to expand...
Click to collapse
Says file doesn't exist when your select link
Sent from my Nexus 4 using Tapatalk 2
can you make for acro s too?(720x1280)
Zehlek said:
Says file doesn't exist when your select link
Sent from my Nexus 4 using Tapatalk 2
Click to expand...
Click to collapse
Thnx to Zehlek
Link Updated :- http://www.mediafire.com/download.php?76krhj818rg3qz0

[Q]Framework impossible on Huawei Mediapad X1 ?

Hi!
I used a few days with much pleasure the Huawei MediaPad X1, imported from HK.
Framework I use on my Galaxy Note 2 beaucou with satisfaction. But can not be installed on the X1.
Here are two screenshot, albeit in French.
If someone has an idea, thank you in advance.
Note that I've ticked the box to accept the unknown sources.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Try this version (FAQ, post #7):
http://forum.xda-developers.com/showthread.php?p=52292102
Also make sure to read post #8 once you install the framework successfully, since you're using a Huawei device.
Ok I'll see it in effect. Thank you
EDIT
I don't know how to disable the resources API in the Xposed Installer settings.
And content of Number 8 link is not reassuring. I would not make fatal error or transform my new toy in gasworks.
HI, look the shot,
Files already exists.
Fone rooted???
Ask here
Xposed FAQ / Known issues
elpabar said:
Ok I'll see it in effect. Thank you
EDIT
I don't know how to disable the resources API in the Xposed Installer settings.
And content of Number 8 link is not reassuring. I would not make fatal error or transform my new toy in gasworks.
Click to expand...
Click to collapse
Open the Xposed installed, go to "Settings" and tap "Disable resource hooks".
blogodoblogodo said:
...
Fone rooted???
...
Click to expand...
Click to collapse
As I said, I used it on my Galaxy Note 2.
GermainZ said:
Open the Xposed installed, go to "Settings" and tap "Disable resource hooks".
Click to expand...
Click to collapse
Thanks! I checked this box, and it makes no difference unfortunately.
elpabar said:
I checked this box, and it makes no difference unfortunately.
Click to expand...
Click to collapse
Did you try installing the framework via your (custom) recovery?
Never tried it, and am not very comfortable with the recovery mode.
I do not even know operate on this model which button during startup.
Hi, I use 7d-504l.
I succed to be enable to activate xposed .
For Xposed Framework ver2.5.1 limited.
I use su ,onboot script by SManager as,
#!/system/bin/sh
mount -o rw,remount /system
chattr -i -R /system
rm /system/set_immutable.list
chattr -i /system/buld.prop
chattr -i /system/bin/app_process
chattr -i /system/bin/app_process.orig
I confirmed to work the latest version of GravityBox,Xblast,advanced power management7.0a.
Sent from my MediaPad X1 7.0
I correct , because of build.prop misspelled.
#!/system/bin/sh
mount -o rw,remount /system
chattr -i -R /system
rm /system/set_immutable.list
chattr -i /system/build.prop
chattr -i /system/bin/app_process
chattr -i /system/bin/app_process.orig

Categories

Resources