Mark Price | 1 Jan 2006 16:01

pberry2@...: [LeapList] The VA refunds certification test fees, up to $2, 000.00 per!]

I thought this might be of interest to some lug members
----- Forwarded message from Whaxiac Patrick <pberry2@...> -----

From: Whaxiac Patrick <pberry2@...>
To: leaplist@...
Subject: [LeapList] The VA refunds certification test fees, up to $2, 000.00 per!

http://www.floridavets.org/saa/LiCert.htm

Veterans who must take a test for certification to work in any regulated 
field, in Florida, are entitled to up to $2,000.00 refund by the VA, for each 
required certification,  so, it appears that all who are Veterans, and who 
are working in any field that requires some certification to hold your 
position, should apply.  

http://www.floridavets.org/saa/LiCert.htm

Because it is a 'per certification' refund with a cap of $2000.00 per, you 
should probably submit each seperate test on an individual letter.

--

-- 
http://livecdlist.com  http://distrowatch.com  http://yolinux.com
http://safeharbordome.com  http://minidome.net  http://monolithicdome.com
_______________________________________________
Leaplist mailing list
Leaplist@...
http://lists.leap-cf.org/mailman/listinfo/leaplist

----- End forwarded message -----
_______________________________________________
(Continue reading)

cass | 1 Jan 2006 18:06

Re: Jaxlug-list digest, Vol 1 #1961 - 1 msg

I will be away from the office until Tuesday, January Third. I will receive your email and will get back to you
as soon as possible.

_______________________________________________
Jaxlug-list mailing list
http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
Send email to jaxlug-list-admin at jaxlug(dot)org for any problems.

cass | 2 Jan 2006 18:06

Re: Jaxlug-list digest, Vol 1 #1962 - 1 msg

I will be away from the office until Tuesday, January Third. I will receive your email and will get back to you
as soon as possible.

_______________________________________________
Jaxlug-list mailing list
http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
Send email to jaxlug-list-admin at jaxlug(dot)org for any problems.

Michael Joyner | 2 Jan 2006 20:50

OT: WMF Exploit MSI

If anyone needs a copy of the WMF exploit MSI as posted by isc.sans.org 
for Active Directory Deployment let me know, I'll post it.
There appears to be an issue with the MSI thinking it has applied and 
not really being applied in all cases. As I consider some protection 
better than none
when dealing with several hundred workstations, I was thinking others 
might be wanting it.

-MJ

_______________________________________________
Jaxlug-list mailing list
http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
Send email to jaxlug-list-admin at jaxlug(dot)org for any problems.

OldDad | 2 Jan 2006 23:16
Picon
Favicon

Backup and copy partition to a CD

After 30+ hours of trying to do an Internet update ending in a locked 
machine, I tried several different options.  Each failed, but I found 
that I may have a bad HD (the one with the partitions for /var and for 
/tmp).  [At least, when I used fsck.reiserfs it reported that it is 
likely that there is a hardware problem for that drive!]

So, what I would like to do is backup my /home partition to a CD (it 
will easily fit on a single CD).  But, the options for mkisofs and for 
cdrecord are many; and most options I don't understand.

