autoinstall question

2021-01-07 Thread Jerry Geis
This document : The obvious data file we have to add to the ISO is our autoconfigure file. However, it has to be set up in a directory for itself and a companion file, and each has to be called special names. Let's say that the directory within the ISO that we're going to use for this is called

Trying autoinstall

2021-01-07 Thread Jerry Geis
So I have this file: #cloud-config autoinstall: version: 1 early-commands: - echo a - sleep 1 - echo a locale: en_US refresh-installer: update: no user-data: timezone: America/New_York debconf-selections: eek network: network: version: 2 ethernets:

Re: Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Jerry Geis
Correct. I am trying to determine the correct disk vda/sda/nvme and then the size. blockdev --getsz /dev/vda in the %pre section did nothing. Perhaps something is not available yet at boot for this to work. Jerry -- Ubuntu-devel-discuss mailing list Ubuntu-devel-discuss@lists.ubuntu.com Modify

Re: Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Ko Ko Ye`
Thank you - however this does not seem to be true. I am a long time CentOS user - and this document seems good for CentOS. - noted However- just something like "editors" that are supposed to be available it says Vi. It is not available on Ubunutu duing install only nano. - ithink tiny vim and

Re: Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Ko Ko Ye`
VDA for Virtual you must be test hda / sda On Thu, Jan 7, 2021 at 10:46 PM Jerry Geis wrote: > doesnt seem blockdev --getsz /dev/vda is available at %pre time either. > > jerry > > -- with regards *Ko Ko Ye`* +95 97989 22022 +95 94500 22022 +95 9731 47907 kokoye2...@gmail.com

Re: Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Jerry Geis
doesnt seem blockdev --getsz /dev/vda is available at %pre time either. jerry -- Ubuntu-devel-discuss mailing list Ubuntu-devel-discuss@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss

Re: curl in Debian behind latest version?

2021-01-07 Thread Thomas Ward
If you are intending to target the Debian versions, you're in the wrong mailing list, as this is for Ubuntu. For Ubuntu, this may be relevant: https://askubuntu.com/questions/151283/why-dont-the-ubuntu-repositories-have-the-latest-versions-of-software Thomas On 1/6/21 9:07 PM, Paul Hoffman

curl in Debian behind latest version?

2021-01-07 Thread Paul Hoffman
Greetings. curl in debian is at version 7.68, but it has been updated several times since then. Is there a reason that the Debian package hasn't been updated? If so, where can I track that conversation? --Paul Hoffman -- Ubuntu-devel-discuss mailing list Ubuntu-devel-discuss@lists.ubuntu.com

Bug#979436: resolvconf: Missing cleanup for obsolete dnscache conffile

2021-01-07 Thread Guillem Jover
Package: resolvconf Version: 1.86 Severity: normal Hi! This package used to ship the /etc/resolvconf/update.d/dnscache conffile, which stopped being shipped in version 1.75, but the conffile was never cleaned up in the maintainer scripts, so it is left behind in the system and marked as obsolete

Bug#979431: resolvconf: Unconditional use of systemctl

2021-01-07 Thread Guillem Jover
Package: resolvconf Version: 1.86 Severity: normal Hi! This package makes unconditional use of systemctl in at least the /etc/dhcp/dhclient-enter-hooks.d/resolvconf script, which on a sysvinit system then shows the following message: ,--- /sbin/dhclient-script: 19:

Bug#979431: marked as done (resolvconf: Unconditional use of systemctl)

2021-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 06 Jan 2021 18:08:07 + with message-id and subject line Bug#979431: fixed in resolvconf 1.87 has caused the Debian Bug report #979431, regarding resolvconf: Unconditional use of systemctl to be marked as done. This means that you claim that the problem has been dealt

Re: Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Jerry Geis
Thank you - however this does not seem to be true. I am a long time CentOS user - and this document seems good for CentOS. However- just something like "editors" that are supposed to be available it says Vi. It is not available on Ubunutu duing install only nano. However - looks like blockdev

Re: Ubuntu 20.04 kickstart

2021-01-07 Thread Jerry Geis
Thanks - I started with autoinstall. I could not get it to recognize anything for autoinstall. Wasnt till I switched to legacy and kickstart that I made progress. Jerry -- Ubuntu-devel-discuss mailing list Ubuntu-devel-discuss@lists.ubuntu.com Modify settings or unsubscribe at:

Re: Ubuntu 20.04 kickstart

2021-01-07 Thread Dimitri John Ledkov
live supports autoinstall with simple yaml files to describe the install which are a lot more simple than either kickstart or preseed. Have you looked into https://ubuntu.com/server/docs/install/autoinstall and does that at all fit your needs? Alternatively if you have more than 3 servers to

Re: Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Ko Ko Ye`
https://unix.stackexchange.com/questions/131690/what-commands-are-available-in-the-pre-section-of-a-kickstart-file-on-centos On Thu, Jan 7, 2021 at 8:54 PM Jerry Geis wrote: > How do you "detect" disks in the %pre section of kickstart ??? > > I have tried fdisk - command not available > I

Kickstart how to detect disks 20.04 LTS

2021-01-07 Thread Jerry Geis
How do you "detect" disks in the %pre section of kickstart ??? I have tried fdisk - command not available I tried ln busybox to fdisk and it says applet not available. I tried dmesg | grep vda and dmesg | grep sda - seems as linux has not yet detected teh disk during the pre section... So how

Re: Ubuntu 20.04 kickstart

2021-01-07 Thread Ko Ko Ye`
Hi Jerry I am not sure about fdisk and relative for current storage. I will test your last email script. with regards. https://help.ubuntu.com/lts/installation-guide/amd64/apbs04.html https://help.ubuntu.com/lts/installation-guide/amd64/apb.html