Displaying 20 results from an estimated 24 matches for "freebsd_install".
2013 Jun 28
2
FREEBSD_INSTALL failed with error 19 during booting installer
...R-E1R12N
with Intel Xeon E5-2640 CPU and 32 GB (4 x 8 ) KVR16R11D4/8HC installed
Currently I have only 2 SSD Kingston drives (working in mirror)
installed on that server.
during booting installer from the ISO CD (amd64), the boot process
fails with message:
Mounting from cd9660:/dev/iso9660/FREEBSD_INSTALL failed with error 19.
As I found here: http://forums.freebsd.org/showthread.php?t=36579 ,
probably this could be issue with ACPI, but setting option in loader:
# set debug.acpi.disabled ="hostres"
# boot
made nothing for me.
Any ideas?
Regards,
--
Marek Salwerowicz
2013 Jul 31
4
Booting FreeBSD
...t wheel 10056 Jul 31 08:12 mboot.c32*
And syslinux.cfg contains..
DEFAULT FreeBSD
LABEL FreeBSD
KERNEL mboot.c32
APPEND /boot/kernel/kernel
I create the ISO with..
mkisofs -JR -o /tmp/test.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -V FREEBSD_INSTALL /usr/obj/usr/src/release/bootonly /tmp/iso/
(/usr/obj/usr/src/release/bootonly is created by make release in FreeBSD)
Syslinux loads & runs fine (indeed I can use it to run cdboot.bin and that actually runs FreeBSD if I am on a CD but it does not grok HD booting) however mboot does not like /...
2017 Nov 21
2
[PATCH REPOST 1/2] common/mlstdutils: Add return statement.
No change, just reposting without the "for discussion" tag.
I think we should allow this as it seems like a nice coding style for
a limited subset of imperative-style code.
Rich.
2017 Nov 05
2
[PATCH 0/2] (mainly for discussion) Add ‘return’ statement.
When rewriting the heavily imperative original inspection code, I
longed for a ‘return’ statement so I could keep the new code as close
as possible to the original. OCaml of course does not have such a
statement, but it's relatively simply to implement it in the language.
The first patch does so, and the second patch rewrites a sample of the
inspection code to use it.
Rich.
2013 Jul 31
0
Booting FreeBSD
...> And syslinux.cfg contains..
> DEFAULT FreeBSD
> LABEL FreeBSD
> KERNEL mboot.c32
> APPEND /boot/kernel/kernel
>
> I create the ISO with..
> mkisofs -JR -o /tmp/test.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -V FREEBSD_INSTALL /usr/obj/usr/src/release/bootonly /tmp/iso/
>
> (/usr/obj/usr/src/release/bootonly is created by make release in FreeBSD)
>
> Syslinux loads & runs fine (indeed I can use it to run cdboot.bin and
> that actually runs FreeBSD if I am on a CD but it does not grok HD
> booting)...
2013 Jul 31
0
Booting FreeBSD
...t;
> And syslinux.cfg contains..
> DEFAULT FreeBSD
> LABEL FreeBSD
> KERNEL mboot.c32
> APPEND /boot/kernel/kernel
>
> I create the ISO with..
> mkisofs -JR -o /tmp/test.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -V FREEBSD_INSTALL /usr/obj/usr/src/release/bootonly /tmp/iso/
>
> (/usr/obj/usr/src/release/bootonly is created by make release in FreeBSD)
>
> Syslinux loads & runs fine (indeed I can use it to run cdboot.bin and that actually runs FreeBSD if I am on a CD but it does not grok HD booting) however mbo...
2015 Mar 16
0
[PATCH] inspection: add support for systemd .mount files
...NUP_FREE char *vfstype = NULL;
+
+ snprintf (augpath, sizeof augpath, "%s/Mount/What/value", *entry);
+ spec = guestfs_aug_get (g, augpath);
+ if (spec == NULL)
+ return -1;
+
+ /* Ignore /dev/fd (floppy disks) (RHBZ#642929) and CD-ROM drives.
+ *
+ * /dev/iso9660/FREEBSD_INSTALL can be found in FreeBSDs installation
+ * discs.
+ */
+ if ((STRPREFIX (spec, "/dev/fd") && c_isdigit (spec[7])) ||
+ STREQ (spec, "/dev/floppy") ||
+ STREQ (spec, "/dev/cdrom") ||
+ STRPREFIX (spec, "/dev/iso9660/"))
+...
2015 Mar 16
2
[PATCH] RFE: Inspection should support systemd mount units
Adds support for systemd .mount files, uses Augeas to extract mount points.
Fixes RHBZ#1113153.
Maros Zatko (1):
inspection: add support for systemd .mount files
src/inspect-fs-unix.c | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 240 insertions(+)
--
1.9.3
2008 Feb 29
1
FreeBSD 7.0 + Xen 3.1 + HVM: Success!
...0
Timecounter "TSC" frequency 2793128576 Hz quality 800
Timecounters tick every 1.000 msec
hptrr: no controller detected.
ad0: 102400MB <QEMU HARDDISK 0.8.2> at ata0-master WDMA2
acd0: CDROM <QEMU CD-ROM/0.8.2> at ata1-master PIO3
GEOM_LABEL: Label for provider acd0 is iso9660/FreeBSD_Install.
Trying to mount root from ufs:/dev/ad0s1a
FreeBSD 7.0 pciconf -vl:
hostb0@pci0:0:0:0: class=0x060000 card=0x00000000 chip=0x12378086
rev=0x02 hdr=0x00
vendor = 'Intel Corporation'
device = '82440/1FX 440FX (Natoma) System Controller'
class = bridge...
2013 Nov 28
3
[PATCH 1/3] inspect: recognise Debian live images as such
Check for filesystem.squashfs also in /live, since it is where
live-build places it.
---
src/inspect-fs-cd.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/inspect-fs-cd.c b/src/inspect-fs-cd.c
index 407e4f8..eaeaa6f 100644
--- a/src/inspect-fs-cd.c
+++ b/src/inspect-fs-cd.c
@@ -429,7 +429,8 @@ guestfs___check_installer_root (guestfs_h *g, struct inspect_fs *fs)
*
2008 Jun 30
0
FreeBSD 7.0 + Xen 3.1 + HVM: Success!
...28576 Hz quality 800
> Timecounters tick every 1.000 msec
> hptrr: no controller detected.
> ad0: 102400MB <QEMU HARDDISK 0.8.2> at ata0-master WDMA2
> acd0: CDROM <QEMU CD-ROM/0.8.2> at ata1-master PIO3
> GEOM_LABEL: Label for provider acd0 is iso9660/FreeBSD_Install.
> Trying to mount root from ufs:/dev/ad0s1a
>
>
> FreeBSD 7.0 pciconf -vl:
> hostb0@pci0:0:0:0: class=0x060000 card=0x00000000 chip=0x12378086
> rev=0x02 hdr=0x00
> vendor = 'Intel Corporation'
> device = '82440/1FX 440FX (Natoma) Syste...
2013 Jul 22
2
stopping amd causes a freeze
Occasionally stopping amd freezes my system. It's a rare occurrence,
and I haven't found a reliable way to reproduce it.
It's also a real freeze, so there's no way to get into the debugger
or grab a core dump. I only can perform the 4 seconds hard shutdown to
revive the system.
I run amd through sysutils/automounter, which is a scripting solution
that generates an amd.map file
2008 Sep 30
4
[FreeBSD] Fix for ServerWorks HT1000 in upcoming 7.1?
Hi,
I have a server (Dell PowerEdge SC1435, ServerWorks HT1000) on which
I'd like to try installing FreeBSD. I've already failed to make 7.0
work on this box and was wondering if you have information about the
behavior of the upcoming 7.1 on this hardware.
I've been following the "HT1000 chipset errata saga" thread, and the
commits by sos@ to CVS (around Jan 2008), but have
2012 Aug 02
1
Problem detecting Sil3124 SATA controllers off of Sandy Bridge northbridge-connected PCIe slots
...Fixed Direct Access SCSI-2 device
da0: Serial Number 070821D00B00
da0: 40.000MB/s transfers
da0: 76319MB (156301488 512 byte sectors: 255H 63S/T 9729C)
GEOM: da0: geometry does not match label (64h,33s != 255h,63s).
GEOM: da0: media size does not match label.
Trying to mount root from ufs:/dev/ufs/FreeBSD_Install [ro,noatime]...
start_init: trying /sbin/init
2017 Aug 09
0
[PATCH v12 09/11] daemon: Implement inspection of Linux and other Unix-like operating systems.
...None -> None
+ | Some spec, Some mp, Some vfstype ->
+ if verbose () then
+ eprintf "check_fstab_entry: spec=%s mp=%s vfstype=%s\n%!"
+ spec mp vfstype;
+
+ (* Ignore /dev/fd (floppy disks) (RHBZ#642929) and CD-ROM drives.
+ *
+ * /dev/iso9660/FREEBSD_INSTALL can be found in FreeBSD's
+ * installation discs.
+ *)
+ if (String.is_prefix spec "/dev/fd" &&
+ String.length spec >= 8 && Char.isdigit spec.[7]) ||
+ (String.is_prefix spec "/dev/cd" &&
+ String.length spec &...
2017 Jul 31
0
[PATCH v11 08/10] daemon: Implement inspection of Linux and other Unix-like operating systems.
...None -> None
+ | Some spec, Some mp, Some vfstype ->
+ if verbose () then
+ eprintf "check_fstab_entry: spec=%s mp=%s vfstype=%s\n%!"
+ spec mp vfstype;
+
+ (* Ignore /dev/fd (floppy disks) (RHBZ#642929) and CD-ROM drives.
+ *
+ * /dev/iso9660/FREEBSD_INSTALL can be found in FreeBSD's
+ * installation discs.
+ *)
+ if (String.is_prefix spec "/dev/fd" &&
+ String.length spec >= 8 && Char.isdigit spec.[7]) ||
+ (String.is_prefix spec "/dev/cd" &&
+ String.length spec &...
2017 Jun 12
1
[PATCH] UNFINISHED daemon: Reimplement most inspection APIs in the daemon.
This is the (incomplete) patch which reimplements inspection
APIs in the daemon. All ‘XXX’s in this patch indicate areas
which are not yet implemented or need further work.
Rich.
2017 Jul 21
10
[PATCH v10 00/10] Reimplement inspection in the daemon.
v9 was here:
https://www.redhat.com/archives/libguestfs/2017-July/msg00139.html
This depends on these three series (the first two being single minor
patches):
https://www.redhat.com/archives/libguestfs/2017-July/msg00207.html
https://www.redhat.com/archives/libguestfs/2017-July/msg00209.html
https://www.redhat.com/archives/libguestfs/2017-July/msg00215.html
There is no substantive change. I
2017 Jul 17
12
[PATCH v9 00/11] Reimplement inspection in the daemon.
This depends on the patch series
"[PATCH 00/27] Reimplement many daemon APIs in OCaml."
(https://www.redhat.com/archives/libguestfs/2017-July/msg00098.html)
v8 was posted here:
https://www.redhat.com/archives/libguestfs/2017-June/msg00274.html
v9:
- I split up the mega-patch into a more reviewable series of
smaller, incremental patches.
There are some other changes vs v8, but
2017 Aug 09
16
[PATCH v12 00/11] Reimplement inspection in the daemon.
This fixes almost everything. Note that it adds an extra commit which
fixes the whole utf8/iconv business.
It's probably better to list what isn't fixed:
(1) I didn't leave the osinfo code around because I'm still haven't
looked too closely at virt-builder-repository. Can't we just fetch
this code from the git history when we need it?
(2) I didn't change the way