wpa_supplicant.conf permission? - Galaxy Ace S5830 Q&A, Help & Troubleshooting

need help from the expert.. what is the correct (factory default) permission for that file in data/misc/wifi?
thanx in advanced..

I have permissions» 747
Sent from my GT-S5830 using XDA App

what 747 means? rwx rw rwx?

dearde4n said:
what 747 means? rwx rw rwx?
Click to expand...
Click to collapse
nope, rwxr--rwx

but 747 permission just give me a bootloop instead rwxrwrwx (but its my wifi wont stop scanning)...

wtf i have rw rw --- and all is going well

Related

Root explorer not deleting files

Hi
I need some help deleting files with root explorer.
I have tried to mount the system to r/w with abd,terminal emulator and root explorer but I still cannot delete files. When the file is deleted it just returns.
I am on Juwe's rom and DTGO kernel.
It is starting to p*** me off. It like my wife nagging me to do something
Please can anyone help me????
Thanks
Vadersbane
Sent from my GT-I9000 using Tapatalk
What files are you deleting?
electrotune1200 said:
What files are you deleting?
Click to expand...
Click to collapse
I'm just trying to cleanup my external card and some other files on the internal one. Nothing special.
Cheers
Vader
Sent from my GT-I9000 using Tapatalk
It happens to me also sometimes, not recently.
Just got stuck in "Deleting Files" sometimes...
Update root explorer .
jje
JJEgan said:
Update root explorer .
jje
Click to expand...
Click to collapse
I have the latest root explorer.
I don't know what else to do other than try another file explorer.
Does anyone have a suggestion?
Thanks
Vadersbane
Sent from my GT-I9000 using Tapatalk
Ready Only Filesystem ?
.Slane. said:
Ready Only Filesystem ?
Click to expand...
Click to collapse
Both, read only and r/w.
Sent from my GT-I9000 using Tapatalk
Try with other like File Expert.
Shaglok said:
Try with other like File Expert.
Click to expand...
Click to collapse
Does it have root access?
Sent from my GT-I9000 using Tapatalk

[MOD]Cache2SD

