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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
03-06-2006, 11:05 AM
|
#1
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Rep:
|
command not found
when i try to run some pregrams it gives me this error. how can i fix this?
bash: squid: command not found
|
|
|
03-06-2006, 11:34 AM
|
#2
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
It seems like some of your programs are looking for squid, so you may have to install it. What are the programs that give you this error?
|
|
|
03-06-2006, 11:46 AM
|
#3
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Original Poster
Rep:
|
i have squid installed
bash: ifconfig: command not found
|
|
|
03-06-2006, 11:48 AM
|
#4
|
LQ Addict
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464
Rep: 
|
For ifconfig, you need to run it as root or use the whole path to it, if you're running as a normal user (because the directory it's in isn't likely to be in your normal user's $PATH). On my system, it's in /sbin (so I run /sbin/ifconfig as a normal user). Of course, you may not have it installed.
|
|
|
03-06-2006, 11:56 AM
|
#5
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Original Poster
Rep:
|
am running it as root
BTW i have sqid in the path /etc/rc.d/init.d/s and as you doi i have ifconfig in the /sbin dir.
how can i add the to the $PATH?
|
|
|
03-06-2006, 12:21 PM
|
#6
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
/sbin is usually only in roots path. You need to switch to root using "su -" and not "su" because you will not inherit all of roots environment using "su". To find out if squid is installed, do
Code:
$rpm -qa | grep -i squid
|
|
|
03-06-2006, 12:33 PM
|
#7
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Original Poster
Rep:
|
it worked with the "su -"
now how can i add the squid to my $PATH in my user acct?
|
|
|
03-06-2006, 12:38 PM
|
#8
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Quote:
Originally Posted by jocast
it worked with the "su -"
now how can i add the squid to my $PATH in my user acct?
|
What is the output of the command I posted above?
|
|
|
03-06-2006, 12:41 PM
|
#9
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Original Poster
Rep:
|
squid-2.5.STABLE11-3.FC3
|
|
|
03-06-2006, 12:53 PM
|
#10
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Ok, so squid is definitely installed. It should already be in your path. What happens when you do
Code:
#service squid start
|
|
|
03-06-2006, 12:56 PM
|
#11
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Original Poster
Rep:
|
it gives me this
bash: service: command not found
|
|
|
03-06-2006, 01:07 PM
|
#12
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Are you running as root (using su -)? "service" should be available in roots path on any Redhat based distro.
|
|
|
03-06-2006, 03:09 PM
|
#13
|
Member
Registered: May 2004
Location: Laredo
Distribution: FC3
Posts: 185
Original Poster
Rep:
|
with su -
[root@mypc ~]# service squid start
init_cache_dir /var/spool/squid... /etc/init.d/squid: line 54: 20691 Aborted $SQUID -z -F -D >>/var/log/squid/squid.out 2>&1
Starting squid: /etc/init.d/squid: line 53: 20692 Aborted $SQUID $SQUID_OPTS >>/var/log/squid/squid.out 2>&1
[FAILED]
|
|
|
03-07-2006, 03:51 AM
|
#14
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Quote:
Originally Posted by jocast
[root@mypc ~]# service squid start
init_cache_dir /var/spool/squid... /etc/init.d/squid: line 54: 20691 Aborted $SQUID -z -F -D >>/var/log/squid/squid.out 2>&1
Starting squid: /etc/init.d/squid: line 53: 20692 Aborted $SQUID $SQUID_OPTS >>/var/log/squid/squid.out 2>&1
[FAILED]
|
So the problem is with Squid and not your path. You'll have to find a way to fix the error thats preventing squid from starting up. Maybe start a new thread for that problem.
|
|
|
All times are GMT -5. The time now is 04:06 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|