|
[20101222]
|
Microsoft offers download for NetBSD/eMIPS
NetBSD has quite a number of mirror sites, but I wasn't aware that
Microsoft
(yes, THE Microsoft) is also offering NetBSD for download:
``NetBSD for eMIPS - This download contains the ISO CD image for installing NetBSD 4.0.1 on an eMIPS processor system. The download works for the Xilinx XUP board and the Giano simulator.''
A bit dated, but hey! More information about the
"extensible MIPS" project is also available
on Microsoft's website.
Maybe it's time to update
my 2005 research WRT NetBSD at Microsoft?
(Thanks for the initial hint, Volkmar!)
[Tags: emips, iso, microsoft, mips]
|
|
[20090809]
|
Install NetBSD from a USB memory stick the easy way
Jared McNeill dropped me a mail to hint at
a project to create a bootable disk image from a NetBSD ISO image,
so he can easily install it on his EeePC. The script takes
an ISO file, and writes a disk image that can then be written on
a memory stick using dd(1).
See also
this blog posting
on creating disk images from NetBSD release files (not on ISO,
but therefore tested on i386 and shark :-).
Now who's going to integrate building of an install/full image into our release process?
And while there, also make a VMware image? :)
[Tags: cdrtools, dd, eeepc, image, iso]
|
|
[20090116]
|
Catching up on NetBSD source changes - Sep'08 to early Jan'09
OK, I'll try to catch up source-changes a bit more frequently
in the future (new years resolutions... don't we all have some?),
but here's what I've missed by now, from between September 2008
until now (early January 2009):
- In preparation of the NetBSD 5.0 release, a lot of documentation
updates were made, esp. in the release notes. Also, many manual
pages were added to the system, documenting existing userland
tools, library, system and internal interfaces.
- Following some re-organization of binary packages on ftp.NetBSD.org
some time ago, the official URLs are now:
- ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/{MACHINE}/{VERSION}/All
- ftp://ftp.NetBSD.org/pub/NetBSD/packages/current-packages/NetBSD/{MACHINE}/{VERSION}/All
Both should have the same results, the latter is more safe
on mirrors that don't carry /pub/pkgsrc. Adjust your PKG_PATHs!
- Syntax for /etc/rc.conf's ifconfig_xxN variables and /etc/ifconfig.xxN
was changed to also allow line breaks via ';'s. This allows
something like ifconfig_wi0="ssid 'my network'; dhcp"
- Martin Schuette's work on syslogNG from Google Summer of Code 2008
is now available in NetBSD's syslog
- X.org integration is advancing in big steps. It's on by default on
a number of platforms (including alpha, i386, macppc, shark, sparc and sparc64),
and instead of using the (now obsolete) MKXORG build variable
it can be build with "build.sh -x".
- Old-style LKMs are dead, welcome to the new module framework!
(XXX Documentation???) In the process, more and more kernel
subsystems are being changed to be loadable as a module, e.g.
POSIX AIO and semaphores, File System Snapshots,
emulations, exec formats, coredump, NFS client and server,
http and data accept filters, ppp compressors,
and others.
Hooks into UVM have been added to unload unused kernel modules
if memory is scarce.
- MAKEVERBOSE now has two new levels, 3 and 4. The complete list
is now:
- 0 Minimal output ("quiet")
- 1 Describe what is occurring
- 2 Describe what is occurring and echo the actual command
- 3 Ignore the effect of the "@" prefix in make commands
- 4 Trace shell commands using the shell's -x flag
The default remains MAKEVERBOSE=2, you can also set this via
build.sh's -N switch.
- A POSIX conformant tabs(1) utility was added
- The haad-dm branch was merged to NetBSD-current. This
adds Logical Volumen Management (LVM) functionality to
the base NetBSD system. It uses Linux LVM2 tools and our BSD licensed
device-mapper driver.
- The wrstuden-revivesa branch was merged into NetBSD-current,
bringing Scheduler Activation based threading back to NetBSD,
and giving NetBSD 5.0 and up both SA and 1:1 threads.
- Support for the ARM-based Cortina Systems SL3516 eval board was added
to NetBSD/evbarm
- patch(1) got a major overhaul, based on DragonflyBSD and OpenBSD.
There's better detection of double applied patches, rejected diffs
remain in unified diff format, and and less limitation e.g. on line
length.
- pxeboot now understands boot.cfg
- Boot CD ISO creation has been greatly overhauled, accomodating
changes in boot.cfg, and moving away from a ramdisk-based system
to using a file system on the cd-rom, which helps reduce RAM usage.
Also, the GENERIC kernel can be used there.
- makefs(8)'s ISO-9660 (cdrom) support was enhanced to write
RISC OS data. This allows to make bootable CDs for acorn{26,32}
directly, without copying the bootloader to a native file system.
- The christos-time_t branch has been merged into NetBSD-current.
This gives 64bit time_t and dev_t types (no more
year 2038-problem!!!).
Many related places like timeval and timespec were adjusted,
kernel and userland APIs were touched, and shared library
major versions (including libc) were bumped for this fairly
exhaustive change.
See src/UPDATING's entry on 20090110 for the full update path!
- New/updated drivers:
- jme(4) for JMicron Technologies JME250 Gigabit Ethernet and JME260 Fast Ethernet PCI Express controllers
- u3g(4) provides better support for 3G datacards than ugensa
- dbcool(4) for dbCool(tm) family of Thermal Monitor and Fan Controller
- ataraid(4) now supports Intel MatrixRAID and JMicron RAID
- bwi(4) for Broadcom BCM4302 wlan controllers, otherwise known as Airport Extreme
- alipm(4) for the Acer Labs M7101 Power Manage- ment controller
- admtemp(4) for the Analog Devices ADM1021, Analog Devices ADM1023, Analog Devices ADM1032, Genesys Logic GL523SM, Global Mixed-mode Technology G781, Maxim 1617, and Xeon embedded temperature sensors
- ipw(4),iwi(4),wpi(4),iwn(4): We ship the firmware now, but
users have to accept the Intel license manually by setting
sysctls like hw.ipw.accept_eula=1. The latter is also offered
by sysinst.
- nsp(4) adds support for the NSP2000 cryptographic processor
which does crypto, hashing and arbitrary precision arithmetics
in hardware, and which hooks into the opencrypto(9) interface.
- pseye(4) makes the Sony Playstation Eye USB webcam usable with
the new video(4) framework
- ath(4) now uses the recently-released source-based version
of the Atheros HAL, no more binary blob!
Whee... I should really do this more often to cut things down.
[Tags: acorn, ath, cortina, google-soc, iso, lkm, lvm, makefs, modules, patch, pkgsrc, posix, pxe, Release, sa, syslog, tabs, time_t, x.org]
|
|
[20080129]
|
Essential NetBSD 4.0/i386 Binary Packages + Install CD available
Citing my full
posting to netbsd-announce,
just because I can:
----------------------------------------------------------------------
Essential NetBSD 4.0/i386 Binary Packages + Install CD
----------------------------------------------------------------------
What is it?
The 3rd party software team of the NetBSD Project is proud to be able to
provide a CD with the installation files for NetBSD 4.0/i386 and a
collection of essential precompiled binary packages NetBSD 4.0/i386.
The packages on this CD are based on the pkgsrc-2007Q4 branch.
The CD's ISO image is available from:
ftp://ftp.NetBSD.org/pub/NetBSD/iso/4.0/i386pkg.iso.torrent
ftp://ftp.NetBSD.org/pub/NetBSD/iso/4.0/i386pkg.iso
The CD is bootable and contains all the install files for
the NetBSD 4.0/i386. To install binary packages from the CD,
mount it under (say) /cdrom, then run:
# PKG_PATH=/cdrom/packages/i386/All
# export PKG_PATH
# pkg_add -v bash
# pkg_add -v kde
# pkg_add -v firefox
# pkg_add -v openoffice2
Packages included on the CD are:
GConf-2.20.1 MesaLib-6.4.2nb3 ORBit2-2.14.10 SDL-1.2.12 Xaw3d-1.5Enb4
Xfixes-2.0.1nb4 Xft2-2.1.7nb3 Xrandr-1.0.2nb3 Xrender-0.9.0nb2
aalib-1.4.0.5nb2 adjustkernel-1.7 alpine-1.00nb1 ap22-fastcgi-2.4.2nb4
ap22-perl-2.0.3 ap22-php5-5.2.5nb1 apache-2.2.6nb2 apr-1.2.12
apr-util-1.2.10 arts-1.5.8 aspell-0.60.5 atk-1.20.0 bash-3.2.25
cairo-1.4.12 cdparanoia-3.0.9.8nb6 cdrtools-2.01.01.36 curl-7.17.1
cyrus-sasl-2.1.22 db4-4.5.20.2 dbus-1.0.2nb2 dbus-glib-0.74
digest-20070803 esound-0.2.38 expat-2.0.1 fam-2.7.0nb8
firefox-2.0.0.11 flac-1.2.1 fluxbox-1.0.0nb2 fontconfig-2.5.0
freetype2-2.3.5 fribidi-0.10.4nb1 fvwm-2.5.24 gail-1.20.2
gdbm-1.8.3nb1 ghostscript-8.60nb1 ghostscript-fonts-8.11nb1 gimp-2.4.3
glib-1.2.10nb10 glib2-2.14.4 glitz-0.5.6nb2 glu-6.4.2 glut-6.4.2
gmp-4.2.2 gnome-dirs-1.6 gnome-icon-theme-2.20.0nb1
gnome-keyring-2.20.2 gnome-vfs-2.20.1 gnome2-dirs-1.6 gnupg-1.4.7
gnutls-2.0.4 gqmpeg-0.91.1nb5 gqmpeg-skins-20030712nb4 grub-0.97nb8
gtk+-1.2.10nb9 gtk2+-2.12.3 gv-3.6.3 hicolor-icon-theme-0.10nb1
htdig-3.2.0b6 id3ed-1.10.4nb2 ilmbase-1.0.1 imap-uw-2006j2nb3
imlib-1.9.15nb4 irssi-0.8.12nb1 jasper-1.900.1nb1 jpeg-6bnb4
kde3-dirs-1.0 kdeaccessibility-3.5.8nb1 kdeadmin-3.5.8nb1
kdebase-3.5.8nb3 kdegames-3.5.8nb1 kdegraphics-3.5.8nb2
kdelibs-3.5.8nb2 kdemultimedia-3.5.8nb2 kdenetwork-3.5.8nb1
kdetoys-3.5.8nb1 kdeutils-3.5.8nb1 kdewebdev-3.5.8nb1 lame-3.97
lcms-1.16 libIDL-0.8.9 libao-0.8.8 libao-arts-0.8.8 libart-2.3.19nb1
libaudiofile-0.2.6nb1 libbonobo-2.20.1 libbonoboui-2.20.0
libcddb-1.3.0 libcdio-0.76nb4 libcfg+-0.6.2nb3 libcroco-0.6.1nb6
libexif-0.6.16 libgcrypt-1.2.4 libglade-2.6.2 libgnome-2.20.1.1
libgnomecanvas-2.20.1.1 libgnomeprint-2.18.2nb1
libgnomeprintui-2.18.1nb1 libgnomeui-2.20.1.1 libgpg-error-1.4nb2
libgphoto2-2.3.1nb4 libgsf-1.14.7nb2 libgtkhtml-2.6.3nb9 libidn-1.2
libmad-0.15.1bnb1 libogg-1.1.3 libpaper-1.1.22 librsvg-2.18.2nb2
libtasn1-0.3.9 libtheora-1.0beta2 libungif-4.1.4nb1 libusb-0.1.12nb2
libvorbis-1.2.0 libwmf-0.2.8.4nb4 libxml2-2.6.30 libxslt-1.1.22
links-2.1.0.31 lzo-2.02 mDNSResponder-108nb1 mng-1.0.10
mpg123-0.59.18nb9 mutt-1.5.17nb3 nas-1.9nb1 ncurses-5.6nb2
neon-0.26.3nb1 netpbm-10.34nb1 opencdk-0.6.6 openexr-1.6.1
openldap-client-2.3.39 openoffice2-2.3.1nb1 openslp-1.2.1nb1
p5-Compress-Raw-Zlib-2.008 p5-Compress-Zlib-2.008
p5-Config-IniFiles-2.38nb2 p5-Crypt-DES-2.05 p5-Crypt-SSLeay-0.57
p5-Curses-1.12nb1 p5-Curses-UI-0.95 p5-Curses-UI-POE-0.02801
p5-Data-Table-1.50 p5-Digest-1.15 p5-Digest-HMAC-1.01nb2
p5-Digest-MD5-2.36 p5-Digest-SHA1-2.11 p5-Event-1.09
p5-HTML-Parser-3.56 p5-HTML-Tagset-3.10 p5-IO-Compress-Base-2.008
p5-IO-Compress-Zlib-2.008 p5-IO-Socket-SSL-1.12 p5-IO-tty-1.02nb3
p5-MIME-Base64-3.07 p5-Net-1.22 p5-Net-SNMP-5.2.0 p5-Net-SSLeay-1.30
p5-POE-0.3202 p5-POE-Component-SNMP-1.07 p5-Pod-Escapes-1.04nb2
p5-Pod-Simple-3.05 p5-Socket6-0.19 p5-Sys-CpuLoad-0.03
p5-Term-ReadKey-2.30nb1 p5-Term-Size-0.2 p5-Test-Pod-1.26
p5-Time-HiRes-1.9706 p5-URI-1.35nb1 p5-enum-1.016 p5-libwww-5.808nb3
p5-pkgsrc-Dewey-1.0nb1 pango-1.18.3 pcre-7.4nb1 pdflib-4.0.3nb7
perl-5.8.8nb6 php-5.2.5 php5-gd-5.2.5 php5-imap-5.2.5nb1
php5-pdflib-5.2.5.2.0.3 php5-zlib-5.2.5 pico-4.10nb1 pine-4.64nb3
pkg_tarup-1.6.6 pkgdiff-0.119nb1 pkglint-4.81 pkgsurvey-0.0 png-1.2.23
poppler-0.6.2 poppler-qt-0.6.2 popt-1.10.7 py24-readline-0nb2
py24-xml-0.8.4nb2 python24-2.4.4 qca-tls-1.0nb3 qt3-libs-3.3.8nb7
readline-5.2 rp-pppoe-3.8nb1 rsync-2.6.9nb1 rxvt-2.7.10nb5
sane-backends-1.0.18 screen-4.0.3 shared-mime-info-0.22 speex-1.0.5
taglib-1.4nb2 tcsh-6.15.00 tiff-3.8.2nb3 transfig-3.2.5alpha7nb2
unzip-5.52nb3 uulib-0.5.20nb3 vcdimager-0.7.23nb2
vorbis-tools-1.1.1nb5 wget-1.10.2nb1 xautolock-1.15nb3
xcursor-1.1.2nb2 xdaemon-1.2 xdg-dirs-1.4 xenconsole-0.15b1.1nb1
xenkernel3-3.1.2nb1 xentools3-3.1.2 xentools3-hvm-3.1.2
xfig-3.2.5alpha5nb5 xine-arts-1.1.8nb1 xine-lib-1.1.8 xlockmore-5.25
xmlcatmgr-2.2nb1 xmp-2.0.4nb3 xteddy-1.1nb1 zonetab-0
Download
All binary packages available on this CD are also available for
individual download and/or direct installation via pkg_add(1) from the
NetBSD binary packages repository at the following URLs:
ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/i386/4.0_2007Q4/All/
ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/i386/4.0_2007Q4/vulnerable/
For easy installing of binary pkgs via pkg_add, be sure to set your
PKG_PATH env variable as appropriate:
# PKG_PATH=ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/i386/4.0_2007Q4/All/\;\
ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/i386/4.0_2007Q4/vulnerable
# export PKG_PATH
# pkg_add -v bash
# pkg_add -v kde
Documentation & Support
The binary packages included in this CD can be installed with the
pkg_add(1) command. If you need further help, try these resources on
the Internet:
* Mailing lists are NetBSD's primary support forum. For information,
send mail with "help" in body to majordomo@NetBSD.org, an archive of
all available mailing lists is available at
http://mail-index.NetBSD.org/.
Mailing lists are NetBSD's primary support forum, recommended lists
include:
* netbsd-help@NetBSD.org for general questions
* tech-pkg@NetBSD.org for package related questions
* Usenet Newsgroups: comp.unix.bsd.netbsd.misc, de.comp.os.bsd
* FTP download: The main repository for NetBSD packages is at
ftp://ftp.NetBSD.org/pub/NetBSD/packages/.
* WWW: Visit us at http://www.NetBSD.org/!
Legal Notice
Copyright (c) 2006-2008
The NetBSD Foundation. All rights reserved.
Redistribution and use of the ISO images are permitted provided that the
following conditions are met:
1. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
2. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by The NetBSD Foundation
and its contributors.
3. Neither the name of The NetBSD Foundation nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION AND ITS CONTRIBUTORS ``AS
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE NETBSD
FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
[Tags: i386pkg, iso, Release]
|
|
[20070216]
|
Test drive NetBSD 3.1 i386pkg CD
I'll need something to hand out at some roadshows soon, so I've assembled
a i386pkg CD with NetBSD 3.1 and packages from the pkgsrc-2006Q4 branch.
It's not perfect in that some binary packages are not available and thus
prevent installation e.g. of KDE, but that's what we have GNOME for,
right? ;)
Available files:
I'd appreciate if someone could setup some desktop machine and let me know
if anything substantial's missing. Thanks!
[Tags: iso, pkgsrc, releases]
|
|
[20060512]
|
Adding bootable kernel-only ISOs in addition to *.fs floppy images
I've been working and musing on bootable ISOs that don't use
floppy emulation for some time over the past few months,
mostly due to my work on g4u, which uses the new CD bootbloc
(bootxx_cd9660) and the in-tree mkisofs-replacement (makefs -t cd9660).
I've found many things where NetBSD's release build infrastructure
can be improved, and to make a start, I have collected the related
bits to offer bootable kernel-only ISOs in addition to *.fs floppy images.
Those that didn't pay attention^W^Whaven't followed the discusion
can read the
full proposal.
for all the details.
Now we'll see if someone finds this useful (or if I just go and
commit this, or lose interest over yet another pointless bikeshed
"discussion").
[Tags: hubertf, iso]
|
|
[20060215]
|
Stuff in the past few days
A few things not really visible on the surface happened in the past few
days:
- I've done a bit more work on the next version of
g4u, baseically moving
the whole build infrastructure to use NetBSD's new 'makefs -t cd9660'
and bootxx_cd9660
- While there, I've been working on a framework to
build bootf-cds (like the current bootfloppies, i.e.
just a small CD with a kernel and a ramdisk with sysinst, no install
sets).
The
latest version of the framework
works on i386 and amd, but it actually reinvents a wheel that's already
present twice in the NetBSD source tree. So I'll try to find more time
to think about the src/etc 'iso-image' target and esp. all the code
in src/distrib/cdrom before persuing this.
My current theory is that NetBSD needs to split the concept of
building a "release" into #1 the compiling of all the stuff in $RELEASEDIR,
and #2 the postprocessing (creating a bootable CD *with* install sets,
taring up sources, and making sure there's a pkgsrc snapshot there,
too). Maybe the source taring-up should even be moved to another step
#3 that's only done after performing step #2 *all* platforms.
We'll see when I find more time for this, or maybe if someone picks
it up...
- After NetBSD got permission from The Open Group and the IEEE to use
text from the POSIX(R) standard some time ago, I'm finally preparing
the
press release (available soon!) with them.
- Various other coordination stuff for the NetBSD booth at the
Chemnitz Linuxday is also taking ways too much time,
getting t-shirts and flyers and posters done.
[Tags: cdrom, g4u, ieee, iso, sus, theopengroup]
|
|
[20060203]
|
Essential NetBSD 3.0/sparc Binary Packages + Install CD (Updated)
I've made yet another ISO available, containing install sets
and binary packages for NetBSD 3.0/sparc this time. See
my posting for more information.
Update: The file is now also available
as
torrent - please use it!
[Tags: iso, packages, sparc]
|
|
[20060114]
|
'sup today
I've worked on a
sparcpkg-3.0.iso,
the biggest challenge was getting the ISO to boot.
Using a 'sunlabel' program built from "build.sh -m sparc tools"
helped - no idea what the one that's part of NetBSD/i386 is
good for.
I've also played a bit more with that "RSS aggregation" thing,
and after
planetplanet,
the thing that many "planet"-sites seem to use, didn't want to
recognize this blog's RSS feed (even when it works fine
elsewhere!), I have looked a bit more, and
rawdog
looked VERY promising. I just need a bit more time to customize
the layout, and then decide where to run this (it needs python).
[Tags: hubertf, iso, sparc]
|
|
[20060113]
|
amd64pkg now official
After some testing and updating, the amd64pkg-3.0.iso is now available,
see
my mail
for details, list of packages, url, etc.
[Tags: amd64, iso]
|
|
[20060106]
|
While we're at it: amd64pkg-3.0.iso available (Updated)
Manual made the binary pkgs, and I've ran the same scripts as for
i386. I have no real way (hardware) to test this, please do:
experimental amd64pkg-3.0.iso
(checksum). Please see the
README.amd64pkg-3.0.iso first!
After testing, let me know if this is worth persuing for the future...
(see also my
posting to the amd64 list).
Update: The amd64 packages were done by Jan, not Manuel. Sorry!
[Tags: amd64, iso, packages]
|
|
[20060106]
|
i386pkg-3.0 uploaded (Updated)
I finally found time to assemble the NetBSD 3.0 CDs and the
newly available NetBSD/i386 3.0 packages that Manuel uploaded
into a (one!) CD that has the install sets for NetBSD/i386 3.0
plus a set of "essential" (for some definition of 'essential'... :-)
packages on them. I've made the
README.i386pkg
available along with the 700MB ISO file... (I'm still waiting
for a bittorrent tracker to be setup, and won't provide a link
here to the actual ISO file. Shouldn't be hard to find :-)
Update:
Jeff Rizzo was fast in creating a bittorrent tracker
and you can download the file by pointing your favourite
bittorrent client at
the i386pkg-3.0.iso.torrent file
now. Have fun!
[Tags: i386, iso, packages]
|
|
[20060104]
|
NetBSD 3.0/cobalt restore CD available for download
After some more discussion, "Rowdy" has made the restore CD for
NetBSD 3.0/cobalt (or is that NetBSD/cobalt 3.0?)
available
now.
Read the above link for the general announce,
install instructions,
or download it from
ouellet.biz,
unix-boy.com,
openbsdsupport.org (um...?) or
no-ip.org.
[Tags: cobalt, iso, restore]
|
|
[20051205]
|
qemu saving the day: Extracting an ISO file w/o root
I had an ISO image from which I wanted to get at the files, but
writing to CD wasn't doable (too big for my 700MB CD-R), and mounting
was not possible as I don't have root on this machine. And I didn't
want to bother with moving the files to a machine where I have root.
So here's how qemu saved my day:
The initial plan was to use qemu to boot NetBSD from a CD(image), and then
mount my ISO, copy the files to a harddisk(image) and then move then over from
there using qemu's builtin network.
The two problems that I expected were: 1) how do I access a second
CDROM when I've booted from a first one (as I remembered qemu only being
able to handle one CDROM) and 2) will the qemu networking be fast enough
to move over a whole CD in finite time.
After some frobbing, the solution was even easier: I created a 2GB
harddisk file (just in case ;), and then ran qemu to boot from a NetBSD
install CD, with the harddisk file for wd0 and my ISO as wd1 (who said I
can't have a harddisk in ISO format :-):
% qemu -hda harddisk.qemu -hdb 4y.iso -cdrom i386cd.iso -boot d -m 32
After ^C'ing out of NetBSD's installer, I was able to mount the
ISO (on wd1) to work around the first problem outlined above:
# mount -o ro -t cd9660 /dev/wd1d /mnt
ls(1) etc. work fine, so how to get the files to the host side?
Frobbing qemu's internal networking is probably easy, but here's an
even easier solution:
# tar vcf /dev/wd0d /mnt/.
Who said I can't write a tar archive to the raw device? And as I
can access that "raw" device from the host side as my harddisk image,
all I need to do to unpack it is:
% tar vxf harddisk.qemu
Easy!
qemu rocks!!!
[Tags: iso, qemu]
|
|
[20050916]
|
Xen + Knoppix = Xenoppix
If it has any form of Linux and can boot from CD, that HAS to be
Knoppix, right? The only technical term there is for such a device
(*puke*). Following that idea, there's now a thing called
Xenoppix which is some
Knoppx/Linux based system that comes with NetBSD and Plan 9.
Still reminds me a lot of the
original
Xen live CD by the fine Xen folks themselves.
Future plans seem to be GNU/Hurd and OpenSolaris. I hope the latter
contains a more sane boot system than Sun's Solaris 10.
Found on Symlink.
[Tags: iso, live-cd, xen]
|
|
[20050911]
|
Bootable 3.0_BETA/sgimips CD
Following
these instructions
by Christopher Sekiya, Izumi Tsutsui has made a
NetBSD 3.0_BETA/sgimips bootable ISO (unfortunately without X sets
for now) available. See
Izumi's posting
for more information and download URL.
[Tags: iso, sgimips]
|
|
[20050714]
|
Updated Cobalt Restore-CD
Andreas Schaefer has updated the Cobalt Restore CD to
include recently discussed fixed. Check out the
release notes or
grab the 90MB-ISO either
from his site
(MD5)
or
from a mirror.
[Tags: cobalt, iso]
|
|
[20050421]
|
Xen 2.0.5 Live CD, with NetBSD, FreeBSD and Debian
The screenshot of Xen running several virtual machines with different
operating systems posted earlier
was made from a beta version of a Xen Live CD, which is now
officially released.
See the Xen download page to learn that the ISO is 720MB,
or go directly to the
SourceForge-based download page.
[Tags: iso, live-cd, xen]
|
|
[20050314]
|
Cobalt Restore CDs and Restore CD Mini-HowTo (Update #2)
After Alex Pelts has recently posted about his updated
Cobalt Restore CDs, he has written a
Restore CD Mini Howto now which describes how to update
the existing restore CD with some newer NetBSD release.
Update: Andreas Fuchs also has
documentation on how to install
Update #2: The HowTo is now also available on the NetBSD webpage.
NetBSD on a Cobalt Cube .
[Tags: cobalt, iso]
|
|
[20050305]
|
Cobalt restore CDs available
Alex Pelts has made restore CDs for the MIPS-based Cobalt (now Sun)
machines. The ISO images for both NetBSD 2.0 as well as 1.6.2 are
available via bittorrend, see his post to the port-cobalt list
for more information. Thanks Alex!
[Tags: cobalt, iso]
|
|
[20041214]
|
i386pkg ISO available (Update #2)
I forgot to move the i386pkg.iso file into place, but here it is now:
ftp://ftp.NetBSD.org/pub/NetBSD/iso/2.0/i386pkg.iso. It boots into sysinst, has all the
i386 install sets, and is filled to the rim with pkgs.
See the README.i386pkg
file for more details. And sorry this is a bit late!
Update: Permission problem with the checksum files, so here it
is until the checksum files are fixed:
MD5 (i386pkg.iso) = 038771fda4723ccc4d1dcbbe2b04323c
Update #2: A
i386pkg.iso.torrent
file is now available, too, for fast download with BitTorrent!
[Tags: i386, iso, packages]
|
|
[20041118]
|
NetBSD Live CD runs ACM Programming Contest
After a few days of silence from my side, now there's some
worthy news again today, about the ACM Regional Collegiate Programming
Contest which was hosted at Stevens Institute of Technology, which
is known for using NetBSD heavily. During the contest, a NetBSD-based
Live CD was used to provide all contestants the same environment
(with gcc/g++, Sun JDK, etc.). See
Jan Schaumann's report on the event, which has more links!
[Tags: acm, iso, live-cd]
|
|
|
Tags: ,
2bsd,
3com,
501c3,
64bit,
acl,
acls,
acm,
acorn,
acpi,
acpitz,
adobe,
Advocacy,
advocacy,
advogato,
aes,
afs,
aiglx,
aio,
airport,
alereon,
alex,
alix,
alpha,
altq,
am64t,
amazon,
amd64,
anatomy,
ansible,
apache,
apm,
apple,
arkeia,
arla,
arm,
art,
Article,
Articles,
ascii,
asiabsdcon,
asterisk,
asus,
atf,
ath,
atheros,
atmel,
audio,
audiocodes,
autoconf,
avocent,
avr32,
aws,
axigen,
backup,
banners,
basename,
bash,
bc,
benchmark,
bigip,
bind,
blackmouse,
bldgblog,
blog,
blogs,
blosxom,
bluetooth,
bonjour,
books,
boot,
boot-z,
bootprops,
bozohttpd,
bs2000,
bsd,
bsdca,
bsdcan,
bsdcertification,
bsdcg,
bsdforen,
bsdfreak,
bsdmac,
bsdmagazine,
bsdnexus,
bsdstats,
bsdtalk,
bsdtracker,
bug,
build.sh,
busybox,
buttons,
bzip,
c-jump,
c99,
cafepress,
callweaver,
camera,
candy,
capabilities,
card,
carp,
cars,
cauldron,
ccc,
ccd,
cd,
cddl,
cdrom,
cdrtools,
cebit,
centrino,
cephes,
cert,
certification,
cfs,
cgd,
cgf,
checkpointing,
china,
cisco,
cloud,
clt,
cobalt,
coccinelle,
codian,
colossus,
common-criteria,
community,
compat,
compiz,
compsci,
concept04,
config,
console,
contest,
copyright,
core,
cortina,
coverity,
cpu,
cradlepoint,
cray,
crosscompile,
crunchgen,
cryptography,
csh,
cu,
cuneiform,
curses,
curtain,
cuwin,
cvs,
cvs-digest,
cvsup,
cygwin,
daemon,
daemonforums,
danger,
darwin,
data,
date,
dd,
debian,
debugging,
dell,
desktop,
devd,
devfs,
devotionalia,
df,
dfd_keeper,
dhcp,
dhcpcd,
dhcpd,
dhs,
diezeit,
digest,
digests,
dilbert,
dirhash,
disklabel,
distcc,
dmesg,
Docs,
donations,
draco,
dracopkg,
dragonflybsd,
dreamcast,
dri,
driver,
drivers,
drm,
dsl,
dst,
dtrace,
dvb,
ec2,
eclipse,
eeepc,
eeepca,
ehci,
ehsm,
eifel,
elf,
em64t,
Embedded,
embedded,
emips,
emulate,
encoding,
envsys,
eol,
espresso,
etcupdate,
etherip,
euca2ools,
eucalyptus,
eurobsdcon,
eurosys,
Events,
exascale,
ext3,
f5,
facebook,
falken,
fan,
fatbinary,
features,
fefe,
ffs,
filesystem,
fileysstem,
firefox,
firewire,
fireworks,
flag,
flash,
flashsucks,
flickr,
flyer,
fmslabs,
force10,
fortunes,
fosdem,
fpga,
freebsd,
freedarwin,
freescale,
freex,
freshbsd,
friendlyAam,
friendlyarm,
fritzbox,
froscamp,
fsck,
fss,
fstat,
ftp,
ftpd,
fujitsu,
fun,
fundraising,
funds,
funny,
fuse,
fusion,
g4u,
g5,
galaxy,
games,
gcc,
gdb,
gentoo,
geode,
getty,
gimstix,
git,
gnome,
google,
google-soc,
gpio,
gpl,
gprs,
gracetech,
gre,
groff,
groupwise,
growfs,
grub,
gumstix,
guug,
gzip,
hackathon,
hackbench,
hal,
hanoi,
happabsd,
Hardware,
haze,
hdaudio,
heat,
heimdal,
hf6to4,
hfblog,
hfs,
history,
hosting,
hp,
hp700,
hpcarm,
hpcsh,
hpux,
html,
httpd,
hubertf,
hurd,
i18n,
i386,
i386pkg,
ia64,
ian,
ibm,
ids,
ieee,
ifwatchd,
igd,
iij,
image,
images,
information,
init,
initrd,
install,
intel,
interix,
internet2,
io,
ioccc,
iostat,
ipbt,
ipfilter,
ipmi,
ipsec,
ipv6,
irbsd,
irc,
irix,
iscsi,
isdn,
iso,
isp,
itojun,
jail,
jails,
java,
javascript,
jibbed,
jihbed,
jobs,
jokes,
journaling,
kame,
kauth,
kde,
kerberos,
kergis,
kernel,
keyboardcolemak,
kitt,
kmod,
kolab,
kylin,
l10n,
landisk,
laptop,
laptops,
law,
ld.so,
ldap,
lehmanns,
lenovo,
lfs,
libc,
license,
licensing,
links,
linksys,
linux,
linuxtag,
live-cd,
lkm,
localtime,
locate.updatedb,
logfile,
logging,
logo,
logos,
lom,
lte,
lvm,
m68k,
macmini,
macppc,
macromedia,
magicmouse,
mahesha,
mail,
makefs,
malo,
mame,
manpages,
marvell,
matlab,
maus,
mbr95,
mbuf,
mca,
mdns,
mediant,
mediapack,
meetbsd,
mercurial,
mesh,
meshcube,
mfs,
mhonarc,
microkernel,
microsoft,
midi,
mini2440,
miniroot,
minix,
mips,
mirbsd,
missile,
mit,
mobile-ip,
modula3,
modules,
mouse,
mp3,
mpls,
mtftp,
mult,
multics,
multilib,
multimedia,
music,
mysql,
named,
nas,
nat,
ncode,
ndis,
nec,
nemo,
neo1973,
netbook,
netboot,
netbsd,
netbsd.se,
nethack,
nethence,
netksb,
netstat,
networking,
neutrino,
nforce,
nfs,
nis,
npf,
npwr,
nroff,
nslu2,
nspluginwrapper,
ntfs-3f,
nullfs,
numa,
nvi,
nvidia,
nycbsdcon,
office,
ofppc,
ohloh,
olimex,
olpc,
onetbsd,
openat,
openbgpd,
openblocks,
openbsd,
opencrypto,
opengrok,
openmoko,
openoffice,
openpam,
opensolaris,
openssl,
oracle,
oreilly,
oscon,
osf1,
osjb,
packages,
pad,
pae,
pam,
pan,
panasonic,
parallels,
pascal,
patch,
patents,
pax,
paypal,
pc532,
pc98,
pcc,
pci,
pdf,
pegasos,
penguin,
performance,
pexpect,
pf,
pfsync,
pgx32,
php,
pike,
pinderkent,
pkg_install,
pkg_select,
pkgin,
pkglint,
pkgmanager,
pkgsrc,
pkgsrc.se,
pkgsrcCon,
pkgsrccon,
plathome,
pocketsan,
podcast,
pofacs,
politics,
polls,
polybsd,
portability,
posix,
postinstall,
power3,
powernow,
powerpc,
powerpf,
pppoe,
precedence,
preemption,
prep,
presentations,
prezi,
Products,
products,
proplib,
protectdrive,
proxy,
ps,
ps3,
psp,
pthread,
ptp,
ptyfs,
Publications,
puffs,
pxe,
qemu,
qnx,
qos,
qt,
quality-management,
quine,
quote,
quotes,
r-project,
radio,
radiotap,
raid,
raidframe,
rants,
raptor,
raq,
raspberrypi,
rc.d,
readahead,
realtime,
record,
refuse,
reiserfs,
Release,
releases,
releng,
reports,
resize,
restore,
ricoh,
rijndael,
rip,
riscos,
rng,
roadmap,
robopkg,
robot,
robots,
roff,
rootserver,
rotfl,
rox,
rs6k,
rss,
ruby,
rump,
rzip,
sa,
safenet,
san,
savin,
sbsd,
scampi,
scheduling,
sco,
screen,
script,
sdf,
sdtemp,
secmodel,
Security,
security,
sed,
segvguard,
seil,
sendmail,
sfu,
sge,
sgi,
sgimips,
sh,
sha2,
shark,
sharp,
shisa,
shutdown,
sidekick,
size,
slackware,
slashdot,
slit,
smbus,
smp,
sockstat,
soekris,
softdep,
software,
solaris,
sony,
source,
source-changes,
spanish,
sparc,
sparc64,
spider,
spreadshirt,
squid,
ssh,
sshfs,
ssp,
stereostream,
stickers,
studybsd,
subfile,
sudbury,
sudo,
summit,
sun,
sun2,
sun3,
sunfire,
sunpci,
support,
sus,
suse,
sushi,
susv3,
svn,
swcrypto,
symlinks,
sysbench,
sysinst,
sysjail,
syslog,
syspkg,
systat,
systrace,
sysupdate,
t-shirt,
tabs,
tanenbaum,
tape,
tcp,
tcp/ip,
tcpdrop,
tcpmux,
tcsh,
teamasa,
teredo,
termcap,
terminfo,
testdrive,
testing,
tetris,
tex,
TeXlive,
thecus,
theopengroup,
thin-client,
thinkgeek,
thorpej,
threads,
time,
time_t,
timecounters,
tip,
tme,
tmp,
tmpfs,
tnf,
toaster,
todo,
toolchain,
top,
torvalds,
toshiba,
touchpanel,
training,
tso,
ttyrec,
tulip,
tun,
tuning,
uboot,
udf,
ufs,
ukfs,
ums,
unetbootin,
unicos,
unix,
updating,
upnp,
uptime,
usb,
usenix,
useradd,
userconf,
userfriendly,
usermode,
usl,
utc,
utf8,
uucp,
uvc,
uvm,
valgrind,
vax,
vcfe,
vcr,
veriexec,
vesa,
video,
videos,
virtex,
vm,
vmware,
vnd,
vobb,
voip,
voltalinux,
vpn,
vpnc,
vulab,
w-zero3,
wallpaper,
wapbl,
wargames,
wasabi,
webcam,
webfwlog,
wedges,
wgt624v3,
wiki,
willcom,
wimax,
window,
windows,
winmodem,
wireless,
wizd,
wlan,
wordle,
wpa,
wscons,
wstablet,
x.org,
x11,
x2apic,
xbox,
xcast,
xen,
xfree,
xfs,
xgalaxy,
xilinx,
xkcd,
xlockmore,
xmms,
xmp,
xorg,
xscale,
youos,
youtube,
zaurus,
zdump,
zfs,
zlib
'nuff.
Grab the RSS-feed,
index,
or go back to my regular NetBSD page
Disclaimer: All opinion expressed here is purely my own.
No responsibility is taken for anything.