Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


apt-get | 11 comments | Create New Account
Click here to return to the 'apt-get' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
apt-get
Authored by: Areh on May 04, '02 06:23:39AM

apt-get yields an error: "command not found" ?
Can somebody help please ?



[ Reply to This | # ]
hmmm,
Authored by: lastobelus on May 04, '02 07:41:34AM

have you actually installed and configured fink? --> http://fink.sourceforge.net/

if you have installed fink, you need to make sure the following line is in you .cshrc file:

source /sw/bin/init.csh




[ Reply to This | # ]
hmmm,
Authored by: GreyArea on May 04, '02 07:50:50AM

You then need to run:

sudo apt-get update

This will download the list of known software. After that you can then run:

sudo apt-get install eterm

and it will download both eterm and all required dependencies. About 19Mb of them, in fact.



[ Reply to This | # ]
add to path
Authored by: macubergeek on May 04, '02 09:03:58AM

You need to add /sw/bin and /sw/sbin to your path

cd to your home directory
cd Library
mkdir init
cd init
mkdir tcsh
cd tcsh
touch path
do echo $PATH and paste the output after ${PATH}: below
this file path should contain the following all on one line:
setenv PATH ${PATH}:

at the end tack on /sw/bin and /sw/sbin



[ Reply to This | # ]