Need a linux distro with Linux 3.14.17 (vanilla) [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I need to compile my code on Linux 3.14.17 (vanilla) kernel.
Can anyone help me find a distro which comes with this kernel by default.
If there is no distro which comes with this kernel then how can I use this kernel or which Linux distro is based on the above kernel.
Thanks
Kumar

The simplest solution is to use your favorite distro (for example Ubuntu) and to compile the kernel at the desired version.
On this link, there is a step-by-step explanation on how to compile a vanilla kernel for Ubuntu.
Adapt for the given version you want.

Ubuntu provides special repository with packaged kernels for alomost every upstream version. This folder provides kernel packages for 3.14.17. Just download and install them them via
dpkg -i *.deb
Check your architecture i.e. i386 or amd64 before downloading.

Related

Is there apt-get install in Buildroot? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Is there apt-get install analog command in Buildroot? I want to install some applicatin but how?
From documentation of BuildRoot:
Buildroot is not meant to be a distribution
(or rather, a distribution generator.) It is the opinion of most
Buildroot developers that this is not a goal we should pursue.
We prefer to push Buildroot in a direction that makes it easy
(or even easier) to generate complete root filesystems. This is what
makes Buildroot stands out in the crowd (among other things, of
course!) We believe that for most embedded Linux systems, binary
packages are not necessary, and potentially harmful.
So, It seems No! you can not do that by using apt. you need to directly add your packages based on documentation
By default in LINUX/UBUNTU Operating system is having apt-get installed so you can directly start using sudo apt-get install [Package Name that you want to install]

Software-center Ubuntu for libraries [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have installed the latest stable version of Ubuntu (Ubuntu 18.04.4 LTS).
I remarked that when I search for library like "Eigen or openMp", I have no result. However, in older Ubuntu versions, I could install lot of libraries. I know that I can install them via terminal, but I prefer to find them via the software-center. Is there a trick to let the software-center find such libraries ?
Some libraries receive updates to support latest ubuntu versions after a considerable period of time.What you can do is downloading the debian package from internet and install it using Ubuntu Software Manager.Visit the link below for more details.
vitux.com/3-ways-to-install-software-from-deb-packages-in-ubuntu/

Anaconda for linux 32 bit OS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
https://www.digitalocean.com/community/tutorials/how-to-install-anaconda-on-ubuntu-18-04-quickstart
Using this link,I followed steps and I could download Anaconda 64 bit, however my Computer OS is 32 bit. I am using Linux.
$ cd /tmp
$ curl -O https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
I want the link to Anaconda 32 bit after curl -O. In the Anaconda distribution link https://www.anaconda.com/distribution/#linux there are only python with 64 bit OS links.
Currently Python 2.7 is installed on my computer.
Please help.
Looking at https://repo.anaconda.com/archive it seems anaconda has stopped providing 32-bit x86 Linux packages. The latest 32-bit x86 Linux package seems to be https://repo.anaconda.com/archive/Anaconda2-2018.12-Linux-x86.sh
(You might want to consider upgrading to x86-64 Linux yourself as well, but that's a separate topic)

how do I know which package manager in installed on my linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I've received a linux-yocto box. I now I'm trying to installing some software, on ubuntu I use apt-get but it seems not to work/installe. so I've tried yum same result.
so my question is, is there a way to find out which package manager is install on my linux system ?
thanks in advance !
Yocto is using either rpm, dpkg, or opkg as the package manager. If the tools are installed on the image, which isn't a requirement, then the binaries are either dnf (or yum if it is a really old release), apt-get, or opkg respectively.
There's a reasonable chance that you've been given an image without a package manager or a working feed though. The joy of Yocto is that it is so flexible, so you should ask whoever gave you the software.

GHOST vulnerability fix for Debian 6 Squeeze [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I've been trying to update eglibc to fix a Debian 6 Squeeze system that is vulnerable to the GHOST exploit, but I haven't been able to so far.
I've gone through the relevant instructions here but my system still remains vulnerable. (I am checking vulnerability by running the script located here). My libc version after update is 2.11.3-4.
I notice that on Debian's Security Tracker that there is a fixed version of eglibc for eglibc on squeeze (lts), but not squeeze. I am running squeeze.
How can I fix my version of squeeze? Do I need to upgrade to squeeze (lts)? If so, is that a painful and involved process or a simple and easy process?
Much appreciated - thanks.
See a similar question on SO. You really do need to upgrade to Squeeze LTS, but it’s simple enough if you’re running i386 or amd64; the Debian wiki has all the info.
Get eglibc's source and compile to a .deb yourself.

Resources