I've just installed Kali Linux on my SD card that I use with Raspberry. This new OS I think is very good, but at the installation I don't have the opportunity to overclock as it is possible with Raspbian so I'd like to try to check differences. How could I do?
2 Answers
While the post above me shows you how to install raspi-config, it won't actually get the config.txt file working. Simply making /boot/config.txt puts the file in the wrong place for the Kali install. I followed the instructions here: http://rageweb.info/2013/11/07/bootconfig-txt-in-kali/ and it worked for me. The problem is that /boot/ isn't actually the boot partition, so you are placing the file in the wrong place (even though it seems right).
- Here there is the solution to install raspi-config rageweb.info/2013/03/21/raspi-config-in-kali but I still have problem with overclock :SMitro– Mitro2013-03-30 22:07:16 +00:00Commented Mar 30, 2013 at 22:07
- The correct path seems to be
/dev/mmcblk0p1/instead of/boot/. The first is the actual boot partition in Kali.Mast– Mast2015-03-30 11:24:37 +00:00Commented Mar 30, 2015 at 11:24 - @Mast No, the correct path by from that blog would be
/fat32/./dev/mmcblk0p1is a device node representing the partition that is beingmounted on the/fat32directory (the "mount point"); after it's mounted, you can access the partition through the mount point directory.goldilocks– goldilocks2015-03-30 14:03:31 +00:00Commented Mar 30, 2015 at 14:03 - If you then want to use
raspi-configas per @AlessioMTX 's comment, you would have to edit/usr/bin/raspi-configand changeCONFIG=/boot/config.txt(about line 9) toCONFIG=/fat32/config.txt.goldilocks– goldilocks2015-03-30 14:09:58 +00:00Commented Mar 30, 2015 at 14:09 - @goldilocks
/fat32/is an arbitrary name here, as stated in the link. Wouldn't that inverse your comment?Mast– Mast2015-03-30 14:14:28 +00:00Commented Mar 30, 2015 at 14:14
While you may not be able to install raspi-config, you should still be able to create the file /boot/config.txt. Once config.txt is in /boot/, add any required parameters.
In your case, check out some of the overclocking options in the eLinux wiki. As always is the case with overclocking, be careful!
/boot/folder with aconfig.txtfile in it? Alternatively if you put the SD card in a normal computer, is there afat32partition?config.txtfile and put some overclocking settings in there Overclocking Settings and see if that works.