webOS Nation Forums >  webOS developer forums >  Canuck Coding > WebOS Quick Install
WebOS Quick Install

  Closed Thread
Like Tree8Likes

 
LinkBack Thread Tools Display Modes
Old 07/26/2009, 01:54 AM   #81 (permalink)
Member
 
Niris777's Avatar
 
Join Date: Jul 2009
Location: Puerto Rico
Posts: 238
Likes Received: 0
Thanks: 42
Thanked 28 Times in 21 Posts
Unhappy

Quote:
Originally Posted by Davejm74 View Post
Jason, in not trying to transfer files while tethering, im just simply trying to use tethering.

I don' think you can install [rooting required] apps....unfortunaly.
Niris777 is offline  
Old 07/26/2009, 02:27 AM   #82 (permalink)
Member
 
Join Date: Jul 2009
Posts: 12
Likes Received: 0
Thanks: 12
Thanked 3 Times in 3 Posts
Default

Quote:
Originally Posted by xyther4523 View Post
I have downloaded and installed everything, switched my phone to dev mode, but im getting the Error: no device found or whatever error. I am on Vista 32bit.

I installed the java, and SDK in other words, and ran the webosquickinstall, but after i connect my Pre (in dev mode, novacom drivers installed and works just fine connecting to my computer) then try to install a .ipk thru WebOS Quick Install, thats when the error comes up. I have followed everything perfectly (from what ive read or seen) and im not sure where this error is coming from..as my computer detects my Pre but the program doesnt.
I had the same problem and I fix it reading some more threds on this web page.
you probably need to do the same thing as I try this.
Click START
- Run
Type “Services.msc” and hit enter

At this point a large list of programs will appear. Scroll through until you find the following:

Palm Novacom
right click it and make sure you select the start option.
Then try to load the ipk file on the quick web os software again and install it,
I solved my problem doing this, fyi when you finish installing the apps make sure you do the same thing but this time select stop then you can safely disconect your phone from your computer.
Hope this help for you. I work for me.
Arodmx is offline  
Thanked By: Manutd7
Old 07/26/2009, 03:22 AM   #83 (permalink)
Member
 
Join Date: Jul 2009
Posts: 4
Likes Received: 0
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Mk Im a newb so pardon the question but when I download the file its a .jar so how are you guys installing it on the pc ???
OlSarge is offline  
Old 07/26/2009, 06:08 AM   #84 (permalink)
Member
 
Big D5's Avatar
 
Join Date: Jan 2008
Location: Fort Worth, Texas
Posts: 39
Likes Received: 0
Thanks: 4
Thanked 7 Times in 3 Posts
Default

Sweet app thanks for the hard work
__________________
My device history. Casio A-10/Cassiopeia E-100/PPC6600/PPC6700/700wx/Moto Q/PPC6700/Mogul/Touch/Mogul/700wx/800w/Touch Pro/Touch Diamond/Palm Pre/Touch Pro
Big D5 is offline  
Old 07/26/2009, 06:27 AM   #85 (permalink)
Member
 
Join Date: Jun 2009
Posts: 28
Likes Received: 0
Thanks: 2
Thanked 1 Time in 1 Post
Default

It was the Novacom Drivers, I re-installed and run WEBOSDOCTOR after it started up it installed novacom drivers and it worked instantly. GREAT APP!!
fred72matt is offline  
Old 07/26/2009, 07:08 AM   #86 (permalink)
Member
 
Join Date: Jul 2009
Posts: 8
Likes Received: 0
Thanks: 2
Thanked 1 Time in 1 Post
Default

Many thanks to the development of this. Very easy to install and use! Apps install to the phone in seconds with any issues that I can see. Thanks again!
thcdp is offline  
Old 07/26/2009, 07:32 AM   #87 (permalink)
Member
 
Join Date: Jun 2009
Posts: 22
Likes Received: 0
Thanks: 0
Thanked 1 Time in 1 Post
Default

remove

Last edited by smd4usc; 07/26/2009 at 11:35 AM.
smd4usc is offline  
Old 07/26/2009, 08:27 AM   #88 (permalink)
Member
 
Join Date: Jun 2009
Posts: 7
Likes Received: 0
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Ubutnu, SDK is installed and my device is in developer mode. I keep getting "Error: no device found" error.

Here is the output from dmesg for my device:

[193304.552639] usb 1-5: new high speed USB device using ehci_hcd and address 13
[193304.690205] usb 1-5: configuration #1 chosen from 1 choice
[193304.692300] scsi11 : SCSI emulation for USB Mass Storage devices
[193304.692494] usb-storage: device found at 13
[193304.692496] usb-storage: waiting for device to settle before scanning
[193309.690206] usb-storage: device scan complete
[193309.690933] scsi 11:0:0:0: Direct-Access Palm Pre 0316 PQ: 0 ANSI: 2
[193309.699299] sd 11:0:0:0: [sdg] Attached SCSI removable disk
[193309.699393] sd 11:0:0:0: Attached scsi generic sg7 type 0


