Re: burncd

2009-06-07 Thread David M. Patronis

RW wrote:

On Sun, 7 Jun 2009 21:11:58 -0400 (EDT)
Chuck Bacon c...@cape.com wrote:


  
Is there a better tool than burncd? 



I've used burncd for CD's, but for DVDs I follow the handbook, and have
never had any problems:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-dvds.html

___

  
I second that, cdrecord and growisofs (part of the dvd+rw-tools package) 
are essential for modern machines. Although using burncd works well 
enough on my ancient rigs, a recent attempt to use burncd with a SATA 
optical drive resulted in a kernel panic. I suspect, unlike cdrecord and 
growisofs, that burncd is no longer a modern utility, and is in serious 
need of an overhaul.


David

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


re:Burncd-Kernel Panic

2009-04-24 Thread David M. Patronis

I'm using an Intel DG33BU board with a SATA HD and SATA optical drives.
Using FreeBSD 7.1 AMD64 I get a kernel panic and subsequent file system
corruption when attempting to burn a cd using the burncd utility. I can
avoid this easily enough by using cdrecord and growisofs which work as
they should. I wanted to alert others using the same or similar boards.

If anyone has any ideas, I'd  like to know why this happens. Is there a
planned update to the burncd software or how it addresses the system
that might remedy this in future releases?

--David

I'm assuming the reason for the panic is that SATAII is substantially 
incompatible with the old ATAPI standard that burncd was designed for. 
In light of the fact that soon, most hardware (even older hardware) will 
feature SATA drives, it would be nice if there were a compatible base 
system burn utility. Burncd could linger on for the sake of much older 
machines, but could be prominently labeled as legacy software.


--David yet again
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


BurnCd--Kernel Panic

2009-04-23 Thread David M. Patronis
I'm using an Intel DG33BU board with a SATA HD and SATA optical drives. 
Using FreeBSD 7.1 AMD64 I get a kernel panic and subsequent file system 
corruption when attempting to burn a cd using the burncd utility. I can 
avoid this easily enough by using cdrecord and growisofs which work as 
they should. I wanted to alert others using the same or similar boards.


If anyone has any ideas, I'd  like to know why this happens. Is there a 
planned update to the burncd software or how it addresses the system 
that might remedy this in future releases?


--David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Deluge 1.1.5 From FreshPorts

2009-04-10 Thread David M. Patronis
*I thought it might be of interest that a recent change to the Makefile 
for this port caused a build to halt with error code -1, gcc43 
failure. I'm using 7.1 AMD64. When I replaced the Makefile with the 
previous version (1.54) everything went smoothly.


I think this might be the line that caused the abort: - Add USE_GCC=4.3+ 
to fix building with boost 1.37.


Just wanted to make others aware in the event this is a common problem 
on AMD64.


--David


*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: mounting and using cd-rw media from a non root account

2008-05-25 Thread David M. Patronis

Desmond Chapman wrote:

I'm still stuck on the command line for this one. How do I give the user 
permissions and allow an application such as k3b to access the device? Any and 
all links to howtos or your own method is welcome.
Thank you in advance.

_
E-mail for the greater good. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ 
GreaterGood___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

  

My own configuration notes. Your mileage may vary : )

#How to install and configure K3b on FreeBSD 7.0

#To install the pre-compiled package (usually satisfactory) use the code 
below


pkg_add -r k3b

# If the pre-compiled package is ill-suited for your system, you can try 
compiling from source using the code below.


cd /usr/ports/sysutils/k3b   make install clean

# Next, we edit configuration files in order to establish the proper 
settings and permissions

# Edit /boot/loader.conf to add the following:

atapicam_enable=YES
hw.ata.atapi_dma=1

# Modify devfs.conf with the following lines:

own cdrom root:operator
perm cdrom 0666
link cd0 cdwriter
own cderiter root:operator
perm cdwriter 0666
own pass0 root:operator
perm pass0 0666
own xpt0 root:operator
perm xpt0 0666

