Kingston Traveller Locker

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
zaal
Newbie
Newbie
Posts: 4
Joined: Mon Jul 19, 2010 1:52 pm

Kingston Traveller Locker

Post by zaal »

I tried to connect Kingston DataTraveller Locker+ 16GB
flash drive with hardware protection, the file DTLplus_Launcher does not start, saying that it can not find the flash drive ("Unable to locate the removable drive),
when I try to launch it from the terminal the following happens:

az@COMMERCE:~$ wine /media/DTLplus/DTLplus_Launcher.exe
az@COMMERCE:~$ fixme:mountmgr:harddisk_ioctl unsupported ioctl 4d004

[/img]
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Kingston Traveller Locker

Post by vitamin »

zaal wrote:DTLplus_Launcher does not start, saying that it can not find the flash drive ("Unable to locate the removable drive),

fixme:mountmgr:harddisk_ioctl unsupported ioctl 4d004
That is IOCTL_SCSI_PASS_THROUGH. Make sure you properly mapped your drive in winecfg and that you have correct permissions to access that device (not just the mount point).
zaal
Newbie
Newbie
Posts: 4
Joined: Mon Jul 19, 2010 1:52 pm

Kingston Traveller Locker

Post by zaal »

Thanks, but can you, please, explane what you mean in a way of: you should do
1.
2.
...
DaVince
Level 8
Level 8
Posts: 1099
Joined: Wed Oct 29, 2008 4:53 pm

Post by DaVince »

First, make sure that you can read, write and execute stuff on the external drive.

Step by step instructions:
Open winecfg,
go to the Drives tab,
add a new drive,
make it point to your (mounted) drive.

As for running the app... Don't do this:'

Code: Select all

wine /media/DTLplus/DTLplus_Launcher.exe
Instead, try this:

Code: Select all

cd /media/DTLplus/
wine DTLplus_Launcher.exe
But make Wine recognize your drive properly first with above instructions.
zaal
Newbie
Newbie
Posts: 4
Joined: Mon Jul 19, 2010 1:52 pm

Kingston Traveller Locker

Post by zaal »

Thank you very much, I will try to do what you recommend tomorrow, but as for your first phrase (read, write etc.) that is really the problem, since to read and write I should first launch this DTLplus_Launcher and input username and password. Without these operation I can read and write only this file and some help info.
zaal
Newbie
Newbie
Posts: 4
Joined: Mon Jul 19, 2010 1:52 pm

Kingston Traveller Locker

Post by zaal »

Have found some time today. The result was the same.

az@COMMERCE:~$ cd /media/DTLplus
az@COMMERCE:/media/DTLplus$ wine DTLplus_Launcher.exe
az@COMMERCE:/media/DTLplus$ fixme:mountmgr:harddisk_ioctl unsupported ioctl 4d004

So, please help, if smb has some ideas.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Kingston Traveller Locker

Post by vitamin »

zaal wrote:Without these operation I can [not] read and write only this file and some help info.
Wine does not support hardware drivers. There is nothing we can do. Use VM (vmware, vbox, etc) to access your USB stick.
Locked