Adding the CD vendor in your list
Dear webmaster: I would like you to include my shop into your site, here is the detail: Vendor: Hong Kong Linux Shop URL: http://www.hklinuxshop.com URL for Debian Page: http://hklinuxshop.com/debian.htm Allows Contribution to Debian: No CD Type: Official CD+non-us,Development Snapshot Architectures: Alpha; i386(mainly); PPC; source Country: Hong Kong Ship International: within Hong Kong email: [EMAIL PROTECTED] The site is in Big-5 code(Chinese), English version will soon available. Moreover, the site of the vendor East Data Hong Kong http://www.easthk.com is unreachable or does not exist. Thank you for adding the new information. Your faithfully, Hong Kong Linux Shop 04/01/2003 _ ½ì©Ç¯d¨¥«H½c ·s¦~¼é¬y¤è¦V http://voicemail.yahoo.com.hk -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
real diamond fonts
I'm trying to do a cd cover and I'm looking for the real diamond font look can u help -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
make bootable fix for debian-cd
Hi, while playing around with debian-cd (CVS version) I got a problem with make bootable [running in debug mode] for DISK in CD1 CD1_NONUS ; do \ mkdir -p /mnt/data/debcd/tmp/woody-i386/$DISK/dists/woody/main/disks-i386 ; \ if [ ! -e "/mnt/data/debcd/debian/dists/woody/main/disks-i386" ]; then \ break; \ fi; \ /mnt/data/debcd/helpers/debian-cd/tools/add_files \ /mnt/data/debcd/tmp/woody-i386/$DISK/dists/woody/main/disks-i386 \ /mnt/data/debcd/debian/dists/woody/main/disks-i386 . ; \ touch /mnt/data/debcd/tmp/woody-i386/$DISK/.disk/kernel_installable ; \ cd /mnt/data/debcd/tmp/woody-i386/$DISK/dists/woody/main/disks-i386; \ rm -rf base-images-*; \ if [ "" != "" ]; then exit 0; fi; \ if [ -L current ]; then \ CURRENT_LINK=`ls -l current | awk '{print $11}'`; \ mv $CURRENT_LINK .tmp_link; \ rm -rf [0123456789]*; \ mv .tmp_link $CURRENT_LINK; \ elif [ -d current ]; then \ rm -rf [0123456789]*; \ fi; \ done mv: Fehlendes Dateiargument »mv --help« gibt weitere Informationen. make: *** [/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386] Fehler 1 ===end=== english mv error message would be: mv: missing file argument Try `mv --help' for more information. I found the problem in the awk part of the CURRENT_LINK definition. sven@marvin:/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386$ ls -l current lrwxrwxrwx2 sven users 17 2003-02-03 23:27 current -> 3.0.23-2002-05-21 sven@marvin:/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386$ ls -l current|awk '{print $11}' sven@marvin:/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386$ ls -l current|awk '{print $10}' 3.0.23-2002-05-21 Well this diff fixed the problem: --- Makefile.orig 2003-02-04 20:23:16.0 +0100 +++ Makefile2003-02-04 18:37:23.0 +0100 @@ -658,7 +658,7 @@ rm -rf base-images-*; \ if [ "$(SYMLINK)" != "" ]; then exit 0; fi; \ if [ -L current ]; then \ - CURRENT_LINK=`ls -l current | awk '{print $$11}'`; \ + CURRENT_LINK=`ls -l current | awk '{print $$10}'`; \ mv $$CURRENT_LINK .tmp_link; \ rm -rf [0123456789]*; \ mv .tmp_link $$CURRENT_LINK; \ Had somebody else the same problem or am I the first? Sven -- Revolution is not a dinner party, not an essay, nor a painting, nor a piece of embroidery; it cannot be advanced softly, gradually, carefully, considerately, respectfully, politely, plainly, and modestly. - Mao Zedong (Mao Tse-tung) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb
Friends, I just bot the 7disk Debian 3.0 distro from TuxCDs. When I tried to install from Disk1, I got a message "file /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb was corrupt", and the installation aborted. Several tries yielded the same result.An email to tuxcds.com got no response.I spose I'll have to dispute my credit card payment to them to get my $27 back. Do you have any help to offer??? Tnx!MikeGreenfield -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Fw: File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb
.UPDATE! - I just got email fm TuxCDs saying they were sending out a replacement Disk1. Let us see wat happens wen I try to use it. More later!Tnx MikeG - Original Message - From: "Mike Greenfield" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 2:01 PM Subject: File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb > Friends, I just bot the 7disk Debian 3.0 distro from TuxCDs. When I > tried to install from Disk1, I got a message "file > /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb was corrupt", and the > installation aborted. Several tries yielded the same result.An email to > tuxcds.com got no response.I spose I'll have to dispute my credit card > payment to them to get my $27 back. Do you have any help to offer??? > Tnx!MikeGreenfield > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: make bootable fix for debian-cd
Le Tue, Feb 04, 2003 at 08:25:13PM +0100, Sven Hoexter écrivait: > --- Makefile.orig 2003-02-04 20:23:16.0 +0100 > +++ Makefile2003-02-04 18:37:23.0 +0100 > @@ -658,7 +658,7 @@ > rm -rf base-images-*; \ > if [ "$(SYMLINK)" != "" ]; then exit 0; fi; \ > if [ -L current ]; then \ > - CURRENT_LINK=`ls -l current | awk '{print $$11}'`; \ > + CURRENT_LINK=`ls -l current | awk '{print $$10}'`; \ > mv $$CURRENT_LINK .tmp_link; \ > rm -rf [0123456789]*; \ > mv .tmp_link $$CURRENT_LINK; \ > > Had somebody else the same problem or am I the first? You're the first as far as I know. But this code is so ugly that it could only broke sooner or later. We'd better replace that with "readlink current" ... I'm going to commit that change. Cheers, -- Raphaël Hertzog -+- http://www.ouaza.com Formation Linux et logiciel libre : http://www.logidee.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: make bootable fix for debian-cd
On Tue, Feb 04, 2003 at 09:36:41PM +0100, Raphael Hertzog wrote: > Le Tue, Feb 04, 2003 at 08:25:13PM +0100, Sven Hoexter écrivait: Hi, > > Had somebody else the same problem or am I the first? > > You're the first as far as I know. But this code is so ugly that it > could only broke sooner or later. hehe :) > We'd better replace that with "readlink > current" ... I'm going to commit that change. Got your fix and it's working (only to let you know) Thanks, Sven -- Revolution is not a dinner party, not an essay, nor a painting, nor a piece of embroidery; it cannot be advanced softly, gradually, carefully, considerately, respectfully, politely, plainly, and modestly. - Mao Zedong (Mao Tse-tung) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Fw: File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb
On Tue, Feb 04, 2003 at 02:05:32PM -0600, Mike Greenfield wrote: > > Friends, I just bot the 7disk Debian 3.0 distro from TuxCDs. When I > > tried to install from Disk1, I got a message "file > > /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb was corrupt", and the BTW, if you have a CD writer, you can use jigdo to create the correct CD image for your corrupted CD, and write that to a replacement CD-R. This is possible *without* downloading all the data on the CD again, you only need to pass the corrupted CD's contents to jigdo at the "files to scan" prompt. jigdo will work out automatically which .debs it can reuse, and which ones it needs to fetch from the servers. , Richard -- __ _ |_) /| Richard Atterer | CS student at the Technische | GnuPG key: | \/¯| http://atterer.net | Universität München, Germany | 0x888354F7 ¯ '` ¯ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Debian-390 needs DVD for hercules installation
Hi all, Just my US$0.02 worth, but installing Debian-390 on hercules without enough disk space to load the 6 CD's worth of files is an excercise in frustration. Things are probably all right for the folk with real iron (and real CD drives that the installer can use), but those of us without suffer. The main problem being, of course, that hercules doesn't have a CD device emulation available that Debian-390 could use. I *can* however, mount a DVD with all 6 CD's worth of files on my DVD-ROM drive and export that via NFS to the Debian-390 installer (once I figure out how to get NFS working on the base RH7.3 system, of course, but that's for a different list). I've read the stuff on jigdo, sounds pretty cool, but lacking a DVD burner I can't exactly take advantage of it. For that matter, even with a DVD burner, I've got to have the 4.7Gb (times 2?) to first load the files and then make the image. So, how about it folk? Any chance a stable release for Debian-390 can be made avalable to the vendors out there so I can pay them for their hard work in making a DVD for me to install on hercules? If so, any time Real Soon? Regards, Peter J. Farley III __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Adding the CD vendor in your list
Dear webmaster: I would like you to include my shop into your site, here is the detail: Vendor: Hong Kong Linux Shop URL: http://www.hklinuxshop.com URL for Debian Page: http://hklinuxshop.com/debian.htm Allows Contribution to Debian: No CD Type: Official CD+non-us,Development Snapshot Architectures: Alpha; i386(mainly); PPC; source Country: Hong Kong Ship International: within Hong Kong email: [EMAIL PROTECTED] The site is in Big-5 code(Chinese), English version will soon available. Moreover, the site of the vendor East Data Hong Kong http://www.easthk.com is unreachable or does not exist. Thank you for adding the new information. Your faithfully, Hong Kong Linux Shop 04/01/2003 _ ½ì©Ç¯d¨¥«H½c ·s¦~¼é¬y¤è¦V http://voicemail.yahoo.com.hk
real diamond fonts
I'm trying to do a cd cover and I'm looking for the real diamond font look can u help
make bootable fix for debian-cd
Hi, while playing around with debian-cd (CVS version) I got a problem with make bootable [running in debug mode] for DISK in CD1 CD1_NONUS ; do \ mkdir -p /mnt/data/debcd/tmp/woody-i386/$DISK/dists/woody/main/disks-i386 ; \ if [ ! -e "/mnt/data/debcd/debian/dists/woody/main/disks-i386" ]; then \ break; \ fi; \ /mnt/data/debcd/helpers/debian-cd/tools/add_files \ /mnt/data/debcd/tmp/woody-i386/$DISK/dists/woody/main/disks-i386 \ /mnt/data/debcd/debian/dists/woody/main/disks-i386 . ; \ touch /mnt/data/debcd/tmp/woody-i386/$DISK/.disk/kernel_installable ; \ cd /mnt/data/debcd/tmp/woody-i386/$DISK/dists/woody/main/disks-i386; \ rm -rf base-images-*; \ if [ "" != "" ]; then exit 0; fi; \ if [ -L current ]; then \ CURRENT_LINK=`ls -l current | awk '{print $11}'`; \ mv $CURRENT_LINK .tmp_link; \ rm -rf [0123456789]*; \ mv .tmp_link $CURRENT_LINK; \ elif [ -d current ]; then \ rm -rf [0123456789]*; \ fi; \ done mv: Fehlendes Dateiargument »mv --help« gibt weitere Informationen. make: *** [/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386] Fehler 1 ===end=== english mv error message would be: mv: missing file argument Try `mv --help' for more information. I found the problem in the awk part of the CURRENT_LINK definition. [EMAIL PROTECTED]:/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386$ ls -l current lrwxrwxrwx2 sven users 17 2003-02-03 23:27 current -> 3.0.23-2002-05-21 [EMAIL PROTECTED]:/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386$ ls -l current|awk '{print $11}' [EMAIL PROTECTED]:/mnt/data/debcd/tmp/woody-i386/CD1/dists/woody/main/disks-i386$ ls -l current|awk '{print $10}' 3.0.23-2002-05-21 Well this diff fixed the problem: --- Makefile.orig 2003-02-04 20:23:16.0 +0100 +++ Makefile2003-02-04 18:37:23.0 +0100 @@ -658,7 +658,7 @@ rm -rf base-images-*; \ if [ "$(SYMLINK)" != "" ]; then exit 0; fi; \ if [ -L current ]; then \ - CURRENT_LINK=`ls -l current | awk '{print $$11}'`; \ + CURRENT_LINK=`ls -l current | awk '{print $$10}'`; \ mv $$CURRENT_LINK .tmp_link; \ rm -rf [0123456789]*; \ mv .tmp_link $$CURRENT_LINK; \ Had somebody else the same problem or am I the first? Sven -- Revolution is not a dinner party, not an essay, nor a painting, nor a piece of embroidery; it cannot be advanced softly, gradually, carefully, considerately, respectfully, politely, plainly, and modestly. - Mao Zedong (Mao Tse-tung)
File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb
Friends, I just bot the 7disk Debian 3.0 distro from TuxCDs. When I tried to install from Disk1, I got a message "file /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb was corrupt", and the installation aborted. Several tries yielded the same result.An email to tuxcds.com got no response.I spose I'll have to dispute my credit card payment to them to get my $27 back. Do you have any help to offer??? Tnx!MikeGreenfield
Fw: File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb
.UPDATE! - I just got email fm TuxCDs saying they were sending out a replacement Disk1. Let us see wat happens wen I try to use it. More later!Tnx MikeG - Original Message - From: "Mike Greenfield" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 04, 2003 2:01 PM Subject: File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb > Friends, I just bot the 7disk Debian 3.0 distro from TuxCDs. When I > tried to install from Disk1, I got a message "file > /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb was corrupt", and the > installation aborted. Several tries yielded the same result.An email to > tuxcds.com got no response.I spose I'll have to dispute my credit card > payment to them to get my $27 back. Do you have any help to offer??? > Tnx!MikeGreenfield >
Re: make bootable fix for debian-cd
Le Tue, Feb 04, 2003 at 08:25:13PM +0100, Sven Hoexter écrivait: > --- Makefile.orig 2003-02-04 20:23:16.0 +0100 > +++ Makefile2003-02-04 18:37:23.0 +0100 > @@ -658,7 +658,7 @@ > rm -rf base-images-*; \ > if [ "$(SYMLINK)" != "" ]; then exit 0; fi; \ > if [ -L current ]; then \ > - CURRENT_LINK=`ls -l current | awk '{print $$11}'`; \ > + CURRENT_LINK=`ls -l current | awk '{print $$10}'`; \ > mv $$CURRENT_LINK .tmp_link; \ > rm -rf [0123456789]*; \ > mv .tmp_link $$CURRENT_LINK; \ > > Had somebody else the same problem or am I the first? You're the first as far as I know. But this code is so ugly that it could only broke sooner or later. We'd better replace that with "readlink current" ... I'm going to commit that change. Cheers, -- Raphaël Hertzog -+- http://www.ouaza.com Formation Linux et logiciel libre : http://www.logidee.com
Re: make bootable fix for debian-cd
On Tue, Feb 04, 2003 at 09:36:41PM +0100, Raphael Hertzog wrote: > Le Tue, Feb 04, 2003 at 08:25:13PM +0100, Sven Hoexter écrivait: Hi, > > Had somebody else the same problem or am I the first? > > You're the first as far as I know. But this code is so ugly that it > could only broke sooner or later. hehe :) > We'd better replace that with "readlink > current" ... I'm going to commit that change. Got your fix and it's working (only to let you know) Thanks, Sven -- Revolution is not a dinner party, not an essay, nor a painting, nor a piece of embroidery; it cannot be advanced softly, gradually, carefully, considerately, respectfully, politely, plainly, and modestly. - Mao Zedong (Mao Tse-tung)
Re: Fw: File - /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb
On Tue, Feb 04, 2003 at 02:05:32PM -0600, Mike Greenfield wrote: > > Friends, I just bot the 7disk Debian 3.0 distro from TuxCDs. When I > > tried to install from Disk1, I got a message "file > > /instmnt/pool/main/n/nano/nano_1.0.6_2_i386.deb was corrupt", and the BTW, if you have a CD writer, you can use jigdo to create the correct CD image for your corrupted CD, and write that to a replacement CD-R. This is possible *without* downloading all the data on the CD again, you only need to pass the corrupted CD's contents to jigdo at the "files to scan" prompt. jigdo will work out automatically which .debs it can reuse, and which ones it needs to fetch from the servers. , Richard -- __ _ |_) /| Richard Atterer | CS student at the Technische | GnuPG key: | \/¯| http://atterer.net | Universität München, Germany | 0x888354F7 ¯ '` ¯
Debian-390 needs DVD for hercules installation
Hi all, Just my US$0.02 worth, but installing Debian-390 on hercules without enough disk space to load the 6 CD's worth of files is an excercise in frustration. Things are probably all right for the folk with real iron (and real CD drives that the installer can use), but those of us without suffer. The main problem being, of course, that hercules doesn't have a CD device emulation available that Debian-390 could use. I *can* however, mount a DVD with all 6 CD's worth of files on my DVD-ROM drive and export that via NFS to the Debian-390 installer (once I figure out how to get NFS working on the base RH7.3 system, of course, but that's for a different list). I've read the stuff on jigdo, sounds pretty cool, but lacking a DVD burner I can't exactly take advantage of it. For that matter, even with a DVD burner, I've got to have the 4.7Gb (times 2?) to first load the files and then make the image. So, how about it folk? Any chance a stable release for Debian-390 can be made avalable to the vendors out there so I can pay them for their hard work in making a DVD for me to install on hercules? If so, any time Real Soon? Regards, Peter J. Farley III __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com