Software Install Issue
Here's is what I'm trying to do:
$ mkdir fujitsu_
$ cd fujitsu_
$ wget http://
2 uncompress the package
$ tar zxvf fujitsu-
$ cd fujitsu-
3 install the software
$ make
$ sudo make install
This is where I'm stuck:
metungkp1@
metungkp1@
metungkp1@
http://: Invalid host name.
--2011-04-24 07:15:05-- http://
Resolving downloads... failed: Name or service not known.
wget: unable to resolve host address `downloads'
metungkp1@
--2011-04-24 07:15:54-- http://
Resolving home... 24.28.199.168
Connecting to home|24.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: http://
--2011-04-24 07:15:55-- http://
Resolving www.rr.com... 24.28.199.168
Connecting to www.rr.
HTTP request sent, awaiting response... 200 OK
Length: 6453 (6.3K) [text/html]
Saving to: `downloads'
100%[==
2011-04-24 07:15:56 (63.6 KB/s) - `downloads' saved [6453/6453]
metungkp1@
tar (child): fujitsu-
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
Help...
Question information
- Language:
- English Edit question
- Status:
- Answered
- Assignee:
- No assignee Edit question
- Last query:
- 2011-05-17
- Last reply:
- 2011-05-17
This question was reopened
- 2011-05-17 by MetungKP
Joshua Lückers (joshualuckers) said : | #1 |
The url you use as parameter for wget is invalid. Try to find the correct url and try it again.
MetungKP (metungkp) said : | #2 |
There first one was wrong but the second one was correct:
metungkp1@
--2011-04-24 07:15:54-- http://
Resolving home... 24.28.199.168
Connecting to home|24.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: http://
--2011-04-24 07:15:55-- http://
MetungKP (metungkp) said : | #3 |
I don't know what Compress and DeCompress mean or what software to use for those. I think maybe my issue is with those.
MetungKP (metungkp) said : | #4 |
Also uncompress...
Joshua Lückers (joshualuckers) said : | #5 |
After a little search I found this url: http://
Try to wget that one: wget http://
After the file is done downloading you can uncompress the file.
Luky Winarto (luckyborneo) said : | #6 |
You should do like this:
$ mkdir fujitsu-
$ cd fujitsu-
$ wget http://
$ tar zxvf fujitsu-
$ cd fujitsu-
$ make
$ sudo make install
Hopefully this will help you....
MetungKP (metungkp) said : | #7 |
Thanks Luky Winarto, that solved my question.
MetungKP (metungkp) said : | #8 |
As suggested by Luky Winarto below...
You should do like this:
$ mkdir fujitsu-
$ cd fujitsu-
$ wget http://
$ tar zxvf fujitsu-
$ cd fujitsu-
$ make
$ sudo make install
Hopefully this will help you....
Luky Winarto (luckyborneo) said : | #9 |
Let's learn together:
$ mkdir fujitsu-
This command is used to make a new directory named with fujitsu-
$ cd fujitsu-
This command is used to enter a directory named with fujitsu-
$ mkdir fujitsu_
$ cd fujitsu_
$ wget http://
This command is used to download your file from internet.
$ tar zxvf fujitsu-
This will untar your file then you will get the new directory
$ cd fujitsu-
This will enter that new directory
$ make
$ sudo make install
Those commands is used to install the program. You can get information how to install it by read the readme file or install file in directory that you've been untar before.
From your first questions, you cannot install the program because you got wrong command:
metungkp1@
http://: Invalid host name.
--2011-04-24 07:15:05-- http://
Resolving downloads... failed: Name or service not known.
wget: unable to resolve host address `downloads'
Then, you were trying to follow the next step from the instructions, but you failed.
What I'm trying to do is to help you how to install the program from command line (using gnome-terminal program).
I hope you will understand those commands I gave you..
Can you help with this problem?
Provide an answer of your own, or ask MetungKP for more information if necessary.