Displaying 18 results from an estimated 18 matches for "debian_frontend".
2017 Apr 19
4
difficulty in Ubuntu 14.04 apt-getting R 3.3.2
...e installed
Any help in resolving this would be appreciated.
Additional information: while I need R 3.3.2 for historical purposes, when
I substitute 3.3.2 with 3.3.3 in the Dockerfile, the image builds
successfully.
Thanks!
Jen
Dockerfile:
FROM ubuntu:14.04
RUN apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get install -y
--no-install-recommends software-properties-common && \
apt-add-repository "deb http://cran.r-project.org/bin/linux/ubuntu
trusty/" && \
apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get...
2017 Apr 19
0
difficulty in Ubuntu 14.04 apt-getting R 3.3.2
...ving this would be appreciated.
|
| Additional information: while I need R 3.3.2 for historical purposes, when
| I substitute 3.3.2 with 3.3.3 in the Dockerfile, the image builds
| successfully.
|
| Thanks!
|
| Jen
|
| Dockerfile:
|
| FROM ubuntu:14.04
|
| RUN apt-get update && \
| DEBIAN_FRONTEND="noninteractive" apt-get install -y
| --no-install-recommends software-properties-common && \
| apt-add-repository "deb http://cran.r-project.org/bin/linux/ubuntu
| trusty/" && \
| apt-get update && \
| DEBIAN_FRONTEND="noninteractive&quo...
2016 Jun 07
1
[PATCH] customize: Add --uninstall operation.
...ncat " " (List.map quote packages) in
+ match g#inspect_get_package_management root with
+ | "apk" -> sprintf "apk del %s" quoted_args
+ | "apt" ->
+ (* http://unix.stackexchange.com/questions/22820 *)
+ sprintf "
+ export DEBIAN_FRONTEND=noninteractive
+ apt_opts='-q -y -o Dpkg::Options::=--force-confnew'
+ apt-get $apt_opts update
+ apt-get $apt_opts remove %s
+ " quoted_args
+ | "dnf" -> sprintf "dnf -y remove %s" quoted_args
+ | "pisi" -> sprin...
2015 Mar 18
0
Re: Would this be considered a ubuntu or libguestfs issue?
...--firstboot-command 'apt-get -y update ; apt-get -y upgrade'
It may be there is some other method based on persuading the systemd
post script not to run, or not to try talking to the init process ...
Note that --update is just a convenient shorthand for:
--run-command '
export DEBIAN_FRONTEND=noninteractive
apt_opts="-q -y -o Dpkg::Options::=--force-confnew"
apt-get $apt_opts update
apt-get $apt_opts upgrade
'
You can play around with that command until you get something that
works better.
> Errors were encountered while processing:
> /var/cache/...
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
On 8 July 2024 at 19:32, marcoblanchette at icloud.com wrote:
| Oh, again, sorry for the spam but the problem Lauren is seeing is when she is
| trying to sign the key. Installing gnugpg usually takes care of that problem.
I am not sure about that.
For jammy, my current (and used) rocker/r2u:jammy Dockerfile is
https://github.com/rocker-org/r2u/blob/master/jammy/Dockerfile
and it does what
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
No sure why you?re doubting me but if one would like the minimal Dockerfile following the CRAN recommendations at https://cloud.r-project.org/bin/linux/ubuntu/, one would simply do
FROM ubuntu:22.04
USER root
ENV DEBIAN_FRONTEND noninteractive
## Configure Ubuntu for R install
RUN apt update \
&& apt install -y --no-install-recommends \
software-properties-common \
gnupg2 \
wget \
&& wget -q -O - https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc \
| tee -a /etc/apt/tr...
2015 Mar 18
2
Re: Would this be considered a ubuntu or libguestfs issue?
On 03/17/2015 05:52 PM, Richard W.M. Jones wrote:
> On Tue, Mar 17, 2015 at 11:49:02AM -0400, Lee Revell wrote:
>> virt-builder on a ubuntu guest when passed --update fails with
>> "Unable ls -al to connect to Upstart":
>>
>> https://www.nesono.com/node/368
>
> Possibly a libguestfs bug. What is the full debug output? What
> version of Ubuntu? What
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...n cloud.r-project.org which necessitated us to use M. Rutter PPA).
Here?s our current r-base Dockerfile which, as I said, also install a couple commonly used libs in R packages and the step to install Bio Conductor base package (if you don?t use BioC, delete it):
FROM ubuntu:22.04
USER root
ENV DEBIAN_FRONTEND noninteractive
# Configure Ubuntu for R install
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
software-properties-common \
gnupg2 \
wget \
build-essential \
libcurl4-openssl-dev \
libxml2-dev \
&& wget -q -O - https://cloud.r-p...
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...n cloud.r-project.org which necessitated us to use M. Rutter PPA).
Here?s our current r-base Dockerfile which, as I said, also install a couple commonly used libs in R packages and the step to install Bio Conductor base package (if you don?t use BioC, delete it):
FROM ubuntu:22.04
USER root
ENV DEBIAN_FRONTEND noninteractive
# Configure Ubuntu for R install
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
software-properties-common \
gnupg2 \
wget \
build-essential \
libcurl4-openssl-dev \
libxml2-dev \
&& wget -q -O - https://cloud.r-p...
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...n cloud.r-project.org which necessitated us to use M. Rutter PPA).
Here?s our current r-base Dockerfile which, as I said, also install a couple commonly used libs in R packages and the step to install Bio Conductor base package (if you don?t use BioC, delete it):
FROM ubuntu:22.04
USER root
ENV DEBIAN_FRONTEND noninteractive
# Configure Ubuntu for R install
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
software-properties-common \
gnupg2 \
wget \
build-essential \
libcurl4-openssl-dev \
libxml2-dev \
&& wget -q -O - https://cloud.r-p...
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi Dirk,
Thank you so much for looking into this when you got home. I greatly appreciate it.
I was actually in the midst of writing to everyone the following message:
?.
?.
?.
Hi All,
I have some good news. ? My docker image is now up-to-date with R version 4.4.1.
I first had to clear a bunch of unused data using docker system prune ?force. Apparently, it cleared over 32.53 gigs of data, and
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...ning and it builds fine with R 4.4.1
The last RUN is for installing a bit of custom configuration as well as the base of Bio Conductor.
Hope this helps (I also have a Dockerfile for building from source if you care to have the minimal footprint in your images).
FROM ubuntu:22.04
USER root
ENV DEBIAN_FRONTEND noninteractive
## Configure Ubuntu for R install
RUN apt-get update \
&& apt install -y --no-install-recommends \
software-properties-common \
dirmngr \
gnupg2 \
wget \
build-essential \
libcurl4-openssl-dev \
libxml2-dev \
&& wget -q -O - https:...
2018 Sep 19
2
virt-customize is very slow in ubuntu 18.04/centos 7.5
...: aug_save = 0
[ 312.3] Uninstalling packages: cloud-init
libguestfs: trace: inspect_get_package_management "/dev/sda1"
libguestfs: trace: inspect_get_package_management = "apt"
libguestfs: trace: sh "exec >>'/tmp/builder.log' 2>&1\n\n\n\n export
DEBIAN_FRONTEND=noninteractive\n apt_opts='-q -y -o
Dpkg::Options::=--force-confnew'\n apt-get $apt_opts remove
'cloud-init'\n \n"
guestfsd: main_loop: proc 25 (aug_save) took 0.00 seconds
guestfsd: main_loop: new request, len 0xf0
commandrvf: stdout=n stderr=n flags=0x0
com...
2013 Nov 25
6
[PATCH/RFC OSSTEST] Debian PV netboot guest test
...39;$gho->{Name}''
+memory = ${ram_mb}
+#
+kernel = "/tmp/di_kernel"
+ramdisk = "/tmp/di_initrd"
+extra = "debian-installer/exit/always_halt=true -- console=hvc0 auto-install/enable=true hostname=$gho->{Name} domain=$c{TestHostDomain} url=$ps_url DEBIAN_FRONTEND=text netcfg/dhcp_timeout=150 netcfg/choose_interface=eth0"
+#
+vif = [ ''mac=$gho->{Ether}'' ]
+#
+on_poweroff = ''preserve''
+on_reboot = ''$onreboot''
+on_crash = ''preserve''
+#
+vcpus = $vcpus
+#
+disk =...
2024 Jul 08
2
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Hi All,
I am building a Docker image that uses Ubuntu 22.04 and am having issues installing the latest version of R (R 4.4.1). The current R version is 4.1.2:
:/# apt-cache policy r-base-core
r-base-core:
Installed: 4.1.2-1ubuntu2
Candidate: 4.1.2-1ubuntu2
Version table:
*** 4.1.2-1ubuntu2 500
500 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages
100
2017 Sep 21
19
Call for testing: OpenSSH 7.6
Hi,
OpenSSH 7.6p1 is almost ready for release, so we would appreciate testing
on as many platforms and systems as possible. This is a bugfix release.
Snapshot releases for portable OpenSSH are available from
http://www.mindrot.org/openssh_snap/
The OpenBSD version is available in CVS HEAD:
http://www.openbsd.org/anoncvs.html
Portable OpenSSH is also available via git using the
instructions at
2014 Mar 18
2
[PATCH] customize: Move virt-customize-related code to a separate
There's not going to be an easy way to present this patch. It's huge
and interconnected.
Anyway, what it does is lay the groundwork for a new tool which I'm
calling 'virt-customize'. virt-customize is virt-builder, but without
the part where it downloads a template from a respository. Just the
part where it customizes the template, that is, installing packages,
editing
2013 Jan 26
0
Processed: switching email address
...modifies conffiles (policy 10.7.3): /etc/psad/psad.conf
Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>'
> submitter 501794 !
Bug #501794 [debconf] /usr/sbin/dpkg-reconfigure: --frontend should override DEBIAN_FRONTEND setting from environment
Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>'
> submitter 665217 !
Bug #665217 [ensembl] ensembl: fails to install: tries to enable mod_perl unconditionally
Warning: Unknown p...