Kali Linux Desktop PC Initial Setup: Difference between revisions

From WikiMLT
mNo edit summary
Line 12: Line 12:
<syntaxhighlight lang="shell" line="1">
<syntaxhighlight lang="shell" line="1">
sudo nano /etc/default/grub
sudo nano /etc/default/grub
</syntaxhighlight><syntaxhighlight lang="bash" line="1" start="34">
# SZS: https://wiki.metalevel.tech/wiki/Kali_Linux_Desktop_PC_Initial_Setup
GRUB_DISABLE_OS_PROBER=false
</syntaxhighlight><syntaxhighlight lang="shell" line="1">
sudo update-grub
</syntaxhighlight>
</syntaxhighlight>
* ''Reference: [https://forum.manjaro.org/t/warning-os-prober-will-not-be-executed-to-detect-other-bootable-partitions/57849/4 Magento forum - Warning: os-prober will not be executed to detect other bootable partitions]''


<noinclude>
<noinclude>

Revision as of 08:58, 17 August 2022

En­able Blue­tooth

In Kali Lin­ux 2022 the Blue­tooth ser­vice is dis­abled by de­fault. In or­der to en­able it run thew fol­low­ing com­mands.

sudo service bluetooth status
sudo systemctl start bluetooth.service
sudo systemctl enable bluetooth.service

Add Win­dows 10 en­try in­to the Grub menu

sudo nano /etc/default/grub
# SZS: https://wiki.metalevel.tech/wiki/Kali_Linux_Desktop_PC_Initial_Setup
GRUB_DISABLE_OS_PROBER=false
sudo update-grub