Skip to content

Instantly share code, notes, and snippets.

View Akasurde's full-sized avatar
🌏
To the infinity and beyond

Abhijeet Kasurde Akasurde

🌏
To the infinity and beyond
View GitHub Profile

Project lists

python 2to3 migrations

@Akasurde
Akasurde / gist:dcf9b1d9b340bde94366
Created September 1, 2015 06:52
Enable Assistive Technology support in Fedora 22
To Enable Assistive Technology support on Fedora 22, open terminal and
$ gsettings set org.gnome.desktop.interface toolkit-accessibility true
@Akasurde
Akasurde / gist:24828eefca3944221cab
Created September 2, 2015 10:40
Installing Chrome on RHEL 7
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
# yum -y install redhat-lsb libXScrnSaver
# yum -y localinstall google-chrome-stable_current_x86_64.rpm
http://gauss.ececs.uc.edu/Courses/c4029/exams/Spring2013/Review/kernel_spinlock.c
@Akasurde
Akasurde / Virt-manager
Created October 16, 2015 16:15
Help for Virt-manager contribution
1. Run the test suite
`python setup.py test`
2. XML generation
https://libvirt.org/formatdomain.html
3. Command line handling
@Akasurde
Akasurde / gist:31170f5f25fc79700238
Created October 29, 2015 09:51
Installing vagrant-libvirt on RHEL 7 and CentOS 7
wget https://copr.fedoraproject.org/coprs/purpleidea/vagrant-libvirt/repo/epel-7/purpleidea-vagrant-libvirt-epel-7.repo -O /etc/yum.repos.d/vagrant-libvirt.repo
yum install -y vagrant-libvirt
@Akasurde
Akasurde / gist:ae0804f368b8ea3ee729
Created February 19, 2016 06:14
Self Signed Certificate
mkdir alias
certutil -N -d ./alias/
certutil -S -s "CN=CA Issuer" -n CACert -x -t "CT,C,C" -v 120 -m 1234 -d alias/
@ECHO OFF
REM -- Automates cygwin installation
SETLOCAL
REM -- Change to the directory of the executing batch file
CD %~dp0
REM -- Configure our paths
SET SITE=http://mirrors.kernel.org/sourceware/cygwin/
@Akasurde
Akasurde / rpm-digital-signature.sh
Created July 24, 2016 09:50 — forked from fernandoaleman/rpm-digital-signature.sh
How to sign your custom RPM package with GPG key
# How to sign your custom RPM package with GPG key
# Step: 1
# Generate gpg key pair (public key and private key)
#
# You will be prompted with a series of questions about encryption.
# Simply select the default values presented. You will also be asked
# to create a Real Name, Email Address and Comment (comment optional).
#
# If you get the following response:
yum install -y nspr
yum install -y nspr-devel
yum install -y nss
yum install -y nss-devel
yum install -y 389-ds-base-devel
yum install -y krb5-devel
yum install libcrypto
yum install -y openssl-devel
yum install -y libuuid-devel
yum install -y libtalloc-devel