apt-get Questions
6
Solved
I am trying to install packages on my linux OS using the command apt-get install ....
The problem is that I get this error:
Selecting previously unselected package liberror-perl.
dpkg: unrecoverab...
7
Solved
I am trying to deploy kypo cyber range and am following its official guide. While deploying the whole range using ansible-playbook, I am stuck on above error:
TASK [docker : install prerequisites] ...
Natashianatassia asked 5/4, 2022 at 8:7
11
I am unable to perform sudo apt-get update on by Ubuntu EC2 instance.
When I run -
sudo apt-get update
I get the below error:-
Err:1 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu bionic InR...
Radioman asked 3/5, 2019 at 11:32
4
I'm using macOS 11.4 and Docker 3.3.3. My docker file looks like
FROM python:3.8.10-slim-buster
RUN apt-get update && apt-get install --no-install-recommends -y \
# dependencies for build...
Kyrstin asked 28/5, 2021 at 2:52
7
Solved
I'm trying to install chrome in a docker container. I execute:
RUN apt-get install -y wget
RUN wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-c...
Prune asked 2/2, 2022 at 12:4
9
If I want to build my Dockerfile, it can't connect to the network or at least DNS:
Sending build context to Docker daemon 15.95 MB
Sending build context to Docker daemon
Step 0 : FROM ruby
---&g...
6
I am trying to upgrade one of our docker base images to the latest stable version of Ubuntu. I have isolated the problem to a simple reproducible case. I have a Dockerfile like this:
FROM ubuntu:22...
Heath asked 15/6, 2022 at 0:19
14
Solved
I'm trying to install a package on a machine with no Internet connection. What I want to do is download all the packages and dependences on a machine WITH an Internet connection and then sneaker-ne...
Twaddle asked 7/12, 2012 at 4:10
4
I'm trying to apt-get update on my virtualmin (debian) but it fails with some package (packages.sury.org)
then I check the package with:
curl --verbose -SLO https://packages.sury.org/php/pool/mai...
Tellurate asked 14/5, 2020 at 0:57
9
Solved
Is it possible to somehow answer the questions that are presented as dialogs when installing some packages using apt-get?
For instance I'm trying to setup a container containing the mail-stack-del...
Kubetz asked 17/3, 2014 at 21:52
11
Solved
For my Ubuntu machine, I downloaded the latest version of Android SDK from this page.
After extracting the downloaded .tgz file, I was trying to search for installation instructions and found:
To ...
Mcduffie asked 1/1, 2016 at 14:17
10
Solved
I am trying to install wkhtmltopdf, but when I do:
sudo dpkg -i wkhtmltox-0.12.1_linux-trusty-amd64.deb
I get :
Preparing to unpack wkhtmltox-0.12.1_linux-trusty-amd64.deb ...
Unpacking wkhtmlt...
Mcquoid asked 8/7, 2016 at 8:29
5
I really hope you can help me as i've tried to find a solution myself for like 3 hours or so.
I basically went through every stackoverflow post there was regarding this.
What i'm trying to do is i ...
4
Solved
I have dropped fglrx from my notebook and return to the free drivers but xfce4-power-manager fails to start. it was a known bug
I got apt-get source, apply the patch, build and install it. now all...
6
Solved
I have the following content on my Dockerfile:
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y python-pip libmysqlclient-dev
And I got this output:
Step 4 : RUN apt-get install -y...
30
Solved
I'm working on a Ubuntu system and currently this is what I'm doing:
if ! which command > /dev/null; then
echo -e "Command not found! Install? (y/n) \c"
read
if "$REPLY" =...
7
Solved
I had no java (i.e. java -version said java no found or similar)
I installed it like this:
sudo apt-get install default-jre
This results in installing java 1.6 - I need java 1.7
So the next pr...
3
Solved
I need to install this specific python version, to prepare a developer environment, because I'm maintaining a system with multiple libraries based on python 3.6.9.
I recently installed Ubuntu 22.04...
Davena asked 3/5, 2022 at 16:17
2
Solved
When I run docker-compose up to install our MySQL server, I get the following error:
RUN apt-get -y update && apt-get upgrade -y:
/bin/sh: apt-get: command not found
from the relevant dock...
Hypertension asked 12/7, 2022 at 3:14
7
Solved
I was installing the Google Cloud SDK on my Ubuntu VM using the following commands
# Add the Cloud SDK distribution URI as a package source
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gp...
Congener asked 20/6, 2019 at 4:55
20
Solved
I've been trying to run Docker build on various files which previously worked before, which are now no longer working.
As soon as the Docker file included any line that was to install software it ...
3
Solved
I've got an issue here with Ubuntu 14.04
Whenever I do an apt-get upgrade, if docker-engine is eligible for upgrade, it restarts the service after upgrading. This causes the containers to get rest...
2
Solved
I have a problem installing docker on my virtual machine.
I have followed the steps below:
1. Older versions of Docker were called docker, docker.io, or docker-engine. If these are installed,...
2
Solved
I've installed Debian 7 and just executed sudo apt-get update and got this error:
Sorry, user xsma is not allowed to execute '/usr/bin/apt-get update' as root on ACS.ACS
my user is "xsma" and "...
5
Solved
I'm currently getting into Linux and want to write a Bash script which sets up a new machine just the way I want it to be.
In order to do that I want to install different things on it, etc.
What I'...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.