LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-17-2010, 09:23 AM   #31
jbs1136
Member
 
Registered: Dec 2008
Location: Spanaway, Wa
Distribution: Kernel Linux 3.6-4.slh.1-aptosid-amd64
Posts: 44

Rep: Reputation: 20

Here is the output:

Code:
bash-3.1$ strace /usr/bin/wine
execve("/usr/bin/wine", ["/usr/bin/wine"], [/* 49 vars */]) = -1 ENOENT (No such file or directory)
dup(2)                                  = 3
fcntl(3, F_GETFL)                       = 0x8002 (flags O_RDWR|O_LARGEFILE)
fstat(3, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fa93aca8000
lseek(3, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
write(3, "strace: exec: No such file or dir"..., 40strace: exec: No such file or directory
) = 40
close(3)                                = 0
munmap(0x7fa93aca8000, 4096)            = 0
exit_group(1)                           = ?
john
 
Old 03-17-2010, 10:35 AM   #32
nimnull22
Senior Member
 
Registered: Jul 2009
Distribution: OpenSuse 11.1, Fedora 14, Ubuntu 12.04/12.10, FreeBSD 9.0
Posts: 1,571

Rep: Reputation: 92
ENOENT

No such file or directory

This error occurs when a file or directory cannot be found. Note, this can happen when creating a file if one of the parent directories doesn't exist, eg:
touch /etc/doesnotexist/foo

will complain with "No such file or directory" since /etc/doesnotexist does not exist.

This error can be returned by many system calls that work with files.

29 pages link to ENOENT:
link(2) mknod(2) fstatfs(2) creat(2) chown(2) open(2) msgget(2) bind(2) readlink(2) getdents(2) readdir(2) chmod(2) lstat(2) fchown(2) fchdir(2) delete_module(2) acct(2) access(2) chdir(2) chroot(2) lchown(2) mkdir(2) rename(2) fstat(2) execve(2) mount(2) packet(7) rmdir(2) query_module(2)

Looks like, you have to write to Slackware developers.
 
Old 03-17-2010, 10:59 AM   #33
nimnull22
Senior Member
 
Registered: Jul 2009
Distribution: OpenSuse 11.1, Fedora 14, Ubuntu 12.04/12.10, FreeBSD 9.0
Posts: 1,571

Rep: Reputation: 92
Another suggestion.

Put "wine" to any USER home directory, make it executable for user and then try to execute it like:
/home/directory/wine
 
Old 03-17-2010, 02:53 PM   #34
jbs1136
Member
 
Registered: Dec 2008
Location: Spanaway, Wa
Distribution: Kernel Linux 3.6-4.slh.1-aptosid-amd64
Posts: 44

Rep: Reputation: 20
That didn't work either.

Quote:
bash-3.1# /home/john/wine
bash: /home/john/wine: No such file or directory
bash-3.1#
At this point I think I would be better off starting from scratch. I am going to install wine and the one program I use, Quicken, on another computer that is running 32 Slack. Not my main computer but it will work for this.

Thank you for your patience and your help. It could all be that somewhere in installing multilib I messed up something. But, on the bright side I did learn something new about strace, I have never used it before. Got to get out of the gui more.

john
 
Old 03-17-2010, 03:04 PM   #35
nimnull22
Senior Member
 
Registered: Jul 2009
Distribution: OpenSuse 11.1, Fedora 14, Ubuntu 12.04/12.10, FreeBSD 9.0
Posts: 1,571

Rep: Reputation: 92
Last question, please.
Change directory to: cd /home/john/ or to /usr/bin and then in console type:
file wine

What will be the output.
Mine is:
wine: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.4, dynamically linked (uses shared libs), stripped

Last edited by nimnull22; 03-17-2010 at 03:26 PM.
 
Old 03-17-2010, 11:53 PM   #36
jbs1136
Member
 
Registered: Dec 2008
Location: Spanaway, Wa
Distribution: Kernel Linux 3.6-4.slh.1-aptosid-amd64
Posts: 44

Rep: Reputation: 20
Code:
bash-3.1$ cd /home/john
bash-3.1$ file wine
wine: cannot open `wine' (No such file or directory)
bash-3.1$ cd /usr/bin
bash-3.1$ file wine
wine: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), stripped
bash-3.1$
Code you requested. Sorry, but this tells me nothing, way over my head.

john
 
Old 03-18-2010, 06:22 AM   #37
nimnull22
Senior Member
 
Registered: Jul 2009
Distribution: OpenSuse 11.1, Fedora 14, Ubuntu 12.04/12.10, FreeBSD 9.0
Posts: 1,571

Rep: Reputation: 92
You have wine 32-bit, but Slackware 64-bit x86_64. I do not know, but will this type of wine work?
 
Old 03-18-2010, 08:43 AM   #38
jbs1136
Member
 
Registered: Dec 2008
Location: Spanaway, Wa
Distribution: Kernel Linux 3.6-4.slh.1-aptosid-amd64
Posts: 44

Rep: Reputation: 20
It will work but not perfectly. I had it installed and everything worked well but I had problems with a hard drive and had to reinstall Slackware and then I ran into problems when I added wine. It worked after I installed it but after I rebooted the computer it quick working. That is why I decided to just put it on an older 32 bit machine running slackware 13-32. At this point it is more trouble than it is worth. I will just wait until it is improved.

Thanks again for all of your help.

john
 
Old 03-19-2010, 06:39 AM   #39
t3st
LQ Newbie
 
Registered: Feb 2009
Posts: 18

Original Poster
Rep: Reputation: 0
since it comes with the default installition I must agree that this is an issue that needs to be reported to Slackware.
 
Old 12-10-2011, 06:49 PM   #40
missionsix
LQ Newbie
 
Registered: Dec 2011
Posts: 2

Rep: Reputation: Disabled
This is a known bug. You can see other people are having problems too.

http://askubuntu.com/questions/76151...i-installed-it

Launchpad bug: https://bugs.launchpad.net/ubuntu/+s...bs/+bug/852101

Workaround:

reinstall libc6-i386 by running: sudo apt-get install --reinstall libc6-i386
 
Old 12-10-2011, 10:32 PM   #41
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
missionsix
please do not post a Ubuntu bug to a Slackware post
And one that is almost two years old

the OP was using Slackware and NOT using ubuntu
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
wine problem!! Daysie Linux - Hardware 1 02-18-2007 02:02 AM
Link targets - problems with Wine (Though not Wine specific - Wine site doesn't help) Kevjml Linux - Newbie 1 01-13-2006 07:53 AM
Wine Problem billquinn Linux - Software 9 05-22-2005 10:01 AM
wine problem uzairkhan Linux - Newbie 2 05-07-2005 10:09 AM
wine problem m3mys3lf4ndi Linux - Software 2 03-17-2005 03:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration