Re: Why can't I run my program (how do i set ./ on the path permanently)

1999-09-06 Thread Seth R Arnold
y debian linux > box! > > -Wxb1 > > -Original Message- > From: Stephan Hachinger <[EMAIL PROTECTED]> > To: Wendell Buckner <[EMAIL PROTECTED]> > Cc: Debian User > Date: Monday, September 06, 1999 3:16 AM > Subject: Re: Why can't I run my pr

Re: Why can't I run my program (how do i set ./ on the path permanently)

1999-09-06 Thread Alvin Oga
hi wendell.. > > I indeed needed to type "./hello"! I knew it was simple! Now, another > > stupid question for you... How do I add "./" to my path on startup? Also, > Assume you are using bash, put the following line in ~/.bash_profile > > export PATH=${PATH}:. I explicity define PATH in ~/.

Re: Why can't I run my program (how do i set ./ on the path permanently)

1999-09-06 Thread Kent West
This list has been excellent resource in helping me set up my debian linux > box! > > -Wxb1 > > -Original Message- > From: Stephan Hachinger <[EMAIL PROTECTED]> > To: Wendell Buckner <[EMAIL PROTECTED]> > Cc: Debian User > Date: Monday, September 06, 1999

RE: Why can't I run my program (how do i set ./ on the path permanently)

1999-09-06 Thread Paul McHale
y types ls, their local special ls runs with root privledges. Be careful ! > -Original Message- > From: Chanop Silpa-Anan [mailto:[EMAIL PROTECTED] Behalf Of > Chanop Silpa-Anan > Sent: Monday, September 06, 1999 2:26 PM > To: Wendell Buckner > Cc: Debian Users Group >

Re: Why can't I run my program (how do i set ./ on the path permanently)

1999-09-06 Thread Chanop Silpa-Anan
On Mon, Sep 06, 1999 at 11:43:42AM -0700, Wendell Buckner wrote: > I indeed needed to type "./hello"! I knew it was simple! Now, another > stupid question for you... How do I add "./" to my path on startup? Also, > what is the EASIEST way to find the answers to my question before bothering > you

Re: Why can't I run my program (how do i set ./ on the path permanently)

1999-09-06 Thread Wendell Buckner
an Hachinger <[EMAIL PROTECTED]> To: Wendell Buckner <[EMAIL PROTECTED]> Cc: Debian User Date: Monday, September 06, 1999 3:16 AM Subject: Re: Why can't I run my program > >>- Original Message - >>From: Wendell Buckner >>To: Debian Users Group >>

Re: Why can't I run my program

1999-09-06 Thread Stephan Hachinger
>- Original Message - >From: Wendell Buckner >To: Debian Users Group >Sent: Monday, September 06, 1999 6:13 AM >Subject: Why can't I run my program > > >I was playing around with GNU C before I getting ready to load GNU C++, and decided to write a simple

Re: Why can't I run my program

1999-09-06 Thread Seth R Arnold
I have seen something similar to this before -- you are missing a library that it requires to run. Try ldd hello to see what libraries it requires. On Sun, Sep 05, 1999 at 09:13:00PM -0700, Wendell Buckner wrote: > I was playing around with GNU C before I getting ready to load GNU C++, and > deci

Re: Why can't I run my program

1999-09-06 Thread Alvin Oga
hi ya > gcc -v hello.c -o hello > > I thought this would be a simple process but it seems I am missing = > something trivial. I attempt to run the program after compiling and = > bash says: > > bash :hello :command not found try: cd "what ever directory you have hello.c in" ./

Re: Why can't I run my program

1999-09-06 Thread Ben Collins
On Sun, Sep 05, 1999 at 09:13:00PM -0700, Wendell Buckner wrote: > I was playing around with GNU C before I getting ready to load GNU C++, and > decided to write a simple c program (The standard hello world app). I was > doing this to make sure that GNU C was working properly. I compiled the >

Why can't I run my program

1999-09-06 Thread Wendell Buckner
I was playing around with GNU C before I getting ready to load GNU C++, and decided to write a simple c program (The standard hello world app).  I was doing this to make sure that GNU C was working properly. I compiled the application as follows:   gcc -v hello.c -o hello   I thought this wo