Fixes and added john the ripper install

This commit is contained in:
Gabriel Brown 2024-07-11 08:53:27 -05:00
parent 6ea8f02158
commit d14d4bc1b8
4 changed files with 10 additions and 0 deletions

View File

@ -6,9 +6,12 @@ alias gtext="gnome-text-editor"
alias :q="exit" alias :q="exit"
alias :wq="exit" alias :wq="exit"
alias cdcode="cd ~/Documents/Code" alias cdcode="cd ~/Documents/Code"
alias cdsun="cd ~/.local/share/sunhat"
alias rnr="ranger" alias rnr="ranger"
alias startsunshine="systemctl --user restart sunshine.service" alias startsunshine="systemctl --user restart sunshine.service"
alias n.="nvim ." alias n.="nvim ."
alias sourcerc="source ~/.bashrc"
alias john="~/.local/share/sunhat/packages/JohnTheRipper/run/john"
# File system # File system
alias ls='eza -lh --group-directories-first --icons' alias ls='eza -lh --group-directories-first --icons'

View File

@ -11,3 +11,4 @@ espanso start
espanso install html-utils-package espanso install html-utils-package
espanso install markdown-shortcuts espanso install markdown-shortcuts
espanso install misspell-en espanso install misspell-en
cd ~/.local/share/sunhat || exit

View File

@ -3,6 +3,7 @@ git clone https://github.com/Antynea/grub-btrfs ~/.local/share/sunhat/packages/g
cp ~/.local/share/sunhat/configs/grub-btrfs/config ~/.local/share/sunhat/packages/grub-btrfs/config cp ~/.local/share/sunhat/configs/grub-btrfs/config ~/.local/share/sunhat/packages/grub-btrfs/config
cd ~/.local/share/sunhat/packages/grub-btrfs cd ~/.local/share/sunhat/packages/grub-btrfs
sudo make install sudo make install
cd ~/.local/share/sunhat
sudo grub2-mkconfig -o /etc/grub2-efi.cfg sudo grub2-mkconfig -o /etc/grub2-efi.cfg
sudo systemctl enable --now grub-btrfsd sudo systemctl enable --now grub-btrfsd
echo -e "\nIn order to make GRUB-BTRFS work with Timeshift," echo -e "\nIn order to make GRUB-BTRFS work with Timeshift,"

View File

@ -0,0 +1,5 @@
sudo dnf install yasm gmp-devel libpcap-devel bzip2-devel
git clone https://github.com/magnumripper/JohnTheRipper.git ~/.local/share/sunhat/packages/JohnTheRipper/
cd ~/.local/share/sunhat/JohnTheRipper/src
./configure && make
cd ~/.local/share/sunhat