parrot-build
parrot-build copied to clipboard
install Kerbrute sys/cdefs.h: No such file or directory
Got this error when installing on virtualbox on Arch (Running amd).
Fix, as per StackOverflow
run: sudo apt-get --reinstall install libc6 libc6-dev
I'll look into making a PR.
Changing kerbrute.yaml to this fixes the issue.
---
- name: Check if /usr/include/x86_64-linux-gnu/sys is present
stat:
path: /usr/include/x86_64-linux-gnu/sys
register: sys_dir
- name: Reinstall of libc6 libc6-dev by command.
command: "apt --reinstall install libc6 libc6-dev"
when: not sys_dir.stat.exists
- name: Install Kerbrute
shell: go install github.com/ropnop/kerbrute@master
Does everything else work on arch? I'm confused because i didn't think arch used apt at all, doesn't it use pacman/(yay|paru)?
Sorry for the confusion, I run Virtualbox on Arch on an amd laptop. In virtualbox I opened the Parrot Vbox VM and went through the installation steps 😊