Re: Why WordPerfect won't run....
Which binary are you calling ? Mine is /usr/local/wpf/wpbin/xwp and it works fine Franck >> Howdy Y'all >> >> My WP8 installed correctly, but I am unable to execute it for some >> reason... If I start an X-Term session, I get a command not found >> error... :( >> >> It doesn't matter who I log in as, it won't run, even if I go to the >> folder that it is installed in... >> >> For reference, I am running the Bash shell prompt (default?).. >> >> >> Thanks again... >> Brant. >> >> __ >> Get Your Private, Free Email at http://www.hotmail.com >> >> >> -- >> Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null >> >> --- Franck Le Gall 147, rue basse - 14000 Caen tél. : 02-31-93-29-09 mobile : 06-62-34-03-52 e.mail : [EMAIL PROTECTED] ---
Re: Why WordPerfect won't run....
Stephen Pitts wrote: > > On 6 Jan, Brant Wells wrote: > > Howdy Y'all > > > > My WP8 installed correctly, but I am unable to execute it for some > > reason... If I start an X-Term session, I get a command not found > > error... :( > > > > It doesn't matter who I log in as, it won't run, even if I go to the > > folder that it is installed in... > > > > For reference, I am running the Bash shell prompt (default?).. > > > > > > Thanks again... > > Brant. > > > > __ > > Get Your Private, Free Email at http://www.hotmail.com > > > > > > -- > > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null > > > The default path doesn't include the current directory: just /usr/bin, > /usr/X11R6/bin, /bin, and /usr/local/bin. cd to the directory with xwp, > then type ./xwp to run Wordperfect 8.Anyone been successful at putting > it in /usr/local instead of a directory off of the home directory. I > heard some ppl were having problems with that on /. Yes, I installed it to /usr/local/ (as root) and it went fine (binary ends up in /usr/local/lib/xwp/wpbin/). My normal user can use it with no special tricks, but I use the following bash function (wp8 apparently needs to start in its binary's directory?): xwp () { pushd /usr/local/lib/xwp/wpbin ./xwp popd } export xwp -- Ed C.
Re: Why WordPerfect won't run....
On 6 Jan, Brant Wells wrote: > Howdy Y'all > > My WP8 installed correctly, but I am unable to execute it for some > reason... If I start an X-Term session, I get a command not found > error... :( > > It doesn't matter who I log in as, it won't run, even if I go to the > folder that it is installed in... > > For reference, I am running the Bash shell prompt (default?).. > > > Thanks again... > Brant. > > __ > Get Your Private, Free Email at http://www.hotmail.com > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null > The default path doesn't include the current directory: just /usr/bin, /usr/X11R6/bin, /bin, and /usr/local/bin. cd to the directory with xwp, then type ./xwp to run Wordperfect 8.Anyone been successful at putting it in /usr/local instead of a directory off of the home directory. I heard some ppl were having problems with that on /. -- Stephen Pitts [EMAIL PROTECTED] webmaster - http://www.mschess.org
Re: Why WordPerfect won't run....
On Wed, 6 Jan 1999, Brant Wells wrote: > > My WP8 installed correctly, but I am unable to execute it for some > reason... If I start an X-Term session, I get a command not found > error... :( > The following works for me: $ cd whereveryouinstalledit/wpbin $ ./xwp (or just: $ wherever/wpbin/xwp ) Havoc