Related
Hi there,
I got Linux to boot at OPAL via linwizard project. Here are steps needed to get it work.
1) download image from:
http://tinderbox.x86.dev.gentoo.org/embedded/linwizard/gizard-20080602.tar.bz2
2) copy content of file to the microSD card
3) edit default txt and replace init=/linuxrc with init=/bin/sh
4) run haret and let it boot.
After a while you'll get to shell. No graphics.
Now you can attach microusb cable and connect it with your linux laptop (I recommend ubuntu)
and you will get usb0 interfece to start up.
Which IP to use to connect with OPAL I still must investigate.
Well ip connectivity now works:
ip=<client-ip>:<server-ip>:<gw-ip>:<netmask>:<hostname>:<device>:<autoconf>
Notas:/# ifconfig usb0 up 192.168.2.200 netmask 255.255.255.0
Listik:/usr/src/linux-2.6.27/Documentation# ping 192.168.2.202
PING 192.168.2.202 (192.168.2.202) 56(84) bytes of data.
64 bytes from 192.168.2.202: icmp_seq=1 ttl=64 time=2.95 ms
64 bytes from 192.168.2.202: icmp_seq=2 ttl=64 time=1.72 ms
And how to do it:
prolong "set CMDLINE" line with
ip=192.168.2.202:192.168.2.200:192.168.2.200pal:usb0
But in this image there doesn't seem to be any telnet/ssh server running. I will try cook image with ssh server support later
Download error
Were not able to re-upload
404 file not found error!!
http://tinderbox.x86.dev.gentoo.org/embedded/linwizard/
and open latest gizard-<date>.tar.bz2
or that I suppose.
The latest link should be http://tinderbox.x86.dev.gentoo.org/embedded/linwizard/gizard-20090703.tar.bz2
does this mean any chance of android working? anyone tried?
Hey,
I'm a new Opal user and I'm interested in getting *nix running on my device. I still haven't had the chance to mess around with this stuff but I'm excited to see this thread.
I was looking into the possibility of running Android on the Opal and it seems the closest thing is this thread bout running it on the Herald (it uses the same processor as the Opal).
I don't any experience in Linux porting so I thought I'd share this, in case anyone else is interested. And at the same time, I'll try to see if I can get something working based on what has been/is being done for other devices.
Sorry for the long post.
Hey Folks,
Any progress on getting Android on Opal? I am eagerly waiting to load one.
Kindly let me know, if this version of Linux when loaded, gives the UI.
Cheers'
Vijay
cijoml said:
Hi there
I got Linux to boot at OPAL via linwizard project. Here are steps needed to get it work.
1) download image from:
http://tinderbox.x86.dev.gentoo.org/embedded/linwizard/gizard-20080602.tar.bz2
2) copy content of file to the microSD card
3) edit default txt and replace init=/linuxrc with init=/bin/sh
4) run haret and let it boot.
After a while you'll get to shell. No graphics.
Now you can attach microusb cable and connect it with your linux laptop (I recommend ubuntu)
and you will get usb0 interfece to start up.
Which IP to use to connect with OPAL I still must investigate.
Click to expand...
Click to collapse
Android can boot on Opal
I have some good news, Android can boot on the Opal. This is just a proof of concept as it's missing tons of drivers and is completely useless.
Touchscreen and all keys except for the volume control (and obviously the reset button) are not working. So you basically can't do anything when you run it.
What I tried is the same as what's written in this thread about running Android on Gene. They're using the build made for the Herald/Wing (just as I was proposing in my last post) with customized initramfs and kernel.
You'll find all the necessary details in that thread. However, there's a newer build than the one mentioned there it's wing-linux-0.4pre2.cab. And the suitable kernel for that build is supposed to be the pre2 posted in this post but it didn't work on my Opal so I tried the older Gene kernel and it worked. The main difference between the two is bluetooth support, and that's obviously is of no use for us.
This doesn't effect the Windows rom, nor does it requires any special partitioning. Still it's best to have everything backed up before launching it, just in case.
This is the official site for the wing/herald build:
http://wing-linux.sf.net/
This thread on their forums about the Gene port will probably be of use to us:
http://sourceforge.net/apps/phpbb/wing-linux/viewtopic.php?f=4&t=4
I'm reading about the next steps but as I said before, I don't have any previous experience or knowledge about this type of things. If someone can give me hand, I would be more than grateful. At any rate, once I have better understanding of the concept I'll contact the people behind the Wing and the Gene ports.
P.S: If you do try to run this, keep in mind that this will take lots of time, specially for the first launch. And when you get an error saying something like "android sh: can't access tty" just ignore it and keep waiting. After a while you'll have a flashing "android" on the screen, and after some more waiting you'll reach the main screen.
Is this just THE BEGINNING
Sooper Stuff..!! So is this just THE BEGINNING??
How do we port the drivers and other required information in the build?
Cheers'
Vijay
www.msigeek.com
A Lil' help
I'm going through the Gene port thread here and on the Wing-linux sourceforge forums but I'm still a bit overwhelmed.
I would appreciate any help as I'm completely new to porting. I have some programming and linux knowledge but never attempted this type of things.
Click to expand...
Click to collapse
So am I.
Hmmm...
Right. Lets do it the way I did it.
1. Get the touchscreen working. Through HaRET, you must have got the GPIO interrupt whenever you pressed the touchscreen. You must have got two numbers corresponding to each press - a smaller number and a bigger number. The smaller number is the GPIO, and the larger number is, well, lets say a special GPIO value for the same pin.
Now checkout the Gene branch through git.
Goto /wing-linux/kernel/arch/arm/mach-omap1/board-htcherald.c
Scroll down to a block of code where you'll see the touchscreen code. Enter the smaller number in the .dav_gpio statement, and the IRQ number in the OMAP_GPIO_IRQ() statement below.
2. Follow the Kernel build instructions on the development section of the wing-linux wiki (the two make commands)
Copy the zImage into the linux folder on your SD card
Boot into wing-linux. The touchscreen should start working.
3. Now, hopefully, after the touchscreen's working, You would essentially just require two more buttons - the home button and the back button for minimum functionality. Everything else can be worked on by the touchscreen.
Then follow the instructions on the wing-linux forum (Page 2) to get the KEY(row,col) values of the keys on your handset. Hopefully you should get atleast a couple. Note down the corresponding keys and their KEY(r,c) values output.
4. Fire up board-htcherald.c again and goto the place where you have the KEY(r,c,KEY_blah) thing and replace the codes as per your obtained KEY(r,c,KEY_blah) values (The Home button is the one commented as Left Button)
5. That's all I can help you with as of now. I'm also figuring out a stable way of getting the DPad and the center select key to work, but It'll take some time.
Thanks kshaurya!
(This guy right here is the one who fixed the kernel for Gene, I asked him for some pointers).
I don't want to take my device apart just yet (I usually do my best not take to dismantle anything that I haven't owned for at least 3 months unless absolutely necessary) and I couldn't find a place that states what touchscreen it uses. I'm just hoping that it's the same a tsc2046 as well. [Is there anyone without a warranty and/or willing to check for us?]
I'm gonna double check the values I got from the touchscreen as for some reason I seem to have to IRQ values, probably forgot to get rid of some spamming irq. And, at the same time, I'm currently setting up a VM as a building environment, my main boot is Intrepid 64 and there's no 'psyco' package for 64 machines.
If anyone else have some experience and wants to try this, refer to: http://www.handhelds.org/moin/moin.cgi/HaRET_20Documentation (using haret to get the GPIO and IRQ values needed).
And to:
http://sourceforge.net/apps/trac/wing-linux/wiki/Development (acquiring the source code from Wing Linux and how to build it).
And a quick question for anyone that tried booting Android on the Opal, what screen did you get when Android finally finished booting?
I don't want to take my device apart just yet
Click to expand...
Click to collapse
Huh? where did that come from? Wing Linux will not touch your WM.
I seem to have to IRQ values
Click to expand...
Click to collapse
Do you mean two? Well, that's exactly what you should get. Even if it's just one, enter that value in the code.
my main boot is Intrepid 64 and there's no 'psyco' package for 64 machines
Click to expand...
Click to collapse
Oh no. dont tell me that you are building the entire thing. all you need to do is build the KERNEL! Please! Don't go into building the whole thing from scratch. Use the make ARCH ARM commands given on that page.
kshaurya said:
Huh? where did that come from? Wing Linux will not touch your WM.
Click to expand...
Click to collapse
I mean to check the screen, in case it turned out to be different that what you have.
kshaurya said:
Do you mean two? Well, that's exactly what you should get. Even if it's just one, enter that value in the code.
Click to expand...
Click to collapse
Yeah, stupid typo.
I noticed now that one of them appears when I keep the screen 'touched' for a bit longer.
kshaurya said:
Oh no. dont tell me that you are building the entire thing. all you need to do is build the KERNEL! Please! Don't go into building the whole thing from scratch. Use the make ARCH ARM commands given on that page.
Click to expand...
Click to collapse
I'm not gonna build the complete thing. Seems like I got too exited and failed to notice that building the kernel only requires a cross-compile toolchain, te rest is for compiling the whole thing.
I'm not THIS stupid usually . Honestly!
Thanks again!
I'm not THIS stupid usually . Honestly!
Click to expand...
Click to collapse
Its pretty normal
Weird.
I've only changed the two touchscreen values and built the kenrel. It finished without any error but now it won't boot.
It gets stuck, even before the space allocation part, with this error: "sh: can't access tty; job control turned off". And then it displays a prompt.
I'll try modifying an older build, I'm pulling them from the repos at the moment.
After all, the pre2 kernel from Gene didn't boot on my device (although it got stuck later on).
Try doing a clean install - Remove the linux folder and try again.
Also, make sure that you're not forgetting to checkout the Gene branch.
Code:
git checkout Gene
Is your default.txt modified? And have you downloaded the modified initramfs.cpio?
check in the Gene forums for that.
Already tried the clean install, no dice. The default.txt is untouched and I'm using the modified intramfs. What happened this time is different from what happens using the original one, it's not asking me to specify the partition size but instead it's waiting for a command. I could probably ssh via usb but I have no clue how that might help.
And I've already checked out the Gene branch from the beginning.
I've tried compiling the kernel for pre1 (after changing the screen values) from SVN and it did boot (both using the cabs for pre1 and pre2) but no touch screen yet. All in all, I'm guessing that there's too much hardware difference here.
And the button for lowering volumes didn't work either, it seems like whatever you changed for getting it to work on Gene is the same as what we need here, but I'll think about that later.
I only have two ideas left:
- Trying to go back to a more stable build (with lesser features and lesser possibilities for errors). Maybe 0.3.
- Trying to create some kind of hybrid kernel using this alongside the HTC Vogue build as it probably has closer hardware to the Opal (obviously, I'm talking about everything beside the MSM7500 400MHz processor that it has). I'm hoping it won't get to this cause I'm definitely under qualified for that at the time being.
What happened this time is different from what happens using the original one, it's not asking me to specify the partition size but instead it's waiting for a command.
Click to expand...
Click to collapse
Could you post a screenshot?
I've tried compiling the kernel for pre1 (after changing the screen values)
Click to expand...
Click to collapse
I'm assuming you mean the touchscreen values? Try interchanging and see.
Trying to go back to a more stable build
Click to expand...
Click to collapse
I wouldn't recommend that. Defeats the whole purpose.
Why don't you try getting in touch with darkstar?
kshaurya said:
Could you post a screenshot?
Click to expand...
Click to collapse
A friend borrowed my digital camera, I tried my laptop's webcam but the text it too blurry. Couldn't fix it using gimp either. So here's exactly what's showing on the screen:
Code:
mdir: Cannot creat directory `/mnt' : File exists
modprbe: could not parse modules.dep
initramfs: Creating device nodes:
initramfs: Loading /initrd.d/10-initfs.sh module
initramfs: Loading /initrd.d/30-wingboot.sh module
Selected:
ROOT_DEVICE=/dev/
CMDLINE=debug quiet psplash=false loglevel=7 init=/sbin/init console=tty0 video=omapfb:accel fbcon=rotate:3 4 root=/dev/
initramfs: Loading /initrd.d/80-loopboot.sh module
initramfs: Loading /initrd.d/85-blockboot.sh module
booting from: /dev/
mount: Mounting /dev/ on /mnt failed: Invalid argument
Unable to mount rootfs device
sh: can't access tty; job control turned off
/ $
And after the prompt, on the same line, there's a flashing '_' waiting for input.
Using the original zImage (from the pre2 cab) it's right around here that the screen clears and the Wing Linux installation script kicks in.
kshaurya said:
I'm assuming you mean the touchscreen values? Try interchanging and see.
Click to expand...
Click to collapse
Will try that next.
kshaurya said:
I wouldn't recommend that. Defeats the whole purpose.
Click to expand...
Click to collapse
I meant it as just a temporary test to till the cause of the incompatibility is figured out. With less things that could go wrong, it'll be easier to locate the ones that are going wrong.
kshaurya said:
Why don't you try getting in touch with darkstar?
Click to expand...
Click to collapse
You're right. I should post a thread on the project's forums asking for his help.
I hope this rom can hlep us make the DVP best!
I am so excited that is 7004
Thank for every one
I hope someone sotp the spread of this rom without my permission!!!
IF you want to knew more about DVP you can gou to [email protected]/forum-27-1.html
You can also join the QQ GROUP 193983101,i can help you with dvp
It seems I have 7720...
Are you talking about ATT DVP?
snailium said:
It seems I have 7720...
Are you talking about ATT DVP?
Click to expand...
Click to collapse
sure
you can use it to make your phone back to 7004 and Jailbreak your phone
From opening up the rar, the file mentions:
"US_TMO_SIGNED"
Is there a different ROM for each US carrier?
In other words, the Venue Pro appears to be sold in the US only as an unlocked device, but there is a version for AT&T bands and a version for T-Mobile bands. Is the ROM the same for both, so this would work for both?
jhoff80 said:
From opening up the rar, the file mentions:
"US_TMO_SIGNED"
Is there a different ROM for each US carrier?
In other words, the Venue Pro appears to be sold in the US only as an unlocked device, but there is a version for AT&T bands and a version for T-Mobile bands. Is the ROM the same for both, so this would work for both?
Click to expand...
Click to collapse
ALL DVP can use this rom
So is this ROM the missing link we needed to hack the DVP or do we gain nothing lol
We need a full image dump and not a backup file. And yeah. This is likely the only way to hack the phone.
MJCS said:
We need a full image dump and not a backup file. And yeah. This is likely the only way to hack the phone.
Click to expand...
Click to collapse
isnt "webseraph" claiming this to be the Image?
raiderfan247365 said:
isnt "webseraph" claiming this to be the Image?
Click to expand...
Click to collapse
From what I saw, it's an .ffu file, which it's my understanding that this is a full firmware image.
I would need the link again to verify but last time it was a backup.
Does this mean .....
MJCS said:
I would need the link again to verify but last time it was a backup.
Click to expand...
Click to collapse
Hey guys, does this mean I can unbrick my dvp ?
It's been sitting there for ages and I have went out to buy a omnia 7 but I really love the phone.... .... please keep me posted and tell me how to upload the image onto the phone so I have a working firmware again ^_^.
PM me or whatever ^_^
I'm so excited, DVP is no longer a dead phone and can have developments ^^
hihi2u2 said:
Hey guys, does this mean I can unbrick my dvp ?
It's been sitting there for ages and I have went out to buy a omnia 7 but I really love the phone.... .... please keep me posted and tell me how to upload the image onto the phone so I have a working firmware again ^_^.
PM me or whatever ^_^
I'm so excited, DVP is no longer a dead phone and can have developments ^^
Click to expand...
Click to collapse
does anyone have the image file and can post it to a standard upload service (mediafire, fileserve, etc.). webseraph where did the link go?
I've got it saved on my computer at home, I can reupload it later tonight if people still need it by the time I get home. It came with a bunch of Eastern-language files, Chinese or Japanese I believe, old versions of x86 Zune software, old versions of x86 drivers, and the .ffu file.
Since I believe the .ffu is the ROM itself (hopefully not a backup, I don't know much about this stuff and my Dell Venue Pro that I decided to order is still with Fedex), I'll just upload that, and anything else can be sourced at a million other locations.
Thanks ! !
jhoff80 said:
I've got it saved on my computer at home, I can reupload it later tonight.
Click to expand...
Click to collapse
Thanks, looking forward to it ... ... btw can you give some guidance as to how to flash the phone with the firmware ?
hihi2u2 said:
Thanks, looking forward to it ... ... btw can you give some guidance as to how to flash the phone with the firmware ?
Click to expand...
Click to collapse
I updated my previous post, I've got no idea. The instructions weren't in English and I don't even have a WP7 device (yet). I believe it would involve using UpdateWP.exe though.
cheers ^^
jhoff80 said:
I updated my previous post, I've got no idea. The instructions weren't in English and I don't even have a WP7 device (yet). I believe it would involve using UpdateWP.exe though.
Click to expand...
Click to collapse
It'll be nice to have a look at it anyways, thank you sooooo much !
Can you upload the file somewhere? I would like to disect it.
Here's a repost of only the .ffu from the original post:
http://www.multiupload.com/5YT27EHLZV
The original rar also contained instructions in Chinese, plus other folders:
1 start, which included the VC redist files
2 Zune 4.7, (x86 only)
3 ZuneDesktop UpdateTool 1404, (x86 only)
4 Tool FFU _FinalCheck_CheckPVK, which I believe is just a wrapper to run the UpdateWP.exe command I mention below. If anyone wants this folder too, let me know.
5 FFU-Deploy, which contained only the .ffu file I zipped up and reposted.
From my brief research into the matter, it appears that you can use Zune 4.7 with an older UpdateWP.exe with the following command:
UpdateWP.exe /ffu <filename>
Zune 4.7 and the older UpdateWP.exe are available all over so I didn't bother uploading those.
Machine translation of instruction file:
Brush process
Computer system XP SP3 (win7 system similar)
By folder order in 1234 to install
A: Click the folder to install the three files in 1 start
B: Download and install this zune4.7 me
C: install about 3 ZuneDesktop UpdateTool 1404 folder in the Setup-UpdateWP-x86.exe
D: Open the folder 4 Tool FFU _FinalCheck_CheckPVK in the file FFUDownload_ShareU.exe,
Tap Browse, find the 5 FFU-Deploy folder of the Rom file
Then began to brush machine,
1 cell phone off, remove the battery
2 believe the key to holding down the data cable to the computer
3 Wait a moment, the computer will automatically find the drivers. (Note to zune off, preferably in the Task Manager in the zune process off)
4 drive automatically installed after the point about brush machine software in the download, and then will begin to brush machine, brush machine program into the background of green.
After a good brush, the phone will automatically restart, like, Brush some tips that appear on the software window, all the way to determine the fine.
Brush, do not pull the data line.
Click to expand...
Click to collapse
Again though, this isn't my file, and I haven't tested it, so don't blame me if something goes wrong.
time to do some reading ^^
jhoff80 said:
Here's a repost of only the .ffu from the original post:
http://www.multiupload.com/5YT27EHLZV
The original rar also contained instructions in Chinese, plus other folders:
1 start, which included the VC redist files
2 Zune 4.7, (x86 only)
3 ZuneDesktop UpdateTool 1404, (x86 only)
4 Tool FFU _FinalCheck_CheckPVK, which I believe is just a wrapper to run the UpdateWP.exe command I mention below. If anyone wants this folder too, let me know.
5 FFU-Deploy, which contained only the .ffu file I zipped up and reposted.
From my brief research into the matter, it appears that you can use Zune 4.7 with an older UpdateWP.exe with the following command:
UpdateWP.exe /ffu <filename>
Zune 4.7 and the older UpdateWP.exe are available all over so I didn't bother uploading those.
Machine translation of instruction file:
Again though, this isn't my file, and I haven't tested it, so don't blame me if something goes wrong.
Click to expand...
Click to collapse
ACE will try it out ^^
Actually, can you upload the whole original .rar cause I can read chinese and want to flash my phone anyways cause its bricked so I just want to see if this will help and it looks like i need the whole package in order to do so ^^
The FFU works. It is 7704 and it is amazing how much Windows Phone 7 has advanced. Now the trick is to find a way to install an exploit before Mango that sets the interop unlock at every boot or something and then find a way to restore a backup. I am not really sure how the backup/restore process works. It did require me have the latest updates before restoring so it is possible it just restores non /windows files and folders. So if we can find something in the system that can provision the provxml files then we are golden. The problem is I have no idea what would do that in the system. If you dare to do what I just did, make sure you have a back up and a backup of that backup stored elsewhere as you never know if zune will delete your backup.
Hey guys!
I'm currently into scripts so I thought about creating something new. But I didn't know what...
But a friend was just looking for something to automatically synchronize all apps on the phone with the PC (copy them to PC and back to phone when needed).
So I decided to create something for him and share it with this great community.
Currently it's a really early version. The only option is currently to copy the apps and their data to PC. Nothing more.
Feedback is always welcome.
Note: I've made this for Linux, it may work for Mac also.
I won't make a Windows version! Don't ask for it!
How it works:
It will use adb to pull all apps and their data to PC.
You'll be asked for a folder to save to only once, it'll be saved in a config file.
It will wait for your device to connect and then start syncing.
When it's finished it'll tell you where everything have been saved.
Requirements:
-USB-Debugging on
-Enough free space on PC
-adb in the $PATH-variable (don't ask how to, use Google)
WIP:
-Music, image and video syncing with PC
-Restore saved apps from PC to phone with the script
-Some speed improvements (cause it runs really slow)
-Get a nice UI (last thing to do! Don't ask for it now!)
Download:
http://depositfiles.com/files/z26tkazxm
Source code:
http://pastebin.com/DWWVJat5
Tips:
To get it really automated put it in your Window Manager autostart folder.
How to do this: http://en.gentoo-wiki.com/wiki/Autostart_Programs
When script asks you for the path to save, don't use the format ~/something - this won't work.
Use /home/you/something instead.
Don't put a / at the end of the path.
I'll correct this in future versions.
Use option -h to get the help with all commands viewed.
Enjoy it and give me feedback!
Sent from my loved HTC Desire [email protected]
Tutorials
Tutorials will go here.
I will now create one for the cygwin method.
Addon package for the cygwin method: http://depositfiles.com/files/lipqqsv8t
Changelog
22.01.2012:
-initial release
28.01.2012:
-added restore option (beta) -> see the -h option for how to
-started the development for music, picture and video sync
Ditti4 said:
I won't make a Windows version! Don't ask for it!.
Click to expand...
Click to collapse
((((((((((((((
do3in said:
((((((((((((((
Click to expand...
Click to collapse
It's because I don't know how do batch code and the windows version would get updates later.
You can try to recode it for windows if you give me credits.
I got an idea. Gimme till tomorrow...
Hey dudes!
I think we can get the script working on Windows with Cygwin, but I don't know (yet) how to autostart scripts in the Cygwin environment.
So it would be good to have someone to test it with Cygwin.
BTW: restore function should work know. Will do some testing today and if everything is right I'll release an update.
Sent from my loved HTC Desire [email protected]
CustomEdgeFavs helps you to extend the functionalities of Microsoft Edge by adding the bookmarklet features.
I've created two variants: the "Desktop" edition for Windows 10 PC and the "UWP" edition for Windows 10 Mobile.
They're quite similar, the only big difference is that Windows 10 Mobile needs an initial configuration to work.
UWP EDITION - INSTALLATION ON WINDOWS 10 MOBILE (DON'T USE ON DESKTOP)
1. Extract the zip file
2. Copy the files within your phone
3. From the File Manager on the phone, open the only appxbundle available and confirm
4. Wait some seconds: the app will appear within the app list
IMPORTANT TIPS AND ADVICES, READ CAREFULLY!!!
1. If you're having some permission problems while saving the lnk file, you can manually copy the lnk file by downloading the zip provided here.
2. You can install the appx on Windows 10 PC, but this will not work due to permission problems. Please use the Desktop Edition.
3. To allow Edge to recognize the changes, you've to remember the website where you've created the favourite. After the creation close and reopen Edge, navigate to that website, open and close the favouries (you can try to switch folder too) and then navigate to another website.
4. UWP edition doesn't require Interop-unlock to work.
5. You can't add or remove favourites from CustomEdgeFavs. You've to create or remove these directly from Edge and then edit with CustomEdgeFavs.
6. If you can't delete a bookmarklet, try to edit that again, then open Edge and try to delete before syncronizzation.
7. The favourites syncronizzation will work even with edited bookmarklets. Be careful as you can lose or damage your favourites.
LATEST VERSION + CHANGELOG
Desktop Edition - 1.0 16/01/2016
UWP Edition - 1.0 16/01/2016
p.s. Here's a tutorial in italian with some script tested and created by me http://www.windowsblogitalia.com/2016/01/microsoft-edge-customedgefavs/
Working fine on PC but........
I used the desktop app and it worked but its not installing in phone. I tried from file manager did not work and when I used Device Portal it shows me this error, " Failure reason: Failed to start deployment. Failure text: Package failed updates, dependency or conflict validation. (0x80073cf3) "
Hi, could you try to open the appxbundle from the file explorer app?
Pasquiindustry said:
Hi, could you try to open the appxbundle from the file explorer app?
Click to expand...
Click to collapse
I did. The pop up for installing the apps comes up. once clicked it goes away and then nothing happens. I hard reseted and now trying again.
That's strange. Are you on build 10586 or higher?
i am on the latest build and had reseted the phone. i can still deploy other appx but not yours. Its working fine in PC though.
Hi, try these appx. There are dependencies that you may need to install to make this app working.
You'll find two appx within the zip file.
I think that you can install them from the file manager.
now its done but i had to do a bit tweaking.
Pasquiindustry said:
Hi, try these appx. There are dependencies that you may need to install to make this app working.
You'll find two appx within the zip file.
I think that you can install them from the file manager.
Click to expand...
Click to collapse
Using dependency it worked but as i suspected the shortcut link you have given did not work. So i went into packages ( i made a short cut from PC and copied it to phone. i think you should make a shortcut from the address of edge bookmarks folder on PC ) . After that went to edge folder , roaming state. Voila your app shows me " Success "
I'm already creating lnk files from desktop
Which path did you use? In my phone, the correct path is c:\Data\usera\DefApps.Windows Phone\AppData\Local\Packages etc... (the one available within C.E.F.)
Pasquiindustry said:
I'm already creating lnk files from desktop
Which path did you use? In my phone, the correct path is c:\Data\usera\DefApps.Windows Phone\AppData\Local\Packages etc... (the one available within C.E.F.)
Click to expand...
Click to collapse
i went packages and the Microsoft edge folder.
I tried your other apps before, those were nice. Device diagnostic hub should have a page showing running apps ( not system apps ) like task manager- lite
katsuga said:
i went packages and the Microsoft edge folder.
I tried your other apps before, those were nice. Device diagnostic hub should have a page showing running apps ( not system apps ) like task manager- lite
Click to expand...
Click to collapse
If you can recover the complete path or the lnk file, I will add within the OP
About Device Diagnostics HUB, I've merged the "apps" and the "processes" within the same list. I will add a filter within the next big update (I'm going to release a bugfix with some better translations soon, then I will release the 2.0 with a lot of new features). I've opened a dedicated forum for DDH here http://forum.xda-developers.com/win...-device-diagnostics-hub-performances-t3276664
p.s. diffidate from imitations XD
Pasquiindustry said:
If you can recover the complete path or the lnk file, I will add within the OP
About Device Diagnostics HUB, I've merged the "apps" and the "processes" within the same list. I will add a filter within the next big update (I'm going to release a bugfix with some better translations soon, then I will release the 2.0 with a lot of new features). I've opened a dedicated forum for DDH here http://forum.xda-developers.com/win...-device-diagnostics-hub-performances-t3276664
p.s. diffidate from imitations XD
Click to expand...
Click to collapse
hey. i made a shortcut from pc and working on phone. give me your email id i will send the shortcut file. I tried to post here but xda said i cant.
katsuga said:
hey. i made a shortcut from pc and working on phone. give me your email id i will send the shortcut file. I tried to post here but xda said i cant.
Click to expand...
Click to collapse
I think you've to put the file within a .zip. You can send the file here:
pasindustry at Outlook dot com
Pasquiindustry said:
I think you've to put the file within a .zip. You can send the file here:
pasindustry at Outlook dot com
Click to expand...
Click to collapse
yeah i have sent you the file . check email. Beside that is it possible to get those interlop unlocking tool in appx format. I dont know why but i could never deploy xap using deployer or power tool. For which i am unable to do interlop unlock
katsuga said:
yeah i have sent you the file . check email. Beside that is it possible to get those interlop unlocking tool in appx format. I dont know why but i could never deploy xap using deployer or power tool. For which i am unable to do interlop unlock
Click to expand...
Click to collapse
I will update the lnk asap
Really thanks!
Pasquiindustry said:
I will update the lnk asap
Really thanks!
Click to expand...
Click to collapse
no probs... keep on making such mods. Well try to make them independent of interlop unlock like this one as i cant interlop unlock my phone
Would be good to add auto-fitting the image to certain dimensions and the possibility of personalization as in the Start menu. If that's possible. For example:
https://youtu.be/GVMLHa42U7s
Sorry for my English
Hi. After a few days of excellent work in the program will stop displaying the websites. Re-jump and run is not helping. Is there a way how to fix it?
maxaon09 said:
Hi. After a few days of excellent work in the program will stop displaying the websites. Re-jump and run is not helping. Is there a way how to fix it?
Click to expand...
Click to collapse
Mhm... this is the first time I see this problem.
Have you disabled some settings related to synchronization or you've done some updates from Windows Update? Try to reduce the numer/size of the favourites and their icons too
About the concept, unfortunately that's not possible, because it's possible to use only a picture and I can't add more options to the favourites list within Edge
Pasquiindustry said:
... Try to reduce the numer/size of the favourites and their icons too...
Click to expand...
Click to collapse
Yes, perhaps there is any limit on the number of\a size. If you delete all the created tiles, the program again has earned (remove 1-2 tiles did not solve the problem). When the size of 70x70 pixels was created about 35 tiles.
About the update: the program has been installed on the build 14251. Then updated to 14257. The program works excellent, all created in the early build displays and new. Thank you
=======================================================================================
After 3 hours :Reduced the icons to 50x50 pixels. Created 19 tiles. Closed the program. Then again launched and again the sites ceased to appear.
Hello People. This is basically a combination of batch scripts made by me to make WSL less daunting for people who do not want to do Powershell things and introduce MANY more people to Linux [and make existing dual boot Linux users just stick to Windows w/o the ugly GRUB].
Disclaimer: Only you know what you're doing. I have tested everything on me and my friend's PC and it seems to work fine. If your PC catches fire or starts an apocalypse it's not my fault. So yeah be careful about what you're doing.
Things the scripts can do:
1) Enable WSL 2 in any Windows 10 2004 computer. [NEW: Older versions of windows 10 are now supported.]
2) Download all the available distros with a couple key presses.
3) Automatically detects the downloaded distro and installs it without any user input.
Downloads are attached in the thread and instructions are given in the zip file.
How to know which zip to download (1 or 2) [Don't Skip]:
1) Go to the start menu.
2) Type "Run" and press enter
3) Then type there "winver" and press enter.
4) If you see 2004 there, ONLY THEN are you able to download the WSL-2 zip. Otherwise update your Windows or use the WSL-1 zip.
Note to self: Things to do in the future--
1) Make a GUI of sorts.
2) Anything else the people want.
Not going to force you or anything, but I would appreciate if you pressed the Thanks button after benefiting from my zip (I see 78 downloads but only 2 thanks...)
Edit: NEW DOWNLOAD LINKS
https://mega.nz/file/NAxASK4I#2qr4ra4KJAcliEqDuCNQd0GnJeHe4FXpvw3KUfqtKxc [for WSL 1]
https://mega.nz/file/lE40AKDa#3Qqk6WH04vzYW8wrrcruuOdqpde-KUzYnu0o50tmZzo [for WSL 2]
WSL-2 Changelogs:Version 1:
Initial Release
Version 2:
Complete Redesign
Compressed all my code to 2 very compact Batch files [previously it was 4 Batch files and 5 Powershell files]
Added Distro Downloaders and Installers (x64 only as of now)
Made it more stable [the previous method was very hacky and used bypasses]
Fixed all typos
Made it more user-friendly
Version 2.1
Quality of Life improvements
Version 2.2
Back-Ported the 'more sophisticated' Distro Downloader from WSL-1
Made Instructions better
WSL-1 Changelogs:Version 1:
Initial Build
Version 1.1:
Made the instructions more newbie friendly.
Backported the WSL-2 Distro Downloader and Installer to WSL-1
Version 2.0:
Complete redesign of the Menu [Looks MUCH more visually pleasing]
Made the in-built Distro Downloader A LOT more sophisticated
Cleaned up the back-end a little bit
Improved Instructions
Announcements27/10/2020
I have started learning C++ so let's see if I can make a GUI with that
18/10/2020
Added a new WSL-1 zip file for people who do not have version 20H1
17.5/10/2020
Fixed Everything and restored download link. Now you can download again!
17/10/2020:
Removed download link because I noticed a couple typos. Fixing them and uploading the file please wait.
Thank you, bro, because I use both windows and linux, now I don't have to restart the computer every time.:good:
JohnMes said:
Thank you, bro, because I use both windows and linux, now I don't have to restart the computer every time.:good:
Click to expand...
Click to collapse
you're very welcome
Just have to. Say thanks had this opFeat installed since maybe it was first available in the list and never researched how. To. Use it or. What it really did. Just gotta find out if this will run fine on my surface too (anything except liveOS off usb will work and causes windows to eff up despite grub/4win/stock/grub if it works excites to use kali on there properly}
Nsomnia said:
Just have to. Say thanks had this opFeat installed since maybe it was first available in the list and never researched how. To. Use it or. What it really did. Just gotta find out if this will run fine on my surface too (anything except liveOS off usb will work and causes windows to eff up despite grub/4win/stock/grub if it works excites to use kali on there properly}
Click to expand...
Click to collapse
You're very welcome but I would be happy if the thanks button was pressed Also, it should work fine on any Windows 10 computer [remember I am using a Haswell computer and it still works]. I also have Kali working but it does not support Monitor Mode and Packet Injection just yet [Microsoft does not want to implement this feature due to security concerns]. You can also get a GUI up and running with ONLY kali using Win-Kex [look it up]
Our PC system has been attacked by a ransomewhere virus, called as .lisp file virus and our files has been encrypted to .lisp sub-extension. Any technical advice?
Thanks but any chance of getting clean links that don't require allowing JavaScript before i can access them ?
It's blocked by my browser security and even if i allow it ,the download link gets blocked by Eset.
Doesn't anyone vet the links that get posted in the forum here ?
There's no need for a download link to be like that.
oldman820 said:
Thanks but any chance of getting clean links that don't require allowing JavaScript before i can access them ?
It's blocked by my browser security and even if i allow it ,the download link gets blocked by Eset.
Doesn't anyone vet the links that get posted in the forum here ?
There's no need for a download link to be like that.
Click to expand...
Click to collapse
sure, giving
NullCode said:
sure, giving
Click to expand...
Click to collapse
Great ,links worked ok ,cheers.
oldman820 said:
Great ,links worked ok ,cheers.
Click to expand...
Click to collapse
Are they useful to you?