Skip to content

Instantly share code, notes, and snippets.

@torresashjian
torresashjian / linux-ubuntu-install-wifi-drivers
Last active April 12, 2024 09:07
How to install Broadcom bcm43602 Drivers on Ubuntu Linux
sudo apt-get purge bcmwl-kernel-source
sudo apt update
sudo update-pciids
sudo apt install firmware-b43-installer
sudo reboot #note that this will restart your computer
sudo iwconfig wlp3s0 txpower 10dBm
#sudo iwconfig wlp2s0 txpower 10dBm
zip -er <destination-file>.zip <folder-to-encrypt>
zip -e <destination-file>.zip <file-to-encrypt>

Keybase proof

I hereby claim:

  • I am torresashjian on github.
  • I am torresashjian (https://keybase.io/torresashjian) on keybase.
  • I have a public key ASAAwAobdwl1cBv9DxvsykhZxr_s9UTStJpsS6O-X3ib0Qo

To claim this, I am signing this object:

0x3637cDB371753392ADEF7d818CF00e27eE42C279
@torresashjian
torresashjian / git-remote-branch
Last active August 3, 2017 19:05
How to delete a branch on git in server and client
git push origin --delete $branch_name
git branch -D $branch_name
@torresashjian
torresashjian / linux-kali-install-wifi-drivers.sh
Last active April 16, 2024 15:40
How to install Broadcom BCM43142 Drivers on Kali Linux
apt-get update
apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
modprobe wl
@torresashjian
torresashjian / linux-commands-install-deb.sh
Last active May 3, 2017 16:24
How to install deb file linux
sudo dpkg -i $FILE_PATH
sudo apt-get install -f