# Edit /etc/rc.conf to add the following:

devd_enable=YES

#I am told the commands below are necessary on occasion. My system seems 
to work fine without them, however.


chmod 4711 /usr/local/bin/cdrecord
chmod 4711 /usr/local/bin/cdrdao



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mounting USB CD-ROM manually, after boot

2008-05-07 Thread David M. Patronis

Steve Bertrand wrote:

Hi everyone,

To get right to the chase, FBSD 7.0, I plug in an external USB CD-ROM 
device with a CD (of FreeBSD 7.0) and I want to mount it manually into 
the filesystem.


The device shows up with a label, and appears as /dev/cd0 (in dmesg).

# mount /dev/cd0 /cdrom

...fails, with a:

mount: /dev/cd0 : Invalid Argument

I have nothing else in /dev that would indicate any new device was 
attached. I know for fact the .iso is burned correctly, because I can 
boot from the same CD on another PC. Even still, a bad ISO burn still 
shouldn't prevent me from mounting AFAIK.


I've also tried all manner of cd0a etc, but they don't exist. (I can 
confirm cd0 is the only entry that appears in /dev after USB insertion).


Can anyone shed some quick light onto the solution that I am likely 
purely overlooking?


Thanks,

Steve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]



Try this:

mount_cd9660 /dev/cd0  /mnt

If that doesnt work try acd0. This works on my system at any rate.

David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mystery Hardware Error

2008-05-05 Thread David M. Patronis

Pollywog wrote:

On Monday 05 May 2008 03:11:52 Al Plant wrote:


  

Aloha list,

I am getting the same error on FreeBSD 7 RELEASE and 8. Current as David
is. CD's work fine.
Anybody know what this is?



I have been getting the errors too, whenever I reboot the machine, I find them 
in the logs.  I don't burn CD's on the machine so I don't know if I could.  I 
normally do that on another machine that runs Linux.

_
If you have an ATAPI burner you can easily burn CDs from the command 
line using mkisofs to generate a disc image and then the burncd 
utility that comes with even a basic install of FreeBSD. See below for 
the most simple example:


mkisofs -o nameofimage.iso pathtofile
burncd -f /dev/acd0 data pathtofile nameoffile.iso fixate

Of course, that still doesn't answer our question.

David

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mystery Hardware Error

2008-04-30 Thread David M. Patronis
When I burn a data cd using the burncd utility, I get this error at the 
end of the session:


acd0: FAILURE-READ_BIG HARDWARE ERROR asc=0x3e ascq=0x2

When I burn a second disc, there is no error message, and I've yet to 
have a bad burn. In fact I'm getting quality superior to that I was able 
to produce using Windows or Linux. What does the error mean, should I be 
concerned, and if so, what steps should I take to resolve the problem?


David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Check Out Your Winning.

2008-04-17 Thread David M. Patronis


 
 Yipee, I'm rich!

Unfortunately we'll have to split it with everyone on the list : (
 
I plan to buy a local lottery ticket with my winnings.

Sending From a 700Mhz PIII
David
 
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to achieve auto-shutdown of hard drive on old AT machine.

2008-01-04 Thread David M. Patronis
I have 6.2 installed on an ancient AT machine. I'd like to have the OS 
shut off the hard drive when I halt the system from the KDE interface. 
What do I edit, and what code do I use to achieve this?


Machine specs, if relevant:

GA-586TX2 (Gigabyte) Motherboard
AMD K-6/2 350Mhz CPU (running at 233Mhz.)
256MB of PC100 SDRAM (running at 66Mhz)
10GB IBM Hard Drive
3Com Etherlink III ISA NIC
AWE64 Creative ISA Sound Card
Some very, very, old ATI PCI graphics card I haven't really inspected 
that closely.


David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Auto-shutdown of Hard Drive with 6.2

2007-12-30 Thread David M. Patronis
I have 6.2 installed on an ancient AT machine. I'd like to have the OS 
shut off the hard drive when I halt the system from the KDE interface. 
What do I edit, and what code do I use to achieve this?


