Skip to content

Instantly share code, notes, and snippets.

@bmv437
bmv437 / install-fish.sh
Last active January 25, 2019 00:24
install fish shell
#!/bin/bash
echo "Installing Fish Shell..."
sudo apt-add-repository ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install fish --yes
echo "To set Fish Shell as the default shell, run the following command:"
echo "chsh -s $(which fish)"
echo "Then log out and log back in again"
  1. Remove the onboard backup repository from VA
  2. Log into vSphere Client and add a new hard drive disk to Nakivo VA
  3. Log into Nakivo VA using root/root credentials
  4. Rescan the scsi bus for a new hardware by executing the following commands:
    1. cat /proc/partitions and note the list of devices
    2. apt-get install scsitools
    3. rescan-scsi-bus
    4. cat /proc/partitions and see what devices was added. For example, you will see sdb device
  5. Create a partition on the new disk by executing the following commands:
    1. parted /dev/, for example, sdb
@bmv437
bmv437 / gist:10395105
Created April 10, 2014 15:39
keybase.md
### Keybase proof
I hereby claim:
* I am bmv437 on github.
* I am bmv437 (https://keybase.io/bmv437) on keybase.
* I have a public key whose fingerprint is D151 07AE E2BA 1E3A 6D60 06F7 81A2 0BF1 E77C 6F7D
To claim this, I am signing this object:
@bmv437
bmv437 / link.bat
Created December 15, 2012 00:11
Sublime Text 2 <-> Dropbox plugin sync linker
@bmv437
bmv437 / .bash_aliases
Last active October 3, 2015 16:57
my configs
alias ls='ls --color=auto'
alias gc="git commit -m $1"
alias gca="git commit -am $1"
alias gcap=git_add_all_commit_and_push
alias gs='git status'
alias gf='git fetch'
alias gm='git merge origin'
alias gp='git push'
alias gpl='git pull'