Remote Compilation Using ssh and make

Here's a quick lesson in setting up scripts to use the ssh and make commands for compiling on a remote machine.
______________________

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Immediate help in automating a small shell script

Vamsi Krishna.Kunasani's picture

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

Mitch Frazier's picture

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:

#!/bin/bash
ssh 123.12.3.45 echo "hai vamsi"

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.

White Paper
Fabric-Based Computing Enables Optimized Hyperscale Data Centers

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.

Learn More

Sponsored by AMD

White Paper
Red Hat White Paper: Using an Open Source Framework to Catch the Bad Guy

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.

Learn More

Sponsored by DLT Solutions