David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: CDROM Boot Hangs But Only Under 6.x

2007-12-27 Thread David M. Patronis




Not in this case.  As I mentioned in a prior post, I tried booting
with the 7.0-BETA4 ISO and got the exact same results.

Response:

Yes, sorry about that; was in too much of a hurry and missed the later 
posts.


David





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: CDROM Boot Hangs But Only Under 6.x

2007-12-26 Thread David M. Patronis

Tim Daneliuk wrote:

[EMAIL PROTECTED] wrote:

On 25/12/2007, Tim Daneliuk [EMAIL PROTECTED] wrote:

I am building a new server out of both older and brand new
components.  It is based on a Pentium D 925 and ABIT LG-95Z
mobo.  The DVD-RW is a Lite-On about a year old with very
low hours on it.

So ... here's a fun one:  I can boot and install FreeBSD 4.x (CD)
or Novell SUSE Enterprise Linux Desktop 10 SP1 (DVD) via the
DVD.  But attempting to do this with 6.x (I have tried 6.2R and
6.3-PRE disk #1) causes a hang during boot.  The loader gets
as far as showing the vertical bar that ordinarily spins
to show intitial kernel loading progress and the the machine
just sits there.  There is some further activity on the optical
drive at this point and then the cursor sort of jumps around a bit.

I've not yet tried swapping the optical drive out - though I doubt
this is the problem since I can load the other OSs.  I've tried
removing and moving memory sticks in case this is a flakey
memory problem - no change.  I've tried removing the only
two cards in the machine: 3COM 905C-TX and an Adaptec 2940UW -
no change.

I have one last ditch thing I will try later tonight which is
to force the DVD IDE port into PIO mode and out of DMA mode.
But that's it.  I am stumped.  Ideas anyone?



If it is not hardware, check your bios settings (and mayhap
set back to default or very conservative) (of which the PIO
trick may work).




I just swapped out the optical drive with a CD-RW - exact same
symptoms.  Fiddling w/BIOS, seems to make no difference, though
I am still poking at it.  I am utterly lost - never seen
very standard hardware like this that FreeBSD could/would not
boot and run on ...

Response:

Its probably an issue with the 6X series. I have experienced something 
similar and just spoke to someone via this list with a similar problem. 
In all cases thus far we were able to install using the 7X series.


David







___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: (no subject)

2007-12-16 Thread David M. Patronis

scurvy wrote:

Hello!
I want to use freeBSD vary much, but I have a problem with instalation (freeBSD 
6.2-RELEASE). It goes very slow (30% after 2 hours). Moreover I don't know 
exactly which version (platform) I should use. For now I have used i386, but I 
have the Intel E6600 (64bit) processor on motherboard Asus Deluxe p5b, so I 
don't know if this version of release is good for this hardware.
I'm waiting for a quick respond. Thanks for your help.
Best wishes!

Kuba Barski
___

  

Response:

I am using a similar Core Duo processor with a Intel G33 chipset 
motherboard and ran into considerable difficulty installing 6.2. The 
64-bit BETA of version 7.0 installs without issue. I've yet to test a 
32-bit BSD with this particular PC.


David

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: K3b

2007-11-25 Thread David M. Patronis
Hi!

I am new with FreeBSD. I installed one day ago 7.0 beta3 and I try to
learn 
and setup the system.
When I start K3b (KDE) I got a message:

No CD/DVD writer found.
K3b did not find an optical writing device in your system. Thus, you
will not 
be able to burn CDs or DVDs. However, you can still use other K3b
features 
like audio track extraction or audio transcoding or ISO9660 image
creation.

I tired as user and as root but resul is the same.

BTW: under Linux I didn't have a problem

Thanks in advance.

Response:

Assuming some things still work as they did with the 6.X releases
(probably a dangerous assumption) you need to enable the ATAPI driver. 

See here:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html#ATAPICAM

David

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]