cat
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
If you already use virtualized infrastructure, you are well on your way to leveraging the power of the cloud. Virtualization offers the promise of limitless resources, but how do you manage that scalability when your DevOps team doesn’t scale? In today’s hypercompetitive markets, fast results can make a difference between leading the pack vs. obsolescence. Organizations need more benefits from cloud computing than just raw resources. They need agility, flexibility, convenience, ROI, and control.
Stackato private Platform-as-a-Service technology from ActiveState extends your private cloud infrastructure by creating a private PaaS to provide on-demand availability, flexibility, control, and ultimately, faster time-to-market for your enterprise.
Sponsored by ActiveState
| Speed Up Your Web Site with Varnish | Jun 19, 2013 |
| Non-Linux FOSS: libnotify, OS X Style | Jun 18, 2013 |
| Containers—Not Virtual Machines—Are the Future Cloud | Jun 17, 2013 |
| Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer | Jun 12, 2013 |
| Weechat, Irssi's Little Brother | Jun 11, 2013 |
| One Tail Just Isn't Enough | Jun 07, 2013 |
- Speed Up Your Web Site with Varnish
- Containers—Not Virtual Machines—Are the Future Cloud
- Non-Linux FOSS: libnotify, OS X Style
- Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer
- Linux Systems Administrator
- Senior Perl Developer
- Technical Support Rep
- UX Designer
- Android's Limits
- Weechat, Irssi's Little Brother
- Yeah, user namespaces are
53 min 56 sec ago - Cari Uang
4 hours 25 min ago - user namespaces
7 hours 18 min ago - yea
7 hours 44 min ago - One advantage with VMs
10 hours 13 min ago - about info
10 hours 46 min ago - info
10 hours 47 min ago - info
10 hours 48 min ago - info
10 hours 50 min ago - info
10 hours 51 min ago
Featured Jobs
| Linux Systems Administrator | Houston and Austin, Texas | Host Gator |
| Senior Perl Developer | Austin, Texas | Host Gator |
| Technical Support Rep | Houston and Austin, Texas | Host Gator |
| UX Designer | Austin, Texas | Host Gator |
| Web & UI Developer (JavaScript & j Query) | Austin, Texas | Host Gator |
Free Webinar: Hadoop
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Some of key questions to be discussed are:
- What is the “typical” Hadoop cluster and what should be installed on the different machine types?
- Why should you consider the typical workload patterns when making your hardware decisions?
- Are all microservers created equal for Hadoop deployments?
- How do I plan for expansion if I require more compute, memory, storage or networking?




Comments
Good info
Hello! dbdegdd interesting dbdegdd site!
cat command for several grib files
I have many grib files (starting from ecmwf19860101.grb to ecmwf20090101.grb). These are basically daily files and the total number of files is nearly 30000 and I want to cat them into one file. When I use the command:
cat ecmwf*>ecmwf.grb
-bash: /bin/cat: Argument list too long
Why its not working on large number of files?
Is there any limit of using "cat" command?
Although I used above command for some of the files and it works.
Please advise me if it is possible to cat large number of grib files?
Thanks in advance.
Regards,
Mubashar
Problem in unix scripting
Hi , i am facing the problem in unix shell scripting.
not able to execute.
giving the error
./test: line 2: if[0 != 2]: command not found
./test: line 3: syntax error near unexpected token `then'
./test: line 3: `then'
Please help ASAP
Regards,
Lakshmi
White space
You're missing some needed whitespace:
- Between the "if" keyword and the "[" command.
- After the "[" command.
- Before the "]" argument to the "[" command.
- After the echo commands and their arguments.
It's also considered "good" practice, but not mandatory, to indent the commands within an "if" statement:
#!/bin/sh if [ $# -ne 2 ] then echo "Numbers not supplied" echo "Usage $0 number1 number2" exit 1 fi echo "the sume is `expr $1 + $2`"Mitch Frazier is an Associate Editor for Linux Journal.
1997...?
1997? Is this correct?
The time stamp of the posting says: "October 1st, 1997 by Patrick Hill"
That's only... 12 years ago! :x
No, I just posted this in
No, I just posted this in September of 2009
Using Cat
Hi,
I have used the cat command to put the contents of a large number of files into one large file. So I have each files contents in this large file without a blank line between the files. How can I add the filename before the contents of the file and a blank line between the files in my large output file?
Using Cat
OK, I have all the filenames showing before the contents and with a carriage return after the filename. I just need to know how to add a carriage return after each files contents. Here is the code.
#!/bin/sh
# no error checking
rm -f newfile
for i in *.spc;
do printf "%s\n" $i >> newfile
cat "$i" >> newfile
done
To print specific range of lines using cat
Hello Patrick,
I am using AIX Unix. How is it possible to select lines to be printed using cat ? If the file size is very big and say it has more than thousand lines and i want to print lines 65 to 70 on standard output.
Regards,
Immi.
To print specific lines using cat and sed commands
Hello Immi.
You can pipe the output of cat command to sed command as follows.
cat filename |sed -n '65,70p'
This will print lines 65 to 70 on standard output.
If you want to print only one line, you can use the following syntax.
cat filename |sed -n '5p'
This will print only line 50 of the file on standard output.
Sorry for the mistake.
Sorry for the mistake.
please read the last line of the my commend corrected as "...line 5 of the file...."
Re: Take Command: cat
Good examples. Something puzzles me though. I am taking a Unix class using Solaris 2.8 on Sun workstations, but I do my practicing on a PC with Linux (RedHat 8). In Unix you can create a new file with:
cat fileName
blah blah
Ctrl-D
But with Linux this produces a "no such file" error, so you must explicitely redirect the output with:
cat > fileName ...
I have tried it with all of the shells installed and get the same. I wonder why the difference?
Re: Take Command: cat
i am very thankful for the detailed information
of the cat command. many of the linux sites
are not having the basic information of cat
command which is must. i pity the negligence
attributed by the linux site maintainers.
any how i am thankful for the detailed and
friendly information.
thanking you