Created
July 1, 2019 19:59
-
-
Save vinnie357/7f01644ce350c2855a5bd217cf420ca5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setup vscode remote | |
------------------- | |
This is for lab only | |
==================== | |
1 AllowTcpForwarding no | |
sed -i '/^AllowTcpForwarding/s/no/yes/' /config/ssh/sshd_config | |
2 copy ssh authorized_keys | |
sudo cat >> ~/.ssh/authorized_keys <<EOF | |
ssh-rsa AAAKKEEYYSS | |
EOF | |
3 restart sshd | |
sudo systemctl restart sshd | |
4 install vscode remote | |
install git | |
----------- | |
rpm install v15 | |
=============== | |
curl http://mirror.centos.org/centos/7/os/x86_64/Packages/perl-Error-0.17020-2.el7.noarch.rpm > perl-Error-0.17020-2.el7.noarch.rpm | |
curl http://mirror.centos.org/centos/7/os/x86_64/Packages/perl-Git-1.8.3.1-19.el7.noarch.rpm > perl-Git-1.8.3.1-19.el7.noarch.rpm | |
curl http://mirror.centos.org/centos/7/os/x86_64/Packages/perl-TermReadKey-2.30-20.el7.x86_64.rpm > perl-TermReadKey-2.30-20.el7.x86_64.rpm | |
curl http://mirror.centos.org/centos/7/os/x86_64/Packages/git-1.8.3.1-19.el7.x86_64.rpm > git-1.8.3.1-19.el7.x86_64.rpm | |
rpm -i perl-Error-0.17020-2.el7.noarch.rpm perl-TermReadKey-2.30-20.el7.x86_64.rpm | |
rpm -i perl-Git-1.8.3.1-19.el7.noarch.rpm git-1.8.3.1-19.el7.x86_64.rpm | |
mount filesystem | |
---------------- | |
mount -v | grep usr | |
sudo mount -o remount,rw /dev/mapper/vg--db--vda-set.1._usr /usr | |
# sudo mount -o remount,ro /dev/mapper/vg--db--vda-set.1._usr /usr | |
deploy icrdk | |
------------ | |
npm install icrdk@https://github.com/f5devcentral/f5-icontrollx-dev-kit.git -g | |
unmount filesystem | |
------------------ | |
sudo mount -o remount,ro /dev/mapper/vg--db--vda-set.1._usr /usr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment