I hereby claim:
- I am sufyanm on github.
- I am sufyanm (https://keybase.io/sufyanm) on keybase.
- I have a public key whose fingerprint is 5DD9 11DB FF1B 69F7 CD82 259A 8C31 9AB3 1072 A456
To claim this, I am signing this object:
# ~/.zshrc | |
# Configure auto completion | |
autoload -U compinit | |
zstyle ':completion:*' menu select | |
zmodload zsh/complist | |
compinit | |
# Configure prompt | |
autoload -U promptinit; promptinit |
I hereby claim:
To claim this, I am signing this object:
diskutil list | |
# target disk has the identifier disk2s1 | |
sudo diskutil unmount /dev/disk2s1 | |
# note the r before disk2s1 | |
sudo dd if=Fedora-Workstation-Live-x86_64-29-1.2.iso of=/dev/rdisk2s1 bs=1m |
# docker pull registry.access.redhat.com/rhel | |
# Using default tag: latest | |
# Trying to pull repository registry.access.redhat.com/rhel ... | |
# open /etc/docker/certs.d/registry.access.redhat.com/redhat-ca.crt: no such file or directory | |
cat << EOF > /etc/rhsm/ca/redhat-uep.pem | |
-----BEGIN CERTIFICATE----- | |
MIIG/TCCBOWgAwIBAgIBNzANBgkqhkiG9w0BAQUFADCBsTELMAkGA1UEBhMCVVMx | |
FzAVBgNVBAgMDk5vcnRoIENhcm9saW5hMRYwFAYDVQQKDA1SZWQgSGF0LCBJbmMu | |
MRgwFgYDVQQLDA9SZWQgSGF0IE5ldHdvcmsxMTAvBgNVBAMMKFJlZCBIYXQgRW50 |
# Download from http://jdk.java.net/11/ | |
mv jdk-11.jdk/ /Library/Java/JavaVirtualMachines/ |
yum -y install createrepo rsync httpd | |
systemctl enable httpd | |
systemctl start httpd | |
mkdir -p /var/www/html/centos/7/os/x86_64/ | |
rsync -avzH --delete rsync://mirror.rackspace.com/centos/7/os/x86_64/ /var/www/html/centos/7/os/x86_64/ | |
mkdir -p /var/www/html/centos/7/updates/x86_64/ | |
rsync -avzH --delete rsync://mirror.rackspace.com/centos/7/updates/x86_64/ /var/www/html/centos/7/updates/x86_64/ |
alter profile DEFAULT limit PASSWORD_REUSE_TIME unlimited; | |
alter profile DEFAULT limit PASSWORD_LIFE_TIME unlimited; |
pssh -h hosts.txt -A -l sufyanm -P -I < script.sh |
KexAlgorithms [email protected] | |
Ciphers [email protected],[email protected],[email protected],aes256-ctr,aes192-ctr,aes128-ctr | |
MACs [email protected],[email protected],[email protected],[email protected],hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,[email protected] |
ssh-keygen -t ed25519 -o -a 100 | |
ssh-keygen -t rsa -b 4096 -o -a 100 |