I found (by typing: cdrecord --scanbus --dev ATAPI:) that the cd 
recorder, which I want to use, is identified:
"scsibus0: 0,1,0 1) SONY CDRW CRX320E NYK1 Removable CD-ROM."  [The 
device indicated as "scsibus0: 0,0,0 0) SONY DVD RW DW-U18A UYS1 
Removable CD-ROM" came with a message: "Warning: controller returns 
wrong size for CD capabilities page."]

What's the easiest way to backup /home?

Raymond

_______________________________________________
Jaxlug-list mailing list
http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
Send email to jaxlug-list-admin at jaxlug(dot)org for any problems.

Mike Walsh | 3 Jan 2006 00:10
Picon
Favicon

Re: Backup and copy partition to a CD

Why not use a thumb drive instead of a CD?

----- Original Message ----
From: OldDad <crchurch@...>
To: jaxlug-list@...
Sent: Monday, January 02, 2006 5:16:12 PM
Subject: [JaxLUG]Backup and copy partition to a CD

After 30+ hours of trying to do an Internet update ending in a locked 
machine, I tried several different options.  Each failed, but I found 
that I may have a bad HD (the one with the partitions for /var and for 
/tmp).  [At least, when I used fsck.reiserfs it reported that it is 
likely that there is a hardware problem for that drive!]

So, what I would like to do is backup my /home partition to a CD (it 
will easily fit on a single CD).  But, the options for mkisofs and for 
cdrecord are many; and most options I don't understand.

I found (by typing: cdrecord --scanbus --dev ATAPI:) that the cd 
recorder, which I want to use, is identified:
"scsibus0: 0,1,0 1) SONY CDRW CRX320E NYK1 Removable CD-ROM."  [The 
device indicated as "scsibus0: 0,0,0 0) SONY DVD RW DW-U18A UYS1 
Removable CD-ROM" came with a message: "Warning: controller returns 
wrong size for CD capabilities page."]

What's the easiest way to backup /home?

Raymond

_______________________________________________
(Continue reading)

Glen Dosey | 3 Jan 2006 02:15

Re: Backup and copy partition to a CD

Hi,

I'd probably do:
mkisofs -J -R -V "Home Jan 2005" -o image.iso /home

where image.iso is the image name, /home is what is backed up, and "Home
Jan 2005" is the name.

then burn with:
cdrecord dev=ATAPI:0,1,0 speed=32 -v image.iso

And while a thumb drive might be easier, if you use a CD, you'll have a
long term backup. :)

Happy New Years,
Glen

On Mon, 2006-01-02 at 17:16 -0500, OldDad wrote:
> After 30+ hours of trying to do an Internet update ending in a locked 
> machine, I tried several different options.  Each failed, but I found 
> that I may have a bad HD (the one with the partitions for /var and for 
> /tmp).  [At least, when I used fsck.reiserfs it reported that it is 
> likely that there is a hardware problem for that drive!]
> 
> So, what I would like to do is backup my /home partition to a CD (it 
> will easily fit on a single CD).  But, the options for mkisofs and for 
> cdrecord are many; and most options I don't understand.
> 
> I found (by typing: cdrecord --scanbus --dev ATAPI:) that the cd 
> recorder, which I want to use, is identified:
(Continue reading)

OldDad | 3 Jan 2006 02:24
Picon

Re: Backup and copy partition to a CD

Mike Walsh wrote:

>Why not use a thumb drive instead of a CD?
>
>
>  
>
That's a good idea.  Except for my ignorance!

I've had to use a "rescue" disk which provides CLI (command line 
interface) only and very little is automatic.  The only way I know to 
identify the thumb drive is type: "cdrecord --scanbus."  The thumb drive 
shows up as "scsibus3: 3,0,0 300) Generic STORAGE DEVICE 0125 Removable 
Disk."  How do I identify it for mounting?

Thanks,
Raymond

_______________________________________________
Jaxlug-list mailing list
http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
Send email to jaxlug-list-admin at jaxlug(dot)org for any problems.

Howard Roberts | 3 Jan 2006 03:13
Picon

Re: Backup and copy partition to a CD

On Mon, 2006-01-02 at 20:24 -0500, OldDad wrote:
>   The thumb drive 
> shows up as "scsibus3: 3,0,0 300) Generic STORAGE DEVICE 0125 Removable 
> Disk."  How do I identify it for mounting?
> Thanks,
> Raymond
Raymond,

For my thumb I usually do:
sudo mount /dev/sda1 /media/usb0
Depending on what other stuff is mounted, it could be /dev/sdb1 or some
other device name (I'll confess to using the hit-and-miss technique
until I find the right device -- usually no more than one or two
attempts;). 

/media/usb0 is the folder (that you have to create) where the volume
will be mounted.

after that it should be a simple matter of using your favorite copy
command  (e.g. cp -- Seems I've heard there are other, better, commands,
but it's always worked for me) to copy /home to /media/usb0.

HTH,
Howard

then you 

_______________________________________________
Jaxlug-list mailing list
http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
(Continue reading)

Randy Ramsdell | 3 Jan 2006 03:14
Picon

Re: Backup and copy partition to a CD

On Mon, 2006-01-02 at 20:24 -0500, OldDad wrote:
> Mike Walsh wrote:
> 
> >Why not use a thumb drive instead of a CD?
> >
> >
> >  
> >
> That's a good idea.  Except for my ignorance!
> 
> I've had to use a "rescue" disk which provides CLI (command line 
> interface) only and very little is automatic.  The only way I know to 
> identify the thumb drive is type: "cdrecord --scanbus."  The thumb drive 
> shows up as "scsibus3: 3,0,0 300) Generic STORAGE DEVICE 0125 Removable 
> Disk."  How do I identify it for mounting?
> 
> Thanks,
> Raymond
> 
> _______________________________________________
> Jaxlug-list mailing list
> http://mailman.jaxlug.org/mailman/listinfo/jaxlug-list
> Send email to jaxlug-list-admin at jaxlug(dot)org for any problems.

There are several ways, but you could just do "fdisk /dev/sdx" replacing
the "x" with {abcd etc...} until fdisk loads the drive info. I usually
just try to mount /dev/sdc etc... Or you could use Dmesg to see the
drive if inserted on boot. 

rcr
(Continue reading)


Gmane