How to install code blocks in kali?
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
First thing first - I am pretty much new to linux based operating system. Please be patient with me.
Hi,
I recently installed kali on my computer. But I dont know the basics of this OS. Please help me to install code::blocks.
Here is what i did:
I downloaded codeblocks-13.12-1.amd64.debian.stable.tar.xz file from internet.
when I extracted it I found many (16) .deb files. (I assume that I have to install every single file)
when I tried to install it all with package installer by right clicking it I got a error "The action is not supported by this backend."
when I used "apt-get install codeblocks_13.12-1_amd64.deb" (it is the first .deb file among the 16 I extracted) in terminal I got the errors "E: unable to locate package codeblocks_13.12-1_amd64.deb" "E: couldn't find any package by regex 'codeblocks_13.12-1_amd64.deb'".
software-installation kali-linux
add a comment |
First thing first - I am pretty much new to linux based operating system. Please be patient with me.
Hi,
I recently installed kali on my computer. But I dont know the basics of this OS. Please help me to install code::blocks.
Here is what i did:
I downloaded codeblocks-13.12-1.amd64.debian.stable.tar.xz file from internet.
when I extracted it I found many (16) .deb files. (I assume that I have to install every single file)
when I tried to install it all with package installer by right clicking it I got a error "The action is not supported by this backend."
when I used "apt-get install codeblocks_13.12-1_amd64.deb" (it is the first .deb file among the 16 I extracted) in terminal I got the errors "E: unable to locate package codeblocks_13.12-1_amd64.deb" "E: couldn't find any package by regex 'codeblocks_13.12-1_amd64.deb'".
software-installation kali-linux
add a comment |
First thing first - I am pretty much new to linux based operating system. Please be patient with me.
Hi,
I recently installed kali on my computer. But I dont know the basics of this OS. Please help me to install code::blocks.
Here is what i did:
I downloaded codeblocks-13.12-1.amd64.debian.stable.tar.xz file from internet.
when I extracted it I found many (16) .deb files. (I assume that I have to install every single file)
when I tried to install it all with package installer by right clicking it I got a error "The action is not supported by this backend."
when I used "apt-get install codeblocks_13.12-1_amd64.deb" (it is the first .deb file among the 16 I extracted) in terminal I got the errors "E: unable to locate package codeblocks_13.12-1_amd64.deb" "E: couldn't find any package by regex 'codeblocks_13.12-1_amd64.deb'".
software-installation kali-linux
First thing first - I am pretty much new to linux based operating system. Please be patient with me.
Hi,
I recently installed kali on my computer. But I dont know the basics of this OS. Please help me to install code::blocks.
Here is what i did:
I downloaded codeblocks-13.12-1.amd64.debian.stable.tar.xz file from internet.
when I extracted it I found many (16) .deb files. (I assume that I have to install every single file)
when I tried to install it all with package installer by right clicking it I got a error "The action is not supported by this backend."
when I used "apt-get install codeblocks_13.12-1_amd64.deb" (it is the first .deb file among the 16 I extracted) in terminal I got the errors "E: unable to locate package codeblocks_13.12-1_amd64.deb" "E: couldn't find any package by regex 'codeblocks_13.12-1_amd64.deb'".
software-installation kali-linux
software-installation kali-linux
edited Mar 9 at 15:17
Rui F Ribeiro
41.9k1483142
41.9k1483142
asked Dec 1 '15 at 15:52
Jaseem UnpluggedJaseem Unplugged
1112
1112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
http://playtowatch.com/watch/75UZ5ScW_TM/how-to-install-codeblocks-on-linux-kali-linux.html
I had the same problem and followed the tutorial below the video.
First download the wxwidgets source for linux. Then download the codeblocks source: codeblocks_13.12-1.tar.gz
(instead of the debian package you downloaded). Links to both of these can be found at the bottom of the page linked above.
Go to your downloads folder, right click on each of the files, and click Extract here. The tutorial in the link above explains how to extract the files in the terminal but I had problems extracting the codeblocks file so just did it like I would in Windows.
Open a terminal (I did the rest of this in root. Im not sure if this is necessary because I am also new to linux but thats what I did. You can switch to root by typing "su" in the terminal) and navigate to where you downloaded and extracted the wxwidgets. Type the following commands:
cd /home/USERNAME/Downloads/wxWidgets-3.0.2/
./configure
make
make install
ldconfig
Once all that is finished navigate to the codeblocks folder that you extracted:
cd /home/USERNAME/Downloads/codeblocks-13.12/
./configure
make
make install
ldconfig
add a comment |
protected by Community♦ Mar 10 '17 at 12:22
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
http://playtowatch.com/watch/75UZ5ScW_TM/how-to-install-codeblocks-on-linux-kali-linux.html
I had the same problem and followed the tutorial below the video.
First download the wxwidgets source for linux. Then download the codeblocks source: codeblocks_13.12-1.tar.gz
(instead of the debian package you downloaded). Links to both of these can be found at the bottom of the page linked above.
Go to your downloads folder, right click on each of the files, and click Extract here. The tutorial in the link above explains how to extract the files in the terminal but I had problems extracting the codeblocks file so just did it like I would in Windows.
Open a terminal (I did the rest of this in root. Im not sure if this is necessary because I am also new to linux but thats what I did. You can switch to root by typing "su" in the terminal) and navigate to where you downloaded and extracted the wxwidgets. Type the following commands:
cd /home/USERNAME/Downloads/wxWidgets-3.0.2/
./configure
make
make install
ldconfig
Once all that is finished navigate to the codeblocks folder that you extracted:
cd /home/USERNAME/Downloads/codeblocks-13.12/
./configure
make
make install
ldconfig
add a comment |
http://playtowatch.com/watch/75UZ5ScW_TM/how-to-install-codeblocks-on-linux-kali-linux.html
I had the same problem and followed the tutorial below the video.
First download the wxwidgets source for linux. Then download the codeblocks source: codeblocks_13.12-1.tar.gz
(instead of the debian package you downloaded). Links to both of these can be found at the bottom of the page linked above.
Go to your downloads folder, right click on each of the files, and click Extract here. The tutorial in the link above explains how to extract the files in the terminal but I had problems extracting the codeblocks file so just did it like I would in Windows.
Open a terminal (I did the rest of this in root. Im not sure if this is necessary because I am also new to linux but thats what I did. You can switch to root by typing "su" in the terminal) and navigate to where you downloaded and extracted the wxwidgets. Type the following commands:
cd /home/USERNAME/Downloads/wxWidgets-3.0.2/
./configure
make
make install
ldconfig
Once all that is finished navigate to the codeblocks folder that you extracted:
cd /home/USERNAME/Downloads/codeblocks-13.12/
./configure
make
make install
ldconfig
add a comment |
http://playtowatch.com/watch/75UZ5ScW_TM/how-to-install-codeblocks-on-linux-kali-linux.html
I had the same problem and followed the tutorial below the video.
First download the wxwidgets source for linux. Then download the codeblocks source: codeblocks_13.12-1.tar.gz
(instead of the debian package you downloaded). Links to both of these can be found at the bottom of the page linked above.
Go to your downloads folder, right click on each of the files, and click Extract here. The tutorial in the link above explains how to extract the files in the terminal but I had problems extracting the codeblocks file so just did it like I would in Windows.
Open a terminal (I did the rest of this in root. Im not sure if this is necessary because I am also new to linux but thats what I did. You can switch to root by typing "su" in the terminal) and navigate to where you downloaded and extracted the wxwidgets. Type the following commands:
cd /home/USERNAME/Downloads/wxWidgets-3.0.2/
./configure
make
make install
ldconfig
Once all that is finished navigate to the codeblocks folder that you extracted:
cd /home/USERNAME/Downloads/codeblocks-13.12/
./configure
make
make install
ldconfig
http://playtowatch.com/watch/75UZ5ScW_TM/how-to-install-codeblocks-on-linux-kali-linux.html
I had the same problem and followed the tutorial below the video.
First download the wxwidgets source for linux. Then download the codeblocks source: codeblocks_13.12-1.tar.gz
(instead of the debian package you downloaded). Links to both of these can be found at the bottom of the page linked above.
Go to your downloads folder, right click on each of the files, and click Extract here. The tutorial in the link above explains how to extract the files in the terminal but I had problems extracting the codeblocks file so just did it like I would in Windows.
Open a terminal (I did the rest of this in root. Im not sure if this is necessary because I am also new to linux but thats what I did. You can switch to root by typing "su" in the terminal) and navigate to where you downloaded and extracted the wxwidgets. Type the following commands:
cd /home/USERNAME/Downloads/wxWidgets-3.0.2/
./configure
make
make install
ldconfig
Once all that is finished navigate to the codeblocks folder that you extracted:
cd /home/USERNAME/Downloads/codeblocks-13.12/
./configure
make
make install
ldconfig
edited May 1 '17 at 8:44
dr01
16.3k115275
16.3k115275
answered Dec 2 '15 at 6:27
wigzwigz
261
261
add a comment |
add a comment |
protected by Community♦ Mar 10 '17 at 12:22
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?