Hey developers!
We all know that our device has little memory. The Cache partition is only 64MB, of which only 20 are free!
Because of that, I'm going to show you how to use a folder on your SD card to download games and apps from the Android Market, instead of the default one(/cache/download)!
Requirements:
-Terminal Emulator (or ADB Shell)
-Root access
Tutorial:
1. Open Terminal Emulator
2. Type these commands in order:
Code:
su
mkdir /sdcard/cache-download
rm -rf /cache/download
ln -s /sdcard/cache-download /cache/download
3. Enjoy your Cache2SD!
This was tested and it works on SwiftDroid 2.0 RC1
Does this tweak speed up the phone in anyway?
Sent from my GT540 using XDA Premium App
eoghan2t7 said:
Does this tweak speed up the phone in anyway?
Sent from my GT540 using XDA Premium App
Click to expand...
Click to collapse
No, but it allows you to download big games from the Market, like Pocket Legends, Drift Mania, etc.
despotovski01 said:
No, but it allows you to download big games from the Market, like Pocket Legends, Drift Mania, etc.
Click to expand...
Click to collapse
Might put that in my softmod to have a rom with it pre configured
Sent from my GT540 using XDA Premium App
Thanks for sharing!!!
just one question: I can't do this. When i write the third line:
cp -a /cache/download /sdcard/cache-download
Click to expand...
Click to collapse
terminal says: cp: can't preserve ownership of '/sdcard/cache-download/' : Operation not permited
Can you help me??
You don't have Root permission. Root your phone using SuperOneClick, for example.
BRONCHAS said:
Thanks for sharing!!!
just one question: I can't do this. When i write the secon line terminal says: cp: can't preserve ownership of '/sdcard/cache-download/' : Operation not permited
Can you help me??
Click to expand...
Click to collapse
Did you type 'su' at the beginning?
despotovski01 said:
Did you type 'su' at the beginning?
Click to expand...
Click to collapse
Yes yes, first su and Root permision i have, bc i use Swiftdroid 2.0 RC1
BRONCHAS said:
Yes yes, first su and Root permision i have, bc i use Swiftdroid 2.0 RC1
Click to expand...
Click to collapse
Try this:
Code:
su
mkdir /mnt/sdcard/cache-download
cp -a /cache/download /mnt/sdcard/cache-download
rm -rf /cache/download
ln -s /mnt/sdcard/cache-download/download /cache/download
BRONCHAS said:
Thanks for sharing!!!
just one question: I can't do this. When i write the third line:
terminal says: cp: can't preserve ownership of '/sdcard/cache-download/' : Operation not permited
Can you help me??
Click to expand...
Click to collapse
Thats the same error im getting. Even after clearing the download folder.
Sent from my GT540 using XDA Premium App
despotovski01 said:
Try this:
Code:
su
mkdir /mnt/sdcard/cache-download
cp -a /cache/download /mnt/sdcard/cache-download
rm -rf /cache/download
ln -s /mnt/sdcard/cache-download/download /cache/download
Click to expand...
Click to collapse
Sorry but same error:
cp: can't preserve ownership of '/mnt/sdcard/cache-download/download' : Operation not permitted
Click to expand...
Click to collapse
despotovski01 said:
Try this:
Code:
su
mkdir /mnt/sdcard/cache-download
cp -a /cache/download /mnt/sdcard/cache-download
rm -rf /cache/download
ln -s /mnt/sdcard/cache-download/download /cache/download
Click to expand...
Click to collapse
Same error mate
Sent from my GT540 using XDA Premium App
root explorer says that perrmissions cant be changed on the sdcard.
Sent from my GT540 using XDA Premium App
eoghan2t7 said:
root explorer says that perrmissions cant be changed on the sdcard.
Sent from my GT540 using XDA Premium App
Click to expand...
Click to collapse
Hmm, for me it works great, as you can see from the screenshot...
eoghan2t7 said:
root explorer says that perrmissions cant be changed on the sdcard.
Sent from my GT540 using XDA Premium App
Click to expand...
Click to collapse
I've found a fix: just don't run the line that causes problem and you should be good.
despotovski01 said:
I've found a fix: just don't run the line that causes problem and you should be good.
Click to expand...
Click to collapse
Thanks!!!! I'll test it
EDIT: Works great!!!
Good job
Try this worked for me
mkdir /mnt/sdcard/cache-download
cd /sdcard/cache-download
mkdir download
rm -rf /cache/download
ln -s /mnt/sdcard/cache-download/download /cache/download
Sent from my GT540 using XDA Premium App
You have error because fat32 doesn't support extended attributes (file owner and group). Better solution is to create ext4/2/3 partition on sd card and set it mount point to cache or link it.
Sent from my GT540 using Tapatalk
maslokm said:
You have error because fat32 doesn't support extended attributes (file owner and group). Better solution is to create ext4/2/3 partition on sd card and set it mount point to cache or link it.
Sent from my GT540 using Tapatalk
Click to expand...
Click to collapse
Thanks for your suggestion! I'll keep that in mind, but my method works good too.
If cache is just a partition we should be able to repartition internal memory and add 64mb to other one.
Sent from my GT540 using Tapatalk

Live wallpapers not working

Hi all i just installed live wallpaper picker on the stock v6 rom but it force closes when i try to set a lwp any ideas?
Sent from my GT-S5830 using XDA
biffroy said:
Hi all i just installed live wallpaper picker on the stock v6 rom but it force closes when i try to set a lwp any ideas?
Sent from my GT-S5830 using XDA
Click to expand...
Click to collapse
Move it to /system/app using root explorer - Before that push r/w button - Set permission to rw-r--r
Aj.GaLaxY aCE said:
Move it to /system/app using root explorer - Before that push r/w button - Set permission to rw-r--r
Click to expand...
Click to collapse
I know this is an old thread but.... Is it possible to fix this without root? See I have the same problem.
che he said:
I know this is an old thread but.... Is it possible to fix this without root? See I have the same problem.
Click to expand...
Click to collapse
u need root for accessing system partition!

