"Michael Ross" wrote:
> Am 17.08.2011, 15:59 Uhr, schrieb Julian H. Stacey :
>
> > Hi,
> > Reference:
> >> From: "Michael Ross"
> >> Date: Wed, 17 Aug 2011 15:28:41 +0200
> >> Message-id:
> >
> > "Michael Ross" wrote:
> >> Am 17.08.2011, 14:55 Uhr, schrieb Julian
Am 17.08.2011, 15:59 Uhr, schrieb Julian H. Stacey :
Hi,
Reference:
From: "Michael Ross"
Date: Wed, 17 Aug 2011 15:28:41 +0200
Message-id:
"Michael Ross" wrote:
Am 17.08.2011, 14:55 Uhr, schrieb Julian H. Stacey :
> Lars Eighner wrote:
> ftp protocol does not suppo
"Julian H. Stacey" writes:
> Hi,
> Reference:
>> From:"Michael Ross"
>> Date:Wed, 17 Aug 2011 15:28:41 +0200
>> Message-id:
>
> "Michael Ross" wrote:
>> Am 17.08.2011, 14:55 Uhr, schrieb Julian H. Stacey :
>>
>> > Lars Eighner wrote:
>> > ftp protocol does n
Hi,
Reference:
> From: "Michael Ross"
> Date: Wed, 17 Aug 2011 15:28:41 +0200
> Message-id:
"Michael Ross" wrote:
> Am 17.08.2011, 14:55 Uhr, schrieb Julian H. Stacey :
>
> > Lars Eighner wrote:
> > ftp protocol does not support command du, so one can't see size of
> >
Am 17.08.2011, 14:55 Uhr, schrieb Julian H. Stacey :
Lars Eighner wrote:
ftp protocol does not support command du, so one can't see size of
ftp://ftp.freebsd.orgpub/FreeBSD/ports/amd64/packages-8.2-release/All/
My FTP client shows it at about 32GB total.
Michael
___
On Wed, Aug 17, 2011 at 10:56:35AM +0100, Rui Silva typed:
> Hi,
>
> I want to install FreeBSD for the first time but I have some doubts
> regarding the ISO images.
>
> I have downloaded an ISO image (FreeBSD-8.2-RELEASE-i386-dvd1.iso)
> via torrent, but soon reali
Lars Eighner wrote:
> On Wed, 17 Aug 2011, Rui Silva wrote:
>
> > Hi,
> >
> > I want to install FreeBSD for the first time but I have some doubts
> > regarding
> > the ISO images.
> >
> > I have downloaded an ISO image (FreeBSD-8.2-RELEASE-i386-dv
On Wed, Aug 17, 2011 at 10:56 AM, Rui Silva wrote:
> Hi,
>
> I want to install FreeBSD for the first time but I have some doubts
> regarding the ISO images.
>
> I have downloaded an ISO image (FreeBSD-8.2-RELEASE-i386-**dvd1.iso) via
> torrent, but soon realised that the pa
On Wed, 17 Aug 2011, Rui Silva wrote:
Hi,
I want to install FreeBSD for the first time but I have some doubts regarding
the ISO images.
I have downloaded an ISO image (FreeBSD-8.2-RELEASE-i386-dvd1.iso) via
torrent, but soon realised that the packages collection was very poor when
Hi,
I want to install FreeBSD for the first time but I have some doubts
regarding the ISO images.
I have downloaded an ISO image (FreeBSD-8.2-RELEASE-i386-dvd1.iso)
via torrent, but soon realised that the packages collection was very
poor when compared to "ftp://ftp.freebsd.or
On Wed, 23 Mar 2011 13:49:46 -0500, Ryan Coleman
wrote:
> I have a folder full of ISOs that we're sharing on the
> network instead of having the discs available (seems
> like a good idea, right?)
Please use the correct terminology: FreeBSD (as any UNIX
operating systems) calls them DIRECTORIES.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 3/23/11 2:49 PM, Ryan Coleman wrote:
> I have a folder full of ISOs that we're sharing on the network instead of
> having the discs available (seems like a good idea, right?)
>
> But I want to automate the process on boot instead of having to writ
On Wed, 23 Mar 2011 14:24:43 -0700, Chuck Swiger wrote:
> While I agree with this suggested change from the perspective
> of only doing work if you actually need to do it, note that
> "mkdir -p" doesn't return an error if the directory already
> exists. :-)
You're telling this to a man who check
On Mar 23, 2011, at 2:21 PM, Polytropon wrote:
> Prefix it with a test:
>
> [ -d /mount/office_files/images/${DEST} ] && mkdir...
> mount...
>
> so there will be no error if the script is started for the
> second time (and the directories still exist), means: create
> them only if not
On Wed, 23 Mar 2011 14:17:38 -0700, Chuck Swiger wrote:
> Ah, yes-- add "mkdir -p /mount/office_files/images/${DEST}" before the mount
> command.
> Someone else mentioned a use of basedir command
Prefix it with a test:
[ -d /mount/office_files/images/${DEST} ] && mkdir...
mo
On Mar 23, 2011, at 1:06 PM, Ryan Coleman wrote:
> I am also trying to make the directories right before the attempt to mount
> the image (a 'duh' moment just now).
> So I'd like to have just the filename, not the full path, made as a folder...
Ah, yes-- add "mkdir -p /mount/office_files/images
On Wed, 23 Mar 2011 16:05:12 -0500, Ryan Coleman
wrote:
> I did try that once and it didn't strip the directory structure
> out so when basename worked I didn't mess with it too much.
I've just checked - you're right. While `basename` works
as intended, ${%} can be applied to "pure filenames" on
On Mar 23, 2011, at 3:45 PM, Polytropon wrote:
> On Wed, 23 Mar 2011 15:35:21 -0500, Ryan Coleman
> wrote:
>> Here's the working script (Yay!)
>>
>> #! /bin/sh
>>
>> for FILE in /mount/disc_images/*.iso; do
>> DEST=$FILE
>> DIRNAME=`basename ${FILE} .iso`
>> echo ${DIRNAME} ${FILE}
>> mk
On Wed, 23 Mar 2011 15:35:21 -0500, Ryan Coleman
wrote:
> Here's the working script (Yay!)
>
> #! /bin/sh
>
> for FILE in /mount/disc_images/*.iso; do
> DEST=$FILE
> DIRNAME=`basename ${FILE} .iso`
> echo ${DIRNAME} ${FILE}
> mkdir /mount/new_brighton/images/${DIRNAME}
> mount -t cd96
Here's the working script (Yay!)
#! /bin/sh
for FILE in /mount/disc_images/*.iso; do
DEST=$FILE
DIRNAME=`basename ${FILE} .iso`
echo ${DIRNAME} ${FILE}
mkdir /mount/new_brighton/images/${DIRNAME}
mount -t cd9660 /dev/`mdconfig -f ${FILE}`
/mount/new_brighton/images/${DIRNAME}
done
On Mar 23, 2011, at 3:16 PM, Polytropon wrote:
> On Wed, 23 Mar 2011 15:06:14 -0500, Ryan Coleman
> wrote:
>> I am also trying to make the directories right before the attempt
>> to mount the image (a 'duh' moment just now).
>> So I'd like to have just the filename, not the full path, made
>>
On Wed, 23 Mar 2011 15:06:14 -0500, Ryan Coleman
wrote:
> I am also trying to make the directories right before the attempt
> to mount the image (a 'duh' moment just now).
> So I'd like to have just the filename, not the full path, made
> as a folder...
A directory. :-)
> In other news: The
We're close on this (thanks for the push).
It wants to load the entire path up in ${DEST} which is not ideal but I can
live with that.
I am also trying to make the directories right before the attempt to mount the
image (a 'duh' moment just now).
So I'd like to have just the filename, not the
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 3/23/11 2:49 PM, Ryan Coleman wrote:
> I have a folder full of ISOs that we're sharing on the network instead of
> having the discs available (seems like a good idea, right?)
>
> But I want to automate the process on boot instead of having to writ
On Wed, 23 Mar 2011 13:49:46 -0500, Ryan Coleman
wrote:
> I have a folder full of ISOs that we're sharing on the
> network instead of having the discs available (seems
> like a good idea, right?)
Please use the correct terminology: FreeBSD (as any UNIX
operating systems) calls them DIRECTORIES.
Hi--
On Mar 23, 2011, at 11:49 AM, Ryan Coleman wrote:
> Disc images are located in /mount/disc_images/ (all are ISOs)
> They need to mount into /mount/office_files/images/FILENAME [without the .iso
> extension]
>
> How can I do this? I've always been given these types of scripts in the past
>
I have a folder full of ISOs that we're sharing on the network instead of
having the discs available (seems like a good idea, right?)
But I want to automate the process on boot instead of having to write a static
script to do the work.
Disc images are located in /mount/disc_images/ (all are IS
> > B. Add functionality to the installer to list the available
> > releases if it can't find the release it's looking for.
...
> So Kevin, your rant is completely based on BETAs, Snapshots,
> and probably RC's if we had any available.
>
> All three of those ARE NOT RELEASES.
And this somehow
expect it to sill be available,
especially considering the fact that the "Upcoming Release: 7.1 - BETA 2"
link is still on the front page of FreeBSD.org. Now that I'm far enough
along in my install to be able access the site I see the link does now
takes one to a download page w
On Mon, Dec 8, 2008 at 6:44 PM, Kevin Monceaux <[EMAIL PROTECTED]> wrote:
> FreeBSD Fans,
>
> I'm experiencing irritation. Would someone have a long talk with whoever
> is responsible for the ISO images, release names, and/or the FTP servers,
> depending on where the ro
FreeBSD Fans,
I'm experiencing irritation. Would someone have a long talk with whoever
is responsible for the ISO images, release names, and/or the FTP servers,
depending on where the root if this irritation lies?
I've installed FreeBSD briefly a couple of times on my home d
patrick wrote:
Hi there,
I'm wondering if the FreeBSD 6.2 Production Release ISO images get
updated periodically when there are important patches, or is it better
to download the latest snapshot to save the trouble of updating
everything after installing?
The iso's are never remade
> I'm wondering if the FreeBSD 6.2 Production Release ISO images get
> updated periodically when there are important patches, or is it better
> to download the latest snapshot to save the trouble of updating
> everything after installing?
No, the ISOs remain the same as when th
Hi there,
I'm wondering if the FreeBSD 6.2 Production Release ISO images get
updated periodically when there are important patches, or is it better
to download the latest snapshot to save the trouble of updating
everything after installing?
Pa
hal wrote:
>
> On Oct 1, 2007, at Monday, Oct1, 2007 2:03 PM, Manolis Kiagias wrote:
>
>>>
>> Maybe you would like to download a 6-STABLE ISO image?
>>
>> Have a look at
>>
>> ftp://ftp.freebsd.org/pub/FreeBSD/snapshots and in particular
>>
>> ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/200709
>
>
On Oct 1, 2007, at Monday, Oct1, 2007 2:03 PM, Manolis Kiagias wrote:
Maybe you would like to download a 6-STABLE ISO image?
Have a look at
ftp://ftp.freebsd.org/pub/FreeBSD/snapshots and in particular
ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/200709
BTW are the snapshots production w
On Oct 1, 2007, at Monday, Oct1, 2007 2:03 PM, Manolis Kiagias wrote:
Maybe you would like to download a 6-STABLE ISO image?
Have a look at
ftp://ftp.freebsd.org/pub/FreeBSD/snapshots and in particular
ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/200709
Thanks I will try it.
hal
___
As far as I know there are just the releases, but there are of course recent
stable and current isos.
Cheers, Oliver
On Mon, Oct 01, 2007 at 01:25:29PM -0600, hal wrote:
> On freebsd.org the date of the ISO images is
> 1-12-2007. There have been several updates
> since then. I
hal wrote:
> On freebsd.org the date of the ISO images is
> 1-12-2007. There have been several updates
> since then. Is there a repository of ISO images
> that are kept current?
>
> hal
>
> ___
> freebsd-questions@free
On freebsd.org the date of the ISO images is
1-12-2007. There have been several updates
since then. Is there a repository of ISO images
that are kept current?
hal
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman
On Sun, Apr 15, 2007 at 02:44:59AM +0200, M. Lutz wrote:
> Hello FreeBSD team,
> having tried several times to access 6.2-RELEASE-i386-disc1.iso
> from e.g.
> ftp://ftp.freebsd.org/pub/FreeBSD/ISO-IMAGES-i386/6.2
> I failed because after about 140MB download no further data ca
On Saturday 14 April 2007 19:44:59 M. Lutz wrote:
> Hello FreeBSD team,
> having tried several times to access 6.2-RELEASE-i386-disc1.iso
> from e.g.
> ftp://ftp.freebsd.org/pub/FreeBSD/ISO-IMAGES-i386/6.2
> I failed because after about 140MB download no further data can be
> r
Hello FreeBSD team,
having tried several times to access 6.2-RELEASE-i386-disc1.iso
from e.g.
ftp://ftp.freebsd.org/pub/FreeBSD/ISO-IMAGES-i386/6.2
I failed because after about 140MB download no further data can be
received.
Could it be that this iso-image is defect?
It doesn't matter
David Benfell wrote:
On Sat, 14 Jan 2006 00:15:59 -0500, Kris Kennaway wrote:
Unable to confirm:
Okay. Now I'm really bewildered. But apparently the problem is on my
Mac.
On a lark, I tried another system. This one is my OpenBSD system that
I use for routing. It's pulling down the ISO j
On Fri, Jan 13, 2006 at 09:38:50PM -0800, David Benfell wrote:
> On Sat, 14 Jan 2006 00:15:59 -0500, Kris Kennaway wrote:
> >
> > Unable to confirm:
> >
>
>
> Okay. Now I'm really bewildered. But apparently the problem is on my
> Mac.
>
> On a lark, I tried another system. This one is my Op
On Sat, 14 Jan 2006 00:15:59 -0500, Kris Kennaway wrote:
>
> Unable to confirm:
>
Okay. Now I'm really bewildered. But apparently the problem is on my
Mac.
On a lark, I tried another system. This one is my OpenBSD system that
I use for routing. It's pulling down the ISO just fine.
This sy
On Fri, Jan 13, 2006 at 08:15:24PM -0800, David Benfell said at one point in
time:
> Hello all,
>
> It seems like no matter which site I try, I get a message that
> pub/FreeBSD/releases/i386/ISO-IMAGES/6.0 doesn't exist.
>
> So I guess I've got two questions:
>
gt; >
> [Sigh] This is what I get for failing to post the *entire* error
> message. My DNS and network are working fine, but...
>
> 16% wget
> ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.0/6.0-RELEASE-i386-disc1.iso
> --21:08:33--
> ftp://ftp.freebsd.org/
work are working fine, but...
16% wget
ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.0/6.0-RELEASE-i386-disc1.iso
--21:08:33--
ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.0/6.0-RELEASE-i386-disc1.iso
=> `6.0-RELEASE-i386-disc1.iso'
Resolving ftp.fr
David Benfell wrote:
It seems like no matter which site I try, I get a message that
pub/FreeBSD/releases/i386/ISO-IMAGES/6.0 doesn't exist.
So I guess I've got two questions:
1) Where are the ISOs really?
They are right here:
ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-
Hello all,
It seems like no matter which site I try, I get a message that
pub/FreeBSD/releases/i386/ISO-IMAGES/6.0 doesn't exist.
So I guess I've got two questions:
1) Where are the ISOs really?
2) Why is the website wrong?
--
David Benfell, LCP
[EMAIL PROTECTED]
---
Resume availab
Thanks for your help,thank you very much!
2005/12/3, David Miao <[EMAIL PROTECTED]>:
>
> On 12/2/05, YE ZHIJIE <[EMAIL PROTECTED]> wrote:
> > Can you give me an answer,Thanks!
> >
> > --
> > 叶智杰
> >
> > ___
> > freebsd-questions@freebsd.org mailing list
On 12/2/05, YE ZHIJIE <[EMAIL PROTECTED]> wrote:
> Can you give me an answer,Thanks!
>
> --
> 叶智杰
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL
Can you give me an answer,Thanks!
--
叶智杰
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
On 10/31/05, Vishal Ballabh <[EMAIL PROTECTED]> wrote:
> Hi
>
> I have seen the document regarding installation
> of SAP R/3 on FreeBSD. I am interested in installaing
> a stand alone system for learning purporse. I am
> unable to find the SAP ISO images that you have
>
Hi
I have seen the document regarding installation of SAP R/3 on FreeBSD. I am
interested in installaing a stand alone system for learning purporse. I am
unable to find the SAP ISO images that you have mentioned in the document. It
would be great if you can guide me to a location where I can
On Wednesday 29 December 2004 11:24 am, [EMAIL PROTECTED] wrote:
>i am having problems installing 5.3 on my laptop.
<<< snip >>>
>i heard a rumor that you are located in bolder colorado and since i am
>in colorado springs i can drive up if nessasary to get my macine
>running.
Ah
Chances are - you burned the iso file to the rom and not burned using the
ISO. I would check what your doing when you burn.
Best regards,
Chris
On Wed, 29 Dec 2004 [EMAIL PROTECTED] wrote:
hello,
i am having problems installing 5.3 on my laptop. it is an hp
pavillion ze5700. i am currently
hello,
i am having problems installing 5.3 on my laptop. it is an hp
pavillion ze5700. i am currently using windows xp home, and have
downloaded the 5.3 release disk1 iso image to my hard drive. i have
tried putting it on several cd's to boot from and have successfully
made all
On Fri, Mar 12, 2004 at 03:08:20PM -0800, Mike Hogsett wrote:
>
> > How do you do the MD5 hash of a whole CD?
>
> ( everything is a file ... )
>
> If it is a physical CD and not an ISO image on another file system you
> should be able to put the CD into the CD drive and run md5 on the CD
> devic
Date: Fri, 12 Mar 2004 14:55:13 -0800
From: Kris Kennaway <[EMAIL PROTECTED]>
>> Is there a known problem with the i386 iso images for 5.2.1-release?
>
>Not that I've heard of. The most likely explanation is that your
>download was corrupted, or your CD did not burn c
> How do you do the MD5 hash of a whole CD?
( everything is a file ... )
If it is a physical CD and not an ISO image on another file system you
should be able to put the CD into the CD drive and run md5 on the CD
device's device node in /dev/
If the CD is an ISO image just run md5 on the file.
, off to another pc and golly if the cd won't boot there either!
>>
>> Is there a known problem with the i386 iso images for 5.2.1-release?
>
>Not that I've heard of. The most likely explanation is that your
>download was corrupted, or your CD did not burn correctly
n't boot there either!
>
> Is there a known problem with the i386 iso images for 5.2.1-release?
Not that I've heard of. The most likely explanation is that your
download was corrupted, or your CD did not burn correctly. Did you
verify the MD5 hash of the ISO image after you
On Fri, 12 Mar 2004 [EMAIL PROTECTED] wrote:
> I've been trying to boot up a Compaq 1850. Aside from it hanging
> on booting I noticed that I was booting with 5.2.1-RC, not -release
> So, d/l the latest iso and now the darned machine won't boot from
> the 5.2.1-release cds at all. Doesn't even s
machine up on 3 or 4 different linuxen, Fbsd4.9, Solaris 8,
even openDarwin 7. I've burned several cds of 5.2.1-release-mininst
but no joy.
So, off to another pc and golly if the cd won't boot there either!
Is there a known problem with the i386 iso i
is empty.
???
the other releases are ok.
why might this be?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Sure,
On a separate machine setup an ftp server, create a directories named
4.9-RELEASE and 5.2-RELEASE right where you will be placed when
connecting with ftp. Then mount the iso image as follows (4.x syntax):
vnconfig -e /dev/vn0 4.9-image.iso
vnconfig -e /dev/vn1 5.2-image.iso
mount -t cd9660
Is there a way for me to install FreeBSD from CD images that I have
downloaded without burning them to CD? Can I boot from a floppy and then
mount the images like a CD? I'm installing versions 4.9 and 5.2.
___
[EMAIL PROTECTED] mailing list
http://li
Olivier Gautherot <[EMAIL PROTECTED]>(by way of Olivier Gautherot\ <[EMAIL
PROTECTED]>) writes:
> I'm facing a funny situation that I don't really understand... I'm currently
> running 5.1 (I thought it was -STABLE but the CDROM says -RELEASE, so I'm not
> completely sure as I have had it for som
Hi FreeBSD'ers!
I'm facing a funny situation that I don't really understand... I'm currently
running 5.1 (I thought it was -STABLE but the CDROM says -RELEASE, so I'm not
completely sure as I have had it for some time). It installed painlessly.
As I was reorganizing my hard disk, I thought I woul
Bochs is quite capable of booting just about anything. The nice thing about it is you
can 'edit' the CPU and have it print out what it's doing for hard-to-debug stuff.
Just put your CD in your /dev/cdrom drive, then put these lines in .bochsrc
ata0-slave: type=cdrom, path=/dev/cdrom, status=in
I am looking for a method where I can boot ISO images in a chroot-like
environment. (I understand that VMware and Virtual PC may be able to do
this, but I'd prefer to use an open source product.)
I was told on the plex86 list to look at bochs. I did look at some bochs
documentation that ment
On Tue, Dec 09, 2003 at 11:07:49PM -0600, Marc Wiz wrote:
> I'm using FreeBSD 4.9
>
> I used to be able to mount an ISO image (disk file) using vnconfig
> on 4.7 and 4.8. Now I cannot.
>
>
> -su-2.05b# vnconfig -c vn2c /stage/daily-1.iso
> -su-2.05b# file /stage/daily-1.iso
> /stage/daily-1.is
I'm using FreeBSD 4.9
I used to be able to mount an ISO image (disk file) using vnconfig
on 4.7 and 4.8. Now I cannot.
-su-2.05b# vnconfig -c vn2c /stage/daily-1.iso
-su-2.05b# file /stage/daily-1.iso
/stage/daily-1.iso: ISO 9660 CD-ROM filesystem data
-su-2.05b# mount -t cd9660 /dev/vn2c /mnt
d:
> > 230 Login successful. Have fun.
> > ftp> cd pub/FreeBSD/ISO-IMAGES-i386/4.8
> > 250 Directory successfully changed.
> > ftp> get "4.8-disc1.iso" r48_disc1.iso
> > Connection closed by remote host.
> > ftp>
>
My bad, you're using the
FreeBSD Handbook.
>
> I have tried to get:
> 4.8-mini.iso
> 4.8-disc1.iso
>
> I have also tried getting these images from this path as well:
> pub/FreeBSD/ISO-IMAGES-i386/4.8
>
> Does anyone know of a mirror ftp that will allow me to see the file
> names? Or a
have also tried getting these images from this path as well:
pub/FreeBSD/ISO-IMAGES-i386/4.8
Does anyone know of a mirror ftp that will allow me to see the file
names? Or allow me privileges to see and download the files?
Here is my typical session from DOS ftp:
C:\download>ftp
ftp> op
Other than the 4.6 version of ports sold at Freebsd, are there ISO images
of the newer collections posted for download? If not, what is the best
method of downloading them so I can make the images myself? The reason I
ask is because I'd like to burn to disk (DVD or CD-R).
Will
=
On Friday 13 June 2003 07:54, Anurag Chaudhary wrote:
> actually I am having a directory on hard disk and i want to make its .iso
> image in some file on the hard disk so that later I can burn CD with that
> image
yes, that's what mkisofs is good for.
Johannes
On Fri, 13 Jun 2003, Anurag Chaudhary wrote:
> actually I am having a directory on hard disk and i want to make its .iso
> image in some file on the hard disk so that later I can burn CD with that
> image
> (..snip..)
Install port/package mkisofs and enter:
mkisofs -J -o out.iso -r -V volume_na
ROTECTED]>
Subject: Re: how to make iso images
Date: Fri, 13 Jun 2003 00:42:08 -0400
dd if=/dev/cdrom_dev of=filename.iso bs=1024
- Original Message -
From: "Anurag Chaudhary" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 13, 2003 12:29 AM
Subj
On Friday 13 June 2003 06:29, Anurag Chaudhary wrote:
> how can I make CD iso image in freebsd
man mkisofs
HTH
Johannes
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EM
dd if=/dev/cdrom_dev of=filename.iso bs=1024
- Original Message -
From: "Anurag Chaudhary" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 13, 2003 12:29 AM
Subject: how to make iso images
> how can I make CD iso image in f
how can I make CD iso image in freebsd
thanx
Anurag
_
They're big & powerful. The macho mean machines!
http://server1.msn.co.in/features/suv/index.asp SUVs are here to stay!
___
[EMAIL PR
On Sun, Apr 06, 2003 at 03:24:26AM +, Yan Jingfeng wrote:
> Hi,
>
> Does it mean that FreeBSD will not build the 3rd and 4th CD Images for FTP
> downloading from now on?
Yes. They take a lot of effort to build for each supported
architecture and essentially double the space required on ftp
Hi,
Does it mean that FreeBSD will not build the 3rd and 4th CD Images for FTP
downloading from now on? I don't have high speed connection. The typical
way I am working is download ISO in University and burn to CD. Then I can
install at home. I notice that from FreeBSD 5.0 R there was not 3rd
Probably.
From: Richard Tobin <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: 4.8 ISO images
Date: Fri, 4 Apr 2003 16:07:43 +0100 (BST)
The 4.8 CD image on ftp.uk.freebsd.org is older than the one on
ftp.freebsd.org, and a different size:
ftp.uk.freebsd.org:
-rw-r--r-- 1 ftpuser ft
The 4.8 CD image on ftp.uk.freebsd.org is older than the one on
ftp.freebsd.org, and a different size:
ftp.uk.freebsd.org:
-rw-r--r-- 1 ftpuser ftpusers 639401984 Apr 1 09:40 4.8-RELEASE-i386-disc1.iso
ftp.freebsd.org:
-rw-r--r-- 1 ftpuser ftpusers 640024576 Apr 3 19:04 4.8-RELEASE-i386
On Wed, Jan 22, 2003 at 03:44:01PM -0800, Thomas Marshall wrote:
> I have downloaded your new iso images for FreeBSD
> 5.0-release twice from two different mirrors. The
how did you download the image?
toni
--
Terror ist der Krieg der Armen, | [EMAIL PROTECTED]
Krieg ist der Terror der R
I have downloaded your new iso images for FreeBSD
5.0-release twice from two different mirrors. The
checksums do not match with those found with the
images, and the images can not be booted. I do not
know if anyone has emailed you about this yet, but I
thought you should know. I cannot install
Hiho.
On Fri, 22 Nov 2002 09:08:09 +0300
Odhiambo Washington <[EMAIL PROTECTED]> wrote:
> Turns out that the image is good but I am as stupid as the IBM Aptiva
> that was giving the "no kernel" message, in that I did not test the
> image on a different machine. I am amazed no flames came my way ;
* Anand Buddhdev <[EMAIL PROTECTED]> [20021121 19:27]: wrote:
> On Thu, Nov 21, 2002 at 06:48:28PM +0300, Odhiambo Washington wrote:
>
> > I must have missed this. Or simply dump. period.
> >
> > It looks like there is no more ISO image to burn to a CD since 4.6.2??
>
> Sure there is. Which serv
On Thu, Nov 21, 2002 at 06:48:28PM +0300, Odhiambo Washington wrote:
> I must have missed this. Or simply dump. period.
>
> It looks like there is no more ISO image to burn to a CD since 4.6.2??
Sure there is. Which server were you looking at, and which directory?
> Why are there 2 disk images?
I must have missed this. Or simply dump. period.
It looks like there is no more ISO image to burn to a CD since 4.6.2??
Why are there 2 disk images? I burnt a 4.7-disc1.iso and it fails to
boot - no kernel...
-r--r--r-- 1 3usit 582746112 Nov 17 00:23 5.0-DP2-disc1.iso
-r--r--r-
> Date: Sat, 5 Oct 2002 00:58:24 +0200
> From: Hanspeter Roth <[EMAIL PROTECTED]>
> Sender: [EMAIL PROTECTED]
>
> On Oct 04 at 23:13, Olivier Boniteau spoke:
>
> > I've taken a virus (bloodhound.mbr) in the following
> > mirror:
>
> Where is the virus claimed to be located?
>
> I had an inst
PROTECTED]>
Sent: Friday, October 04, 2002 5:58 PM
Subject: Re: VIRUS in ISO images?
> On Oct 04 at 23:13, Olivier Boniteau spoke:
>
> > I've taken a virus (bloodhound.mbr) in the following
> > mirror:
>
> Where is the virus claimed to be located?
>
> I had an
--- Olivier Boniteau <[EMAIL PROTECTED]> wrote:
> I've taken a virus (bloodhound.mbr) in the following
> mirror:
Bloodhound is not a virus. There is no such virus.
Some AV systems (Notron's for one) use this codeword to refer to the
heuristics scanning - Identification of `virus like' code. The
On Oct 04 at 23:13, Olivier Boniteau spoke:
> I've taken a virus (bloodhound.mbr) in the following
> mirror:
Where is the virus claimed to be located?
I had an installation with the FreeBSD boot selector. And one
scanner (maybe norton 2 or 4) claimed there were a virus in the MBR.
When I boo
I've taken a virus (bloodhound.mbr) in the following
mirror:
ftp://ftp.fr.freebsd.org/pub/FreeBSD/ISO-IMAGES-i386/4.6.2/4.6.2-disc1.iso
For removing the virus under DOS:
(on the first disk)
fdisk /cmbr 1
I recognize that I didn't check the MD5... but I was
sure that the iso
1 - 100 of 103 matches
Mail list logo