other non-interactive network downloader besides wget

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat other non-interactive network downloader besides wget
# 1  
Old 09-07-2011
other non-interactive network downloader besides wget

Are there any non-interactive network downloaders like wget that come with fedora by default? I noticed that wget doesn't come with fedora.
# 2  
Old 09-07-2011
Depending on your needs:
curl
lynx
w3m
# 3  
Old 09-11-2011
Quote:
Originally Posted by pludi
Depending on your needs:
curl
lynx
w3m
I was trying to automate this process. Oracle is to lazy to do this.

How do I download and install Java for my Linux computer?

I was hoping to use a program like wget but comes by default with Fedora. Most people don't like installing extra software when they don't have to. This is what my shellscript looks like.

Code:
#!/bin/bash
echo "Downloading Java"
#yum -y install wget
wget http://download.oracle.com/otn-pub/java/jdk/6u27-b07/jre-6u27-linux-i586-rpm.bin
echo "Making executable"
chmod a+x jre*
echo "Installing java"
./jre*
cd /usr/lib/mozilla/plugins
echo "Making symlink so Firefox works"
ln -s /usr/java/jre*/lib/i386/libnpjp2.so

# 4  
Old 09-11-2011
Not too long ago this wouldn't be a problem, as distributions were allowed to create packages for the official Sun Java, but then The Oracle in its infinite "wisdom" decided to revoke the DLJ.

Besides, how is installing extra software from outside the repository (without signature, checksums, or other verification) different from installing software contained in the repository?
# 5  
Old 09-11-2011
Quote:
Originally Posted by pludi
Not too long ago this wouldn't be a problem, as distributions were allowed to create packages for the official Sun Java, but then The Oracle in its infinite "wisdom" decided to revoke the DLJ.

Besides, how is installing extra software from outside the repository (without signature, checksums, or other verification) different from installing software contained in the repository?
Um no idea. Just trying to make life easier to install java. It is a pain right now.
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Wget - working in browser but cannot download from wget

Hi, I need to download a zip file from my the below US govt link. https://www.sam.gov/SAMPortal/extractfiledownload?role=WW&version=SAM&filename=SAM_PUBLIC_MONTHLY_20160207.ZIP I only have wget utility installed on the server. When I use the below command, I am getting error 403... (2 Replies)
Discussion started by: Prasannag87
2 Replies

2. What is on Your Mind?

Best Torrent Downloader

Hola ! i am using fedora 11, and the default torrent downloader client is Transmission. but it is very slow.. please suggest some good torrent downloader Thankss (2 Replies)
Discussion started by: yashwantkumar
2 Replies

3. UNIX for Dummies Questions & Answers

using wget on selected network interfaces

Hi there, I have a Linux Debian server with 2 network cards each connected through a different gateway : auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.224 netmask 255.255.255.0 gateway 192.168.1.1 auto eth1 iface eth1 inet... (5 Replies)
Discussion started by: chebarbudo
5 Replies

4. Homework & Coursework Questions

How to write script that behaves both in interactive and non interactive mode

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines. It then prompts for deletion of the file. If user supplies arguments with the script , then it works on those files... (8 Replies)
Discussion started by: rits
8 Replies

5. Homework & Coursework Questions

Help with Interactive / Non Interactive Shell script

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines. It then prompts for deletion of the file. If user supplies arguments with the script , then it works on those files... (1 Reply)
Discussion started by: rits
1 Replies

6. Shell Programming and Scripting

Shell Script help - MP3 Downloader using Wget

I want to make a script to use wget to find and download mp3s on a website into a directory with a name derived from that URL. So far I have: #!/bin/sh echo “MP3 Downloader” echo -n "Enter full URL address of website or website subdirectory > " read text cd ~ mkdir $text cd $text ... (3 Replies)
Discussion started by: Garnett
3 Replies
Login or Register to Ask a Question