Reputation: 12121
I'm following Github's instructions for adding an SSH key. I've generated the id_rsa.pub file from my AWS EC2 instance, but I cannot complete the step that has me copy the contents of the file using xclip because I cannot install xclip onto the EC2 instance.
sudo yum install
xclip
, but that didn't work ("No package xclip available").So, how do I install xclip on 64-bit Amazon Linux AMI 2012.09?
Upvotes: 22
Views: 27738
Reputation: 765
Use
sudo amazon-linux-extras install epel -y
sudo yum install xclip -y
Source: https://gist.github.com/kevin-kientopp/7a1dee73ab0f1bdb21fe158407a028ea
Upvotes: 6
Reputation: 2633
I don't mean to wake up the zombies but in case someone is still wondering you can wget
the rpm (i.e. from here) and then
sudo yum localinstall xclip-0.12-1.el6.x86_64.rpm
Note: you may need to do the same for some dependencies.
Upvotes: 4
Reputation: 2972
I needed this today for a file larger than a ssh-key, and cat was not enough. You need to enable the EPEL repo in EC2 in order to get xclip:
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo rpm -ivh epel-release-latest-7.noarch.rpm
sudo yum-config-manager --enable epel
sudo yum install xclip -y
Upvotes: 39
Reputation: 5772
You don't need xclip. Just ssh
into the EC2 instance and cat
the key to your terminal, then copy and paste it from your terminal to wherever you need it.
Upvotes: 10