I want to install linux-headers-generic in my raspberry pi. But I cannot the package via apt-get
pi#raspberrypi ~/Desktop $ uname -a
Linux raspberrypi 3.6.11+ #538 PREEMPT Fri Aug 30 20:42:08 BST 2013 armv6l GNU/Linux
I have installed wheezy-raspbian (i.e 2013-09-25-wheezy-raspbian)
I tried a lot but couldn't find it.
Please help me how can I get it.
Thanks in advance.
Related
How to install Yugabyte database on Windows 10?
The download page mentions only macOS and Linux: https://download.yugabyte.com/local
adding to #FranckPachot's comment, also you can download centos or any Linux OS images (VDI) files and open it through VmWare Player or HyperV from your windows laptop and create the VM and install the Yugabyte DB as mentioned from second step of his comment (i.e Sudo yum install -y python). Thanks.
There are two possibilities.
One is with Docker Desktop (https://hub.docker.com/editions/community/docker-ce-desktop-windows) and following the Docker installation.
The other is on the Windows Linux Subsystem (WSL) which runs Ubunto 20.04 LTS (installed from https://www.microsoft.com/store/productId/9N6SVWS3RX71).
I've installed it with this:
franck#YB-Franck:~$ uname -a
Linux YB-Franck 5.10.16.3-microsoft-standard-WSL2 #1 SMP Fri Apr 2 22:23:49 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
franck#YB-Franck:~$ sudo yum install -y python
franck#YB-Franck:~$ wget -qs https://downloads.yugabyte.com/releases/2.11.1.0/yugabyte-2.11.1.0-b305-linux-x86_64.tar.gz
franck#YB-Franck:~$ tar xvfz yugabyte-2.11.1.0-b305-linux-x86_64.tar.gz
franck#YB-Franck:~$ cd yugabyte-2.11.1.0/
franck#YB-Franck:~$ ./bin/post_install.sh
franck#YB-Franck:~$ ./bin/yugabyted start
But of course, use the latest version.
I installed easy_install on mac wityh the following command:
curl https://bootstrap.pypa.io/ez_setup.py -o - | sudo python
After that I tried to install pip but couldn't.
After checking here is what I have in /usr/bin
$ ls -l easy*
-rwxr-xr-x 2 root wheel 925 7 Jan 2016 easy_install
-rwxr-xr-x 1 root wheel 454 7 Jan 2016 easy_install-2.6
-rwxr-xr-x 1 root wheel 461 7 Jan 2016 easy_install-2.7
Probably it does not work because I have 2 versions installed now. I am in the list of sudoers but even with sudo I cannot delete these files:
sudo rm -f easy_install-2.6
Password:
rm: easy_install-2.6: Operation not permitted
When I log in to this macbook there is my username and also Administrator which I do not have access to now.
Is there a way to be able to delete these files without having to wait until the person that has the password for Administrator comes back from vacation?
Here is my macbook info
System Version: OS X 10.11.6 (15G31)
Kernel Version: Darwin 15.6.0
Boot Volume: Macintosh HD
Thanks
I've been trying to figure this all day and I've reached many dead-ends so I thought I reach out to the fine people here # stackoverflow.
Here's what I'm working against. I've had Python 3.5.1 installed into a Linux (Linux [xxx] 2.6.9-42.0.2.ELsmp #1 SMP Thu Aug 17 17:57:31 EDT 2006 x86_64 x86_64 x86_64 GNU/Linux) server I don't, or didn't at the time, have root access to. For what ever reason PIP was not included in the installation of Python (even though ever posting I've found about installing PIP for Python >3.4 insists it's installed by default).
I've tried installing installing PIP by using GET-PIP.py, but attempts to run get-ip.py gives a long run of errors (I can provide the errors, if it makes difference).
I've tried installing PIP by using ensurepip, but I'm blocked by the following error:
python -m ensurepip
Ignoring ensurepip failure: pip 7.1.2 requires SSL/TLS
even though I have OpenSSL installed,
openssl version
OpenSSL 0.9.7a Feb 19 2003
Unfortunately, I am stuck here. I don't know why PIP wasn't included in the Python 3.5.1 build, but I need to correct this. Any advise would be appreciated.
Dan
I get the exact same probelm and searching for solutions here.
You can try yum install pip
I installed the heroku-toolbelt to raspbian.
But heroku command fails.
heroku-toolbelt install:
$ wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
heroku command fails with
$ heroku login
Illegal instruction
! error getting commands pid 6630 exit 132
$ uname -a
Linux raspberrypi 3.12.22+ #691 PREEMPT Wed Jun 18 18:29:58 BST 2014 armv6l GNU/Linux
$ ruby --version
ruby 1.9.3p194 (2012-04-20 revision 35410) [arm-linux-eabihf]
You describe a situation but do not actually ask a question. I interpret the question in your post to be "Why does the heroku command exit with 'illegal instruction' error?".
The official debian "armhf" port targets the ARMv7 architecture (c.f. https://wiki.debian.org/ArmHardFloatPort#Supported_devices "Currently the Debian armhf port requires at least an ARMv7 CPU with Thumb-2 and VFP3D16.").
The first Raspberry Pi had an ARMv6 CPU. The Raspberry Pi foundation, and later the Raspbian creators, recompiled all debian packages from source for the ARMv6 CPU.
But they decided to keep the same "armhf" name. Probably because it is more effort to introduce a new name into the debian build system.
This works fine as long as you do not mix software package repositories. Raspbian installations' /etc/apt/sources.list files point to Raspberry Pi specific software package download server, that serve under the "armhf" name binaries compiled for ARMv6.
If you try to install an armhf package for the regular debian distribution, you will see this illegal instruction error as soon as the CPU is asked to execute an ARMv7 instruction that is not part of ARMv6.
The same is true for third-party armhf package compiled for the canonical meaning of "armhf", like this heroku toolbelt.
This is an old question, but maybe it helps others:
You could install the standalone heroku toolbelt for linux arm like it is described here: https://devcenter.heroku.com/articles/getting-started-with-php#set-up (select "Download standalone version of the Heroku CLI")
# Run this from your terminal.
# Replace OS with one of “linux”, “darwin”, “windows”, “freebsd”, “openbsd”
# Replace ARCH with one of “amd64”, “386” or “arm”
wget https://cli-assets.heroku.com/branches/stable/heroku-OS-ARCH.tar.gz
mkdir -p /usr/local/lib /usr/local/bin
tar -xvzf heroku-OS-ARCH.tar.gz -C /usr/local/lib
ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku
# ensure that /usr/local/bin is in the PATH environment variable
Unfortunately, the answer to this question did not answer my problem. :(
I have the following installed:
$ python
Python 2.7.5 (default, Mar 9 2014, 22:15:05)
$ brew install qt
Warning: qt-4.8.6 already installed
$ brew install pyqt
Warning: pyqt-4.11.1 already installed
$ brew install sip
Warning: sip-4.16.3 already installed
Then when I try to run bzr explorer, it returns the following:
$ bzr explorer
bzr: ERROR: No module named PyQt4
You may need to install this Python library separately.
I am running on Mac OS 10.9.x.
My /Users/me/.bazaar/plugins directory have the following:
$ ll
total 0
drwxr-xr-x 25 me staff 850 Oct 9 15:21 explorer
drwxr-xr-x 20 me staff 680 Oct 9 15:22 qbzr
What am I missing?