Slitaz OS. Use Wine with Amazon KindlePC

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

Slitaz OS. Use Wine with Amazon KindlePC

Post by 4042966262 »

:?: I am running Slitaz as OS
how do i get Amazon Kinde to run?
it shows up as a icon on the desktop, however clicking it shows nothing (exceot for a loading cursor which turns to nowmal)
if i ''open with Wine Windows Program Loader'' i get the folowing error
there is no windows program configured to open this file'' what gives?
if i attempt to add it in wine config ''mind you i have no clue what i'm doing''
the box freezes and i have to restart..
can you help me whith this baffleing problem?
nachanon
Level 2
Level 2
Posts: 14
Joined: Fri Jul 08, 2011 5:21 am

Post by nachanon »

It's likely that I didn't get much clue from the question,
so, I'm going to give you an very general instruction.


Okay, Did you managed to get Kindle installed already?

If so, running it from the command line might gives more clues about it.
Open the Terminal program.

Then go to the directory that you installed Kindle, with

Code: Select all

cd "~/.wine/drive_c/Program Files/AmazonXXX/XX"
where Program Files/AmazonXXX/XX is the directory you installed Kindle
(which that would be C:\Program Files\AmazonXXX\XX on Windows)

then, use

Code: Select all

ls
command to show files in that directory
find one that might be the Kindle program (one that ends with ".exe")
then use this command

Code: Select all

wine kindleprogram.exe
where "kindleprogram.exe" is the .exe program that you found in the directory.
And then, see what happens...

Also, I should ask you another question, which wine version do you have?


But, if you didn't get kindle installed in the first place, this might be another story.
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

Not good...

Post by 4042966262 »

i'm already confused.
ok... Wine Version: 1.1.29
in Xterm i typed

Code: Select all

cd "~/.wine/drive_c/Program Files/AmazonXXX/XX"
note i used the '' '' marks. not sure if suposed to.
Xterm spit out: -sh cd: cant cd to cd "~/.wine/drive_c/Program

if its any help i just installed wine from Package manager.
jjmckenzie
Moderator
Moderator
Posts: 1153
Joined: Wed Apr 27, 2011 11:01 pm

Re: Not good...

Post by jjmckenzie »

4042966262 wrote:i'm already confused.
ok... Wine Version: 1.1.29
This version is WAY out of date. Is there any chance that you can update to 1.3.23 or 1.3.24?
in Xterm i typed

Code: Select all

cd "~/.wine/drive_c/Program Files/AmazonXXX/XX"
note i used the '' '' marks. not sure if suposed to.
Xterm spit out: -sh cd: cant cd to cd "~/.wine/drive_c/Program

if its any help i just installed wine from Package manager.
In addition can you type in:

Code: Select all

cd $HOME/.wine
or

Code: Select all

ls -l $HOME/.wine
This will check if the .wine file exists.

James
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

2 code spit out gibberish.,.

Post by 4042966262 »

ok the first code-

Code: Select all

~/.wine$

and the second-  made a long list. im downloading Gimp to upload a screenshot. should i also try to install wine? 
tazpkg get-install wine --forced[/quote]
jjmckenzie
Moderator
Moderator
Posts: 1153
Joined: Wed Apr 27, 2011 11:01 pm

Slitaz OS. Use Wine with Amazon KindlePC

Post by jjmckenzie »

On 7/10/11 11:16 AM, 4042966262 wrote:
ok the first code-
Code:
~/.wine$

and the second- made a long list. im downloading Gimp to upload a screenshot. should i also try to install wine?
You should try to update it to the current development version, 1.3.24.
tazpkg get-install wine --forced
I don't know anything about that particular program, so I am unable to
provide assistance.

James
perryh

Slitaz OS. Use Wine with Amazon KindlePC

Post by perryh »

"4042966262" <[email protected]> wrote:
cd "~/.wine/drive_c/Program Files/AmazonXXX/XX"

note i used the '' '' marks. not sure if suposed to.
Xterm spit out: -sh cd: cant cd to cd "~/.wine/drive_c/Program
IIRC ~ doesn't work inside "". One of these should
work (provided Slitaz is using a "normal" shell):

