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 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!
- 86
- 1
- 8
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).
- 36
- 1
-
The correct path seems to be
/dev/mmcblk0p1/instead of/boot/. The first is the actual boot partition in Kali. – Mast Mar 30 '15 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 Mar 30 '15 at 14:03 -
Here there is the solution to install raspi-config http://rageweb.info/2013/03/21/raspi-config-in-kali/ but I still have problem with overclock :S – Mitro Mar 30 '13 at 22:07
-
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 Mar 30 '15 at 14:09 -
@goldilocks
/fat32/is an arbitrary name here, as stated in the link. Wouldn't that inverse your comment? – Mast Mar 30 '15 at 14:14 -
@Mast No, that's the whole point. Yes,
/fat32is arbitrary, but so is/boot./dev/mmcblk0p2gets mounted exactly the same way on Raspbian automatically when the system starts up; there is a line in/etc/fstabfor it. You could do the same thing on Kali (have it mounted automatically) by adding a similar line tofstab:/dev/mmcblk0p2 /fat32 vfat defaults 0 2. The problem is that/bootis already used for something else on Kali. It generally is on linux, sort of. Raspbian was customized that way. – goldilocks Mar 30 '15 at 14:22
/boot/folder with aconfig.txtfile in it? Alternatively if you put the SD card in a normal computer, is there afat32partition? – Vincent P Mar 27 '13 at 05:11config.txtfile and put some overclocking settings in there Overclocking Settings and see if that works. – Vincent P Mar 28 '13 at 12:31