Android is upgrading

Hi. Does anybody know how I can get rid of the "android is upgrading" every time I reboot? I started getting it after I flashed a 15 toggle mod found in this link http://forum.xda-developers.com/showthread.php?t=1864510 on my phone. I'm on a rooted stock LRT. I already deleted systemui.odex
Sent from my GT-N7000 using Tapatalk 2
have you tried, fix permission, wipe cache partition and dalvik cache in CWMR already?
ya wipe cache and dalvik from cwmr. once u reboot it will show the upgrading thing but only for the first timr
Sent from my GT-N7000 using xda premium
letters_to_cleo said:
have you tried, fix permission, wipe cache partition and dalvik cache in CWMR already?
Click to expand...
Click to collapse
Yup. I did this already. It's still giving me the "android is upgrading" when I boot up.
Sent from my GT-N7000 using Tapatalk 2
l0rd_almighty said:
Yup. I did this already. It's still giving me the "android is upgrading" when I boot up.
Click to expand...
Click to collapse
Maybe there's unused or clashed .odex file in the /system/app folder, like systemui.odex. Delete that and reboot.
kopitalk said:
Maybe there's unused or clashed .odex file in the /system/app folder, like systemui.odex. Delete that and reboot.
Click to expand...
Click to collapse
I've done that as well. Still the same.
Sent from my GT-N7000 using Tapatalk 2
the quickpanelsettings.apk... check if it has the correct permisssion..
i.e rw-r--r--
Sent from my GT-N7000 using xda premium
Solved the issue by deleting a bunch of odex files linked to the apk files used by this mod.
Sent from my GT-N7000 using Tapatalk 2
Sigh...
kopitalk said:
Sigh...
Click to expand...
Click to collapse
Ok?
Sent from my GT-N7000 using Tapatalk 2
l0rd_almighty said:
Solved the issue by deleting a bunch of odex files linked to the apk files used by this mod.
Sent from my GT-N7000 using Tapatalk 2
Click to expand...
Click to collapse
what odex files exactly did you delete exactly. I'm having same problem.
vaporized from ma NOTE
coolwolex21 said:
what odex files exactly did you delete exactly. I'm having same problem.
vaporized from ma NOTE
Click to expand...
Click to collapse
If you are using TB, try uninstalling n checking for this message on reboot. It could be because of TB and if so uninstall/install should solve it.
coolwolex21 said:
what odex files exactly did you delete exactly. I'm having same problem.
vaporized from ma NOTE
Click to expand...
Click to collapse
the 15 toggles mod only requires 3 files to be copied
QuickPanelSettings.apk - no odex
SystemUI.apk - Odex need to be deleted
lidroid-res.apk /criskelo-res.apk - no odex
just make sure that permission for all three files are set to rw-r--r--

[Q] su binary permission error

I opened superuser app today and i opened info.Then,i see my su binary v3.1.1 permission -rwxr -xr -r in red color. Tho others are root root and /system/bin/su are fine.How do i fix this?
Sorry for my bad english.
You could update the binary....make sure the permissions are rws--sr-x
Sent from Nortrom's Glavies of Wisdom.
CallMeVentus said:
You could update the binary....make sure the permissions are rws--sr-x
Sent from Nortrom's Glavies of Wisdom.
Click to expand...
Click to collapse
Nah...New ones don't work properly on ace...Better to replace it with an old one
Controversies,controversies everywhere :what:
Prawesome said:
Nah...New ones don't work properly on ace...Better to replace it with an old one
Controversies,controversies everywhere :what:
Click to expand...
Click to collapse
I am on v3.1.1
Sent from Nortrom's Glavies of Wisdom.

Categories

Resources