Ubuntu :: Use Wget On A 10.04 Server 64bit?
Aug 4, 2010
I'm trying to use wget on an ubuntu 10.04 server 64bit, with 16GB RAM and 1.1 TB free disk space. It exits with the message "wget: memory exhausted". I'm trying to download 1MB of some sites. After different tries this is the command I'm using:
Code:
wget -r -x -Q1m -R "jpg,gif,jpeg,png" -U Mozilla http://www.onesite.com
(I only need the html documents, but when if I run the -A options only the first page is donwloaded, so I change to -R).
This happens with wget 1.12 version. I've tried the same command in other computers with less RAM and disk space (ubuntu 8.04 - wget 1.10.2) and it works just fine.
View 1 Replies
ADVERTISEMENT
Apr 16, 2009
strace wget www.google.com:
...
write(2, "Connecting to www.google.com|74.1"..., 51Connecting to www.google.com|74.125.115.104|:80... ) = 51
socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 3
[code]....
View 4 Replies
View Related
Mar 27, 2009
In trying to use the instructions here [URL] I get Quote: -bash: wget: command not found
View 2 Replies
View Related
Feb 3, 2011
We have 2 servers, 1 is the webserver and the other is the Mysql server.
When transfering a 2GB file from the webserver to the Mysql server.
The webserver's connection to the mysql DB server dies completely.
Need to restart the MYSQL process in order for it to come back online.
During this connection downtime, when using phpmyadmin on the mysql server shows no problem running queries etc.
View 2 Replies
View Related
Jun 19, 2011
If a wget download is interrupted (like if I have to shutdown prematurely), I get a wget.log with the partial download. How can I later resume the download using the data in wget.log? I have searched high and low (including wget manual) and cannot find how to do this. Is it so obvious that I did not see it? The wget -c option with the wget.log as the argument to the -c option does not work. What I do do is open the wget.log and copy the URL and then paste it into the command line and do another wget. This works but the download is started from the beginning, which means nothing in the wget.log is used.
View 2 Replies
View Related
Dec 19, 2010
I am trying to copy a directory and everything in it from one server to another.No matter what I type into SCP, it just gives me back:
usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
[-l limit] [-o ssh_option] [-P port] [-S program]
I tried:scp -r -P 1133 root@XX.XX.XX.XX:/home/imagesShouldn't that recursively copy /home/images from the server XX.XX.XX.XX through SSH on port 1133?Btw - I know you can do it with a tar or just a regular FTP program. The folderI am trying to copy is 40 gig, there isn't enough free space to make a tar (if the server would even do it)
View 6 Replies
View Related
Oct 13, 2010
I cant update php in my RHEL Server 5.1 using yum. I am using RHEL Server 5.1 and I cant use yum to upgrade my php. Other site told me that use wget to solve this problem. How to use wget to upgrade php? This is my first time to handle linux server..
View 9 Replies
View Related
Jan 12, 2011
I need to write a script that executes a wget. The difficulty being, if wget just sits there with no reply for a very long time, I don't want the script to run that long.
How can I time out the wget command in the script if it doesn't give me a reply in a minute or so?
View 3 Replies
View Related
Jul 12, 2010
There is a partnering website that provides an RSS feed to display on the website I am working on. The website displays information on the feed every time a user accesses the website. The feed changes almost every day. For bandwidth considerations and speed, I would like to download the feed once by the server using a crontab job (my website is in a linux shared hosting environment). The problem exists with the URL structure, which I have no control over.
Here is the URL:
Code:
[code]....
I am aware that there are characters that need escaping and this is where I am getting my errors. I have never written a shell-script but I am also assuming some of the characters are keywords in the Shell Scripting language or Linux I am also aware that I can avoid having to escape by enclosing the URL with single or double quotes. You will notice that the URL has BOTH single and double quotes, so its not as simple.
View 1 Replies
View Related
Jan 29, 2011
I'm trying to download phpmyadmin from sourceforge => http://sourceforge.net/projects/phpm...r.bz2/download .I'm using the wget command followed by direct link from the page. All I get is some irrelevant file that has nothing common with phpMyAdmin-3.3.9-all-languages.tar.bz2.The direct link is for clients with web browsers that triger automatic download to user desktop, but I need to download the package to a server. What is the wget option to get the file from this kind of links?
View 1 Replies
View Related
Jun 29, 2010
I use the
Code:
wget -r -A <extension> <site>
command to download all files from a certain site. this time i already have some of the files already downloaded and listed in a text file via
Code:
ls > <text file name>
How can i make wget to download from the site i want but ignore the filenames listed in the text file?
View 2 Replies
View Related
Feb 18, 2011
I wish to download a webpage, which is secured by username and password, using WGET. The thing is there are many forms on that page and I dont know how to tell WGET which one should it send (by POST method) the parameters. I have solved it till this so far:
wget --post-data="predmet=xxx" --http-user="yyy" --http-password="zzz" [URL]
It gets through the authentication but it will not submit the form.
View 3 Replies
View Related
Sep 23, 2009
I'm debugging some kind of a SOAP problem. I can use wget for any domain I want, besides domains that are hosted on the server itself.
What could it be? Centos firewall & selinux are turned off.
(domains / ips removed from code)
[root@http1 ~]# wget http://www.google.com
--12:09:53-- http://www.google.com/
Resolving www.google.com... 74.125.93.103, 74.125.93.104, 74.125.93.105, ...
Connecting to www.google.com|74.125.93.103|:80... connected.
[Code].....
View 4 Replies
View Related
Jun 24, 2011
i am using fc9 server i installed Apache web-server i kept some datafile in my html folder when tried to download remotely through web i can download the file tried to get the file in remotely through wget command i am unable to get the fileor is failed: Connection timed out Retrying below the steps i tried it
my target file is http://X.X.X.X/test.zip
wget -T 0 http://X.X.X.X/test.zip
wget http://X.X.X.X/test.zip
[code]...
View 1 Replies
View Related
Apr 3, 2011
I have a very strange problem for me. In this example dns and IP is hiden for security reason. When I try from putty manager to connect to my Debian and write next command:
[Code]...
View 1 Replies
View Related
Oct 13, 2010
Just installed Ubuntu 10.10, and am unable to install NFS server. Starting nfs-kernel-server keeps returning:
Quote:
* Not starting NFS kernel daemon: no support in current kernel.
uname reports:
Quote:
2.6.35-22-virtual #34-Ubuntu SMP Sun Oct 10 12:25:39 UTC 2010 x86_64 GNU/Linux
View 3 Replies
View Related
Apr 7, 2010
installing a Teamspeak 3 Server 64bit on Ubuntu 6.10.I am trying to get all my windows server in Linux and I only lack a few servers.you can download it here [URL]
View 1 Replies
View Related
Apr 25, 2011
I have a CentOS 5.5 system that I am able to run fully virtualized 32-bit VM's on just fine, but I have need to run some 64-bit VM's on it. It has a "paravirtualized" option that might possibly work, but it wants a network install path, and I am not sure if this is the actual solution. When I go to create the VM I only have i686 and xen for options on the virtualized method, is there a way to add (I am presuming) amd64 in here somehow? The CPU is definitely 64-bit. My google-fu hasn't found results for me yet.
View 3 Replies
View Related
May 16, 2010
Is is possible to install Ubuntu Server 10.04 on USB Flash (pendrive) ?
I'm wondering could i create small dedicated server without hard drive.
I don't need high speed on "" drive.
I think i could mount home and all user data by NFS or iSCSI.
But question is about putting that on flash storage...
Any easy way to install in on pendrive ?
View 1 Replies
View Related
Feb 1, 2011
I'm trying to make a fresh install of Ubuntu 10.10 Server 64bit but is stuck with the Partitioning Disk part and Ubuntu 10.04 LTS provides the same error. The installation wizard gives me a menu:
!! Partitioning disks
This menu allows you to configure iSCSI volumes
iSCSI configuration actions
[code].....
View 1 Replies
View Related
Feb 16, 2011
I am trying to install skype on a 64bit Fc14 and the 32bit doesn't work.
View 8 Replies
View Related
May 26, 2011
I am using F14 Kernel 2.6.35.13-91.fc14.x86_64 and I tried to install VMWare Server using this toturial Click Here .
Unfortunately, I got this error "There is a problem compiling the vmnet module after it was patched." in this step on the second page:
Code:
Note that I used the names on my Laptop and here I am attaching What I Have done.. (txt is attached)
How to install any vmware Because I have to install Windows 7 on it.. Note that mine is 64-bit
View 3 Replies
View Related
Jan 27, 2010
I just loaded openSUSE 11.2 64bit and can't get VMware server to install. I had it working just fine in 11.1. I installed: kernel-source, make, gcc, gcc-c++, downloaded VMware server RPM installed with Yast. opened a console went root and ran: /usr/bin/vmware-config.pl. Make aborts with the following few lines:
Prior to this had a whole rift of Warning Such as:
Unable to build the vmmon module.
In the past I followed instructions I down loaded for "swerdna" and it worked well.
View 6 Replies
View Related
Oct 26, 2010
On a newly installed centos I updated mysql-* & php-* files using RPM repository, and I installed phpmyadmin. After that i tried restarting mysql and it just said: failed
Code:
service mysqld start
MySQL Daemon failed to start.
Starting mysqld: [FAILED]
[Code].....
View 5 Replies
View Related
Feb 9, 2011
I have set up my Openvpn Server in Centos and it is working fine. Windows XP clients are able to connect the OpenVPN Server and access the network. This is a customized OpenVPN Gui Client. Now I need the customized OpenVPN Client for MS Windows 7Bit. I am using openvpn-2.1.4-install OpenVPN Client in MS Windows 7 64Bit. This is a executable and working fine in the said architecture. Now I want to compile this version. I am following the given steps at : [URL].. As per the direction i have copied the source from 2.1.4 and tried to compile, but compiled copy is giving the error " An error occurred Installing the TAP-Win32 Device Driver". I have tried this compilation by making every change and hack but all in vain.
I think that there are some certain steps which are missing and not documented any where. And sure that someone in forum will know the facts.
View 1 Replies
View Related
Jun 2, 2011
I've got a solid PC w/Xeon dual core, 4gb RAM, and (2) 1Tb Sata HDs - looking to replace a WinXP pc that currently is running PlayOn (for media to the BD player on the TVs) and sharing folders/drives to all the PCs (WinXP, Win7, OSX, and Ubuntu.
I have tried a few distros to get media shared to the BD players, and even a Win7 - but the BD players can't seem to play any of the video files on the newer 'servers' - and only the Win7 even appears to the Sony TV in the living room (even though it can only browse the folders with video files). Another problem with the Win7 being tested for acting as a server - is the Macs cant seem to access the shares (get Access Denied errors).
Wondering if there is any good distro that is mainly setup for sharing files and storage space to all my devices. Thinking of trying FreeNAS, and seeing if I could add the UPnP/DNLA server packages to it?
View 2 Replies
View Related
Mar 1, 2009
how to work with linux (centos 5.2 64bit) but i am having a hard time to get this screen install. I was going to try this but i was not sure as i have reinstall the os many times because i do something wrong.
apt-get install screen
View 1 Replies
View Related
Mar 16, 2009
Downloaded from here: [URL] then ,it is 32-bit and I need to know what all 32-bit libs are needed as dependency for skype to work. I am on Gnome Fedora and purposefully selected static version of skype to prevent installation of libqt4.
View 2 Replies
View Related
Jan 15, 2010
I have the simple fortran codes as:
Code:
integer :: i1=2455121, i2=2455121
real :: s1=0.19123840, s2=0.20749992
real*8 :: a1, a2
a1=i1+s1; a2=i2+s2
[Code]....
When s1 and s2 are stated with 'real*8', the 64bit and 32bit systems get the same results.
View 6 Replies
View Related
May 24, 2010
I just bought sony vaio laptop(EB16) couple of days before.I had window 7 OS. Two days before i downloaded Fedora-12-x86_64-DVD & installed in my PC.Everything is working fine except when i play any video or audio file such as .avi, .mp3 from any player such as vlc player, movie player ,xine etc , i don't get any sound.I tried to search this problem in internet but still i am not able to resolve this problem.
[Code]...
View 14 Replies
View Related