Installing on the emulator works fine.
glamajamma is offline  
Old 07/26/2009, 08:54 AM   #89 (permalink)
Developer
 
rwhitby's Avatar
 
Join Date: Apr 2003
Location: Adelaide, Australia - follow @webosinternals on Twitter visit www.webos-internals.org and www.facebook.com/webosinternals
Posts: 10,220
Likes Received: 546
Thanks: 90
Thanked 8,534 Times in 2,806 Posts
Default Suggested improvements for WebOS Quick Install implementation

Jason,

I took a look at the techiques you are using in your excellent WebOS Quick Install tool, and have a number of suggestion (listed below). It's a pity that you didn't release this as open source, or use an open development process, as then I could have just sent you a patch file to implement these suggestions directly ...

1) I notice you run

Code:
/usr/bin/luna-send palm://com.palm.appinstaller/installNoVerify {"target":"<filename>"}
to install ipkg files after you have used the novacom putFile method to upload the ipkg file to the device.

Did you know that you could simply run

Code:
ipkg -o /var install <filename>
instead, and it would automatically handle any dependencies that the application might have on other applications from the Palm App Catalog, or other homebrew ipkg repositories?

2) I notice you run

Code:
rm -r /var/usr/palm/applications/<appid>
to delete an application.

Did you know that you could simply run

Code:
ipkg -o /var remove <appid>
instead, and it would automatically handle the case where one application depends on another application, and removing the second application would cause the first application to stop working? At the moment, your tool blindly deletes the second application, and the first application would cease to function without warning the user about the dependency between the two applications.

3) I notice you run

Code:
/bin/ls -l /var/usr/palm/applications | egrep '^d'
to get the list of installed applications.

Did you know that you could simply run

Code:
ipkg -o /var list_installed
instead, and it would not only give you the name of each application, but it would also return a description of the application and the currently installed version number and allow you to display that information in the Device Management pane of your tool?

Doing it this way would also save you the trouble of creating that little MakeAppsList.sh script, uploading it to /media/ram on the device, running it, and then deleting it afterwards ...

You could even take this further, and use the "ipkg -o /var list" command to list all the applications in the preware.org and future PreCentral ipkg repositories, and allow the users of your tool to simply tick the applications to install after having read the description associated with each one.

4) If you used the built-in Palm ipkg commands as listed above, your WebOS Quick Install tool would also be able to install homebrew apps (such as Terminal, Flashlight, and MyTether) which require root access to install files outside of the /var directory. You could use the novacom runProgram method to run the ipkg command, and then use the novacom runProgram method again to execute the postinst script that would be included with the ipkg files for such packages.

5) If you made these improvements, then no-one would ever need to log into a Pre as root ever again to install a homebrew application of any type - all the things that needed to be done as root could be embedded into the postinst file in the relevant ipkg, and your application could be the means of installing such ipkg files without needing to log into the Pre as root.

6) Taking this concept further, all of the community-created modifications to the built-in Palm applications could be packaged up as ipkg files with postinst scripts, and your application could be used to install and remove those patches too (using inter-package dependencies to handle multiple patches applying to the same files).


Feel free to take these suggestions and incorporate them into your WebOS Quick Install tool. I'll continue to try and convince you to open source the tool so the rest of the development community can help make the tool do so much more than it does today ...

-- Rod
__________________
WebOS Internals and Preware Founder and Developer
You may wish to donate by Paypal to donations @ webos-internals.org if you find our work useful.
All donations go back into development.
www.webos-internals.org twitter.com/webosinternals facebook.com/webosinternals

Last edited by rwhitby; 07/26/2009 at 09:04 AM.
rwhitby is offline  
Thanked by KEYofR, szano1
Old 07/26/2009, 09:01 AM   #90 (permalink)
Member
 
Join Date: Feb 2002
Location: nj
Posts: 1,007
Likes Received: 0
Thanks: 9
Thanked 7 Times in 6 Posts
Default

I was having huge problems trying to install it on my vista pc when I noticed another post saying to disable firewall.I tried that and it installed at once.

Fred
fkpalm is offline  
Old 07/26/2009, 09:27 AM   #91 (permalink)
Member
 
Join Date: Jun 2009
Posts: 16
Likes Received: 0
Thanks: 3
Thanked 2 Times in 2 Posts
Default

I want to thank you and say that I have been very uneasy about entering the HomeBrew worl but your awesome program has really let me experience it. THANK YOU.

Also this keeps my wife from being mad that only I have the Mynotification App
punisherdude06 is offline  
Old 07/26/2009, 09:29 AM   #92 (permalink)
Member
 
LiamMcNeeley's Avatar
 
Join Date: May 2009
Location: Baltimore
Posts: 94
Likes Received: 0
Thanks: 24
Thanked 6 Times in 5 Posts
Default

Great work with the program I love it! I did find a small bug. Basically after dragging and dropping 5+ files it would be "out of focus". I uploaded the pic of what im talking about. Im runing xp mediacenter sp2.
LiamMcNeeley is offline  
Old 07/26/2009, 10:25 AM   #93 (permalink)
Member
 
