Results 1 to 4 of 4
Hi,
I'm new to linux (ubuntu 7.04 beta dualboot on amd64 3500Mhz) and I try to follow the tutorial from this site about basic program installation (compiling and installing).
It ...
- 04-11-2007 #1Just Joined!
- Join Date
- Apr 2007
- Posts
- 2
Help
Hi,
I'm new to linux (ubuntu 7.04 beta dualboot on amd64 3500Mhz) and I try to follow the tutorial from this site about basic program installation (compiling and installing).
It begins with telling us to go to the following folder /usr/local/src.
Although this folder exists, I can't get there with the cd command.
Here is what happens:
What am I getting wrong?Code:slux@slinux:~$ cd /home/usr/local/src bash: cd: /home/usr/local/src: No such file or directory slux@slinux:~$ sudo cd /home/usr/local/src sudo: cd: command not found slux@slinux:~$ cd /usr/local slux@slinux:/usr/local$ ls bin etc games include lib man sbin share src slux@slinux:/usr/local$
HELP,.................. please.
- 04-11-2007 #2First, you're looking at the wrong section. For most programs Ubuntu does not require you to compile anything. You can use apt-get for that. Look at the section for "apt-get" and Debian.
Originally Posted by slux
Understand that files in Linux are divided up hierarchically. This means that there is a root directory and many sub-directories underneath. When you change directories you must make sure you're pointing to the correct branch of the tree, so to speak.Here is what happens:
What am I getting wrong?Code:slux@slinux:~$ cd /home/usr/local/src bash: cd: /home/usr/local/src: No such file or directory slux@slinux:~$ sudo cd /home/usr/local/src sudo: cd: command not found slux@slinux:~$ cd /usr/local slux@slinux:/usr/local$ ls bin etc games include lib man sbin share src slux@slinux:/usr/local$
HELP,.................. please.
The /usr/local/src directory is located in the "usr" section of the root directory. To go there from /home/ you would type this:
You'll note that I didn't include /home/ in front of it because /usr/local is not in the /home/ directory. That was your original problem.Code:cd /usr/local/src
Registered Linux user #270181
TechieMoe's Tech Rants
- 04-11-2007 #3Just Joined!
- Join Date
- Apr 2007
- Posts
- 2
No internet
Hi,
unfortunately I can't download anything, because my internet connection is not running yet. it's wifi. Thats why I am trying to install wifi-radar. but I have to install 'menu' first.
Thank to your advice I can now access the folder I want, unzip 'menu' runCode:./configure
andCode:make
. I get no error messages, but when I than want to install wifi-radar I get a message saying that it can't install because menu is missing. ??? I'm lost.Code:make install
I instaled both in folder usr/local/src
- 04-11-2007 #4
^^ Try "sudo make menuinstall" or "sudo make menu" or any combination of the aforementioned.
'Tis better to be silent and be thought a fool, than to speak and remove all doubt.'
--Abraham Lincoln


Reply With Quote