Displaying 6 results from an estimated 6 matches for "debianinstaller".
2007 Mar 30
2
Installing packages
Hi,
I am new with Puppet and I am very glad using it, but I have a basic
doubt, when I use puppet to install packages to a debian machine with:
debian:/etc/puppet# cat manifests/packages/lm-sensors
package { lm-sensors:
ensure => installed
}
Does it run apt-get update before installing the package? If not how is
the best way to do it?
How Puppet deals with packages installations that
2018 May 28
1
Booting and installing from a Linux based ISO
Thank you Vinicius for quick answer, problem is i've my product ISO which i
want to use to install in a headless way, while these tutorials are talking
about interactive way of installing the basic debian system - which works
fine. Headless installation example i'm missing, if you have come across
any such example kindly mention.
Thank you.
On Mon, May 28, 2018 at 8:42 PM, Vin?cius Ferr?o
2011 Mar 06
3
[Bug 35049] New: Cannot use higher resolutions of monitor
https://bugs.freedesktop.org/show_bug.cgi?id=35049
Summary: Cannot use higher resolutions of monitor
Product: xorg
Version: git
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
2017 Mar 19
4
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
> Hi,
>
> Ady wrote:
> > http://repo.or.cz/syslinux.git/tree/HEAD:/diag
> > "handoff.bin
>
> This does not look like it would tell much of the properties in question.
> Nevertheless its print functions might be of interest for an isohybrid
> diagnostic MBR.
>
>
> > and at least 2 geodsp*.{bin,img(gz)}
>
> I am now reading
>
2009 May 03
1
blank screen with nouveau
I install nouveau from git (from overlay "nouveau"). But when i try start Xorg i have black screen and blinking cursor.
I use FX5200 (NV34).
Xorg.log
X.Org X Server 1.5.3
Release Date: 5 November 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.29-gentoo-r1 i686
Current Operating System: Linux localhost 2.6.29-gentoo-r2 #1 SMP PREEMPT Sat May 2 14:23:23 MSD 2009
2016 Nov 28
2
[PATCH] builder: Rearrange how template-building scripts work.
...License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-# The basic plan comes from:
-# http://honk.sigxcpu.org/con/Preseeding_Debian_virtual_machines_with_virt_install.html
-# https://wiki.debian.org/DebianInstaller/Preseed
-
-unset CDPATH
-export LANG=C
-set -e
-set -x
-
-if [ $# -ne 2 ]; then
- echo "$0 VERSION DIST"
- exit 1
-fi
-
-# Some configuration.
-version=$1
-dist=$2
-if [ "$dist" = "jessie" ]; then
- # Until virt-install learns about debianjessie.
- osvarian...