Remote Compilation Using ssh and make
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- RSS Feeds
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- New Products
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- Home, My Backup Data Center
- Validate an E-Mail Address with PHP, the Right Way
- Tech Tip: Really Simple HTTP Server with Python
- New Products
- Trying to Tame the Tablet
- git-annex assistant
4 hours 1 min ago - direct cable connection
4 hours 24 min ago - Agreed on AirDroid. With my
4 hours 34 min ago - I just learned this
4 hours 38 min ago - enterprise
5 hours 8 min ago - not living upto the mobile revolution
7 hours 59 min ago - Deceptive Advertising and
8 hours 35 min ago - Let\'s declare that you have
8 hours 36 min ago - Alterations in Contest Due
8 hours 37 min ago - At a numbers mindset, your
8 hours 38 min ago




Comments
Immediate help in automating a small shell script
Q) I had done the ssh public/private key generation process and my system get connected to remote system automatically with out password. But I want to get this executed through script and when doing this after getting connected to the remote system,the script is being not working.
for example:
#!/bin/bash
ssh 123.12.3.45 {sample ip}
echo "hai vamsi"
output:
just connecting to remote system and stopping over there.
I need your help in this regards to proceed further ,where I get connect to the remote system and then display the echo string.
Thanks in advance
Vamsi
SSH in script
Once the ssh command connects to the remote system the script is going to "pause" execution until the ssh command exits. This is normal behavior: the shell waits for each command to complete execution before it moves on to the next command.
If you were thinking that the echo command was going to execute on the remote system... it doesn't work that way. If you want to execute the echo remotely then your script needs to be:
If you want to execute more than one command remotely then you should place them in a script on the remote system and execute the script with the ssh command.
Mitch Frazier is an Associate Editor for Linux Journal.