LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   bash: wine: command not found (https://www.linuxquestions.org/questions/linux-desktop-74/bash-wine-command-not-found-4175571485/)

sasaditya 02-05-2016 02:19 AM

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..

pan64 02-05-2016 02:21 AM

probably ./wine will work.
use:
find / -type f -name wine
now you printed all the directories too.

sasaditya 02-05-2016 02:31 AM

[root@localhost wine-1.8]# find / -type f -name wine
[root@localhost wine-1.8]# find / -type f -name wine

showing nothing

pan64 02-05-2016 02:34 AM

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

sasaditya 02-05-2016 02:39 AM

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..

pan64 02-05-2016 02:51 AM

did you execute ./configure already?
make and make install?

sasaditya 02-05-2016 02:57 AM

yes i did.

sasaditya 02-05-2016 03:19 AM

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..


All times are GMT -5. The time now is 06:27 AM.