LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 02-05-2016, 02:19 AM   #1
sasaditya
Member
 
Registered: Dec 2012
Posts: 34

Rep: Reputation: Disabled
Question bash: wine: command not found


hello group, im new to linux. im having a problem wine.
i had installed wine

[root@localhost Desktop]# find / -name "wine"
/usr/local/include/wine
/usr/local/share/wine
/usr/local/lib64/wine
/usr/src/wine-1.8/wine
/usr/src/wine-1.8/include/wine
/usr/src/wine-1.8/libs/wine

but when i type wine --version

[root@localhost Desktop]# wine --version
bash: wine: command not found

when i echo to see the path

[root@localhost wine-1.8]# echo $PATH
/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/root/bin


[root@localhost wine-1.8]# cat /etc/profile
# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
esac
}


if [ -x /usr/bin/id ]; then
if [ -z "$EUID" ]; then
# ksh workaround
EUID=`id -u`
UID=`id -ru`
fi
USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
fi

# Path manipulation
if [ "$EUID" = "0" ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
else
pathmunge /usr/local/sbin after
pathmunge /usr/sbin after
pathmunge /sbin after
fi

HOSTNAME=`/bin/hostname 2>/dev/null`
HISTSIZE=1000
if [ "$HISTCONTROL" = "ignorespace" ] ; then
export HISTCONTROL=ignoreboth
else
export HISTCONTROL=ignoredups
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL

# By default, we want umask to get set. This sets it for login shell
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
umask 002
else
umask 022
fi

for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
if [ "${-#*i}" != "$-" ]; then
. "$i"
else
. "$i" >/dev/null 2>&1
fi
fi
done

unset i
unset -f pathmunge
[root@localhost wine-1.8]#


please anybody guide me what is the wrong i did..
 
Old 02-05-2016, 02:21 AM   #2
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,790

Rep: Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304
probably ./wine will work.
use:
find / -type f -name wine
now you printed all the directories too.
 
Old 02-05-2016, 02:31 AM   #3
sasaditya
Member
 
Registered: Dec 2012
Posts: 34

Original Poster
Rep: Reputation: Disabled
[root@localhost wine-1.8]# find / -type f -name wine
[root@localhost wine-1.8]# find / -type f -name wine

showing nothing
 
Old 02-05-2016, 02:34 AM   #4
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,790

Rep: Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304
it looks like you have no file named wine. That means you will not be able to execute it.
would be nice to know what are you doing
 
Old 02-05-2016, 02:39 AM   #5
sasaditya
Member
 
Registered: Dec 2012
Posts: 34

Original Poster
Rep: Reputation: Disabled
i had followed this site

http://tecadmin.net/steps-install-wi...edora-systems/

in my /usr/src
[root@localhost wine-1.8]# ls /usr/src
debug kernels wine-1.8 wine-1.8.tar.bz2

[root@localhost wine-1.8]# pwd
/usr/src/wine-1.8
[root@localhost wine-1.8]# ls
aclocal.m4 configure fonts loader programs wine
ANNOUNCE configure.ac include MAINTAINERS README wine64
AUTHORS COPYING.LIB libs Makefile server
config.log dlls LICENSE Makefile.in tools
config.status documentation LICENSE.OLD po VERSION

it has all the files..

Last edited by sasaditya; 02-05-2016 at 02:40 AM.
 
Old 02-05-2016, 02:51 AM   #6
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,790

Rep: Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304
did you execute ./configure already?
make and make install?
 
Old 02-05-2016, 02:57 AM   #7
sasaditya
Member
 
Registered: Dec 2012
Posts: 34

Original Poster
Rep: Reputation: Disabled
yes i did.
 
Old 02-05-2016, 03:19 AM   #8
sasaditya
Member
 
Registered: Dec 2012
Posts: 34

Original Poster
Rep: Reputation: Disabled
that does not work.. any more
so i installed wine using .. yum
[root@localhost wine-1.8]# yum install wine -y
[root@localhost wine-1.8]# wine --version
wine-1.8

now its done.. thank you for your support..
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
"Command not found" on my server? “bash: sudo: command not found”? MilesOfRoses Linux - Server 7 04-01-2016 09:19 AM
[SOLVED] bash: GET: command not found ? michalng Debian 2 03-29-2011 06:20 PM
bash command not found gobicse Linux - Newbie 3 12-19-2007 05:46 PM
bash: rpm: command not found && sudo: alien: command not found Java_Code Ubuntu 7 07-27-2006 11:57 PM
wine and command and conquer - cdrom not found?? meastp Linux - Software 1 10-05-2004 12:37 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 01:58 AM.

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