cd "$HOME/.wine/drive_c/Program Files/AmazonXXX/XX"

[$ expands within "" -- although not within '']

or

cd ; cd ".wine/drive_c/Program Files/AmazonXXX/XX"

[cd to home directory first, then to its .wine/... subdirectory;
this could also be tried with ' instead of "]

or

cd ~/.wine/drive_c/Program\ Files/AmazonXXX/XX

[escape the space with a backslash]

or

cd ~/.wine/drive_c/Program?Files/AmazonXXX/XX

[the shell should match ? in a filename to any character,
including a blank]
nachanon
Level 2
Level 2
Posts: 14
Joined: Fri Jul 08, 2011 5:21 am

Re: Not good...

Post by nachanon »

My mistake, sorry, thanks for reminding,
so the correct one of the first command should be:

cd "$HOME/.wine/Program Files/AmazonXX/XX"
Note: replace AmazonXX/XX with the actual name of KindlePC directory!


4042966262 wrote:i'm already confused.
ok... Wine Version: 1.1.29
in Xterm i typed

Code: Select all

cd "~/.wine/drive_c/Program Files/AmazonXXX/XX"
note i used the '' '' marks. not sure if suposed to.
Xterm spit out: -sh cd: cant cd to cd "~/.wine/drive_c/Program

if its any help i just installed wine from Package manager.
Anyway, I'm likely to have an exact instruction for you now:
Open the terminal window, and use the command

Code: Select all

cd "$HOME/.wine/drive_c/Program Files/Amazon/Kindle"
then use:

Code: Select all

wine Kindle.exe
And now, whether it works or not, it would give the clue we need
and we'll likely to know if you need to update wine.


P.S. The installer I've used in the experiment was KindleForPC-installer.exe version 1.6.0.32771
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

Post by 4042966262 »

Code: Select all

cd "$HOME/.wine/drive_c/Program Files/Amazon/Kindle"
this gave the error
-sh: cd: can't cd to /home/Kimball/.wine/drive_c/program
jjmckenzie
Moderator
Moderator
Posts: 1153
Joined: Wed Apr 27, 2011 11:01 pm

Slitaz OS. Use Wine with Amazon KindlePC

Post by jjmckenzie »

On Tue, Jul 19, 2011 at 9:39 AM, 4042966262 <[email protected]> wrote:
Code:
cd "$HOME/.wine/drive_c/Program Files/Amazon/Kindle"


this gave the error
-sh: cd: can't cd to /home/Kimball/.wine/drive_c/program
Interesting as the double quotes should work.

Try this instead:

cd $HOME/.wine/drive_c/Program\ Files/Amazon/Kindel

No quotes and yes that is a backslash/backstroke between the word
Program and the space.

James
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

Post by 4042966262 »

that could be the problem!!
i was not useing '' '' marks. let me try again
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

Post by 4042966262 »

ok

Code: Select all

cd "$HOME/.wine/drive_c/Program Files/Amazon/Kindle"
now its waiting for more commands.. what did that do?

Code: Select all

Kimball@CoffeeCup:~S
nachanon
Level 2
Level 2
Posts: 14
Joined: Fri Jul 08, 2011 5:21 am

Post by nachanon »

4042966262 wrote:ok

Code: Select all

cd "$HOME/.wine/drive_c/Program Files/Amazon/Kindle"
now its waiting for more commands.. what did that do?

Code: Select all

Kimball@CoffeeCup:~S
Okay, since there was no error message, then just follow what I said earlier:

Code: Select all

wine Kindle.exe
This will run the Kindle program.
And now, whether it works or not, it would give us the clue.


Note: when posting anything that involves terminal output, you'd better copy and paste it into the forum, don't retype,
since it would introduce some typos, making it harder to figure out what's going on.
4042966262
Level 2
Level 2
Posts: 13
Joined: Thu Jul 07, 2011 8:57 pm

Post by 4042966262 »

its a bit late, I will try these codes tomorrow.
my problem may no longer exist as I swapped OS
now running Ubuntu 10.10 ...ill leave a reply soon
Locked