TeckieGirl40's Avatar
 
Join Date: May 2009
Location: Dallas Tx
Posts: 47
Likes Received: 0
Thanks: 9
Thanked 14 Times in 4 Posts
Default

Freaking awesome!!! Now I am scared...this is fun. This was easy to understand, i am enjoying this more than I thought I would. Fabulous job!!
__________________
FOLLOW ME
http://twitter.com/TeckieGirl
TeckieGirl Official website
[url]http://www.TeckieGirl.com
TeckieGirl40 is offline  
Old 07/26/2009, 10:39 AM   #94 (permalink)
Member
 
Loonytunes's Avatar
 
Join Date: May 2009
Location: Cleveland Ohio
Posts: 298
Likes Received: 0
Thanks: 52
Thanked 62 Times in 25 Posts
Default

Got it to work! Woo Hoo!! For those getting errors like I did when you tried to download the file, click on "email attachment" instead of the .jar itself. I downloaded the file through the email, and it worked instantly. For some reason clicking on the .jar will download a "download" file attachment. When you get it through email, it is the .jar
Loonytunes is offline  
Old 07/26/2009, 10:46 AM   #95 (permalink)
Member
 
Join Date: Jun 2009
Posts: 22
Likes Received: 0
Thanks: 16
Thanked 9 Times in 7 Posts
Default Review from a novice?

Until this morning except for Palm webOS updates, my Pre had been out of the box stock. Of course I have been an avid reader of this forum since June when I bought the Pre. I downloaded the SDK when it was officially released and played with it ("hello world") but not much else. After yesterdays release of the two installers I decided I would dip my toe into the homebrew arena. This is the first app I installed. Your instructions fantastic! First app I installed was the devmode app. Then Brian's fileCoaster. As I said in a previous post this app and your instructions have turned this into the precentral homebrew app warehouse. Fantastic Job!
rtlsnke is offline  
Old 07/26/2009, 10:57 AM   #96 (permalink)
Member
 
Join Date: Oct 2003
Posts: 134
Likes Received: 0
Thanks: 49
Thanked 8 Times in 8 Posts
Default Great app!

Thanks for the work on this. I have one problem whichI have to assume is user error. i can't get the ability to hide/make visible the DevMode application in the launcher work? I select the option from the menu reset my Pre but still I don't see anything.

I already had the DevMode Launcher app installed. Is this installing somethng different or is installing the app I alredy had? I'm probably missing something very basic. Thx for your help.
Nesta is offline  
Old 07/26/2009, 11:00 AM   #97 (permalink)
Member
 
Join Date: Feb 2009
Posts: 136
Likes Received: 7
Thanks: 43
Thanked 11 Times in 8 Posts
Default

Nicely done. App works great
danstah is offline  
Old 07/26/2009, 11:01 AM   #98 (permalink)
Member
 
Join Date: Jul 2009
Posts: 1
Likes Received: 0
Thanks: 3
Thanked 0 Times in 0 Posts
Thumbs up Amazing

I just have to say that this program is wonderful. I have Windows 7 and was having issues with the Novacom Driver install. I now have Homebrew apps on my Pre !!!!!!! =)
c1ph3r88 is offline  
Old 07/26/2009, 12:28 PM   #99 (permalink)
Member
 
Join Date: Jul 2009
Location: Nothern Virginia
Posts: 100
Likes Received: 9
Thanks: 17
Thanked 8 Times in 8 Posts
Default

Quote:
Originally Posted by fred72matt View Post
It was the Novacom Drivers, I re-installed and run WEBOSDOCTOR after it started up it installed novacom drivers and it worked instantly. GREAT APP!!
How do you run WEBOSDOCOTOR, I downloaded it and unzip and I don't see which files to run to fix the Novacom problem.

Thanks,
merrix is offline  
Old 07/26/2009, 12:51 PM   #100 (permalink)
Legend
 
Jason Robitaille's Avatar
 
Join Date: May 2005
Location: Winnipeg, MB, Canada
Posts: 3,883
Likes Received: 496
Thanks: 801
Thanked 12,954 Times in 1,495 Posts
Default

Hi guys, guys woke up after a night out with friends, gimme a hour or 2 to catch up and I'll be able to help you guys out.
Jason Robitaille is offline  
Closed Thread

 

Thread Tools
Display Modes


LinkBacks (?)
LinkBack to this Thread: http://forums.webosnation.com/canuck-coding/194832-webos-quick-install.html
Posted By For Type Date
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/27/2010 06:51 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/21/2010 11:20 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/21/2010 06:11 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/20/2010 03:47 AM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/18/2010 07:56 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/18/2010 05:20 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/14/2010 08:51 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/08/2010 02:32 PM
YouTube - Easy way to get a virtual keyboard on the Palm Pre This thread Refback 05/05/2010 08:33 AM


 


Content Relevant URLs by vBSEO 3.6.0