Skip to content

Instantly share code, notes, and snippets.

View yottabytesystem's full-sized avatar

Arman Hasan yottabytesystem

View GitHub Profile
@yottabytesystem
yottabytesystem / sudo-termux
Created December 18, 2019 19:21 — forked from GabrielMMelo/sudo-termux
Install sudo in Termux (Android)
apt install git
git clone https://gitlab.com/st42/termux-sudo
cd termux-sudo
cat sudo > /data/data/com.termux/files/usr/bin/sudo
chmod 700 /data/data/com.termux/files/usr/bin/sudo
@yottabytesystem
yottabytesystem / chrome_install
Created December 20, 2016 18:43 — forked from miguelmota/chrome_install
Install Google Chrome in Kali Linux
dpkg -i google-chrome-stable_current_amd64.deb
apt-get install libappindicator1
apt-get -f install
xhost +
adduser bob
su - bob
google-chrome
@yottabytesystem
yottabytesystem / install.md
Created December 19, 2016 21:41 — forked from galulex/install.md
Ruby On Rails Ubuntu 16.04 install

Developer libs

mysql, rmagic, curl, git, vim, sqlite, nodejs nokogiri...

sudo apt-get install libxslt1-dev libxml2-dev libmagickwand-dev imagemagick libsqlite3-dev libcurl4-openssl-dev curl git git-gui vim-gtk exuberant-ctags nodejs nodejs-legacy rar

Ruby

sudo apt-add-repository ppa:brightbox/ruby-ng

sudo apt-get update

@yottabytesystem
yottabytesystem / _ubuntu_steps.sh
Created December 19, 2016 21:40 — forked from johnrees/_ubuntu_steps.sh
Standard Rails 4.* setup for Ubuntu 14.04 LTS
# As root user
sudo su
# Update the OS
sudo apt-get update -y
# Add this to ~/.bashrc to remove timezone warnings
echo 'export LC_ALL="en_US.UTF-8"' >> ~/.bashrc
source ~/.bashrc
@yottabytesystem
yottabytesystem / ia32-libs
Created November 28, 2016 18:56
Install 32-bit library in ubuntu 14.04
#You can try this to install the 32-bit library (not all in ia32-libs):
apt-get install program:i386
#Or if you want to install the whole ia32-lib instead, try the following order:
sudo -i
cd /etc/apt/sources.list.d
echo "deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs