Re: tool to transform db-backups

2007-03-04 Thread Roberto C. Sanchez
On Sun, Mar 04, 2007 at 02:56:24PM +0100, [EMAIL PROTECTED] wrote:
> Hi,
> 
> sorry this is quite OT:
> 
> is there a tool/way for debian to convert a generic backup of a mysql-db to 
> postgres?
> 
Maybe this:
http://gborg.postgresql.org/project/mysql2psql/projdisplay.php

I used one a long time ago, but I can't recall if that was the same one,
though.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: AMD64 on Virtual PC

2007-02-24 Thread Roberto C. Sanchez
On Sat, Feb 24, 2007 at 07:57:34AM -0700, Jack Nespor wrote:
> When trying to install debian AMD64 on a virtual PC, I get the following
> message: Your CPU does not support long mode.  Use a 32-bit distribution.
> The hardware on my computer is as follows:
> 1.) Athlon AMD64
> 2.) 512 MB of RAM
> 
> Is this problem with the amount of RAM and/or hard drive space I have
> specified for this virtual machine?  Has anyone successfully installed
> debian AMD64 on a Microsoft's Virtual PC 2007?

That is probably a question that should be asked to Microsoft.  However,
does Virtual PC virtualize the host CPU?  Is your host OS 64-bit?  If
your host OS is not 64-bit, then there is probably not an easy way to
virtualize the CPU in such a way that you can use a 64-bit OS on it.  In
that case, you probably want to use QEMU, which will emulate the CPU
entirely.  Performance is not as good, but it allows you to run a 64-bit
guest on a 32-bit host.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: looking for fix to AMD64 python dl problem....

2007-02-17 Thread Roberto C. Sanchez
On Sat, Feb 17, 2007 at 11:27:12PM +, Michael Fothergill wrote:
> Dear Debianists,
> 
> I have been trying to compile a progam called ASCEND IV from 
> sourceforge.net using scons that usually runs on an i386 on my AMD64 
> Sempron 3200 box.  I am running Debian Etch RC1 AMD64.
> 
> One of the developers has been helping me.  We have managed to compile it 
> but have found that the dl function in python doesn't work in AMD64.  It is 
> an essential feature for ASCEND. Ultimately I would make a deb package for 
> this program for general release.  Suggestions on a dl fix welcome.  Am 
> using python2.4
> 
> 
> [EMAIL PROTECTED]:~/ascend$ ./test.py
> Traceback (most recent call last):
>  File "./test.py", line 31, in ?
>import dl
> ImportError: No module named dl
> [EMAIL PROTECTED]:~/ascend$ pygtk/ascdev models/johnpye/testlog10.a4c
> 
According to the Python docs [0], dl only works with a number of
conditions:

  Note: This module will not work unless sizeof(int) == sizeof(long) ==
  sizeof(char *) If this is not the case, SystemError will be raised on
  import.

If you run this program on an amd64 machine:

  $ cat sizes.c 
  #include 

  int main(void) {
printf("int: %d; long: %d; char *: %d\n", sizeof(int), sizeof(long), 
sizeof(char *));
return 0;
  }

This is what you get:

  $ ./a.out 
  int: 4; long: 8; char *: 8

So, the answer is that the dl module will not work on amd64.  The
recommended fix would then be to not use dl, since it is an ugly hack
(as is any foreign function interface) and instead write proper Python
bindings for whatever library you are trying to access.

Regards,

-Roberto
-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: AMD64 show stoppers

2007-01-16 Thread Roberto C. Sanchez
On Tue, Jan 16, 2007 at 07:42:29PM -0600, Karl Schmidt wrote:
> Add your show stopper to this thread...
> 
> First on the list is the java browser pluging - the black down java 
> sort-of-works(tm) (not a Debian package)
> 
What about the Sun plugin that you get when turning a .bin into a Debian
package with java-package?

> Next is flash  - you can sort of workaround it by using switftfox (comes 
> with bugs)(not a Debian package)
> 
Let me just say that no flash is a bonus :-)

> But the biggest problem for me is that there isn't a AMD64 nvu package. The 
> author abandoned it to work on a replacement package, but in the mean time 
> there isn't a good WYSIWYG html editor for web development.  (Sorry, but 
> quanta just isn't in the same league and OO makes bloat-code out of clean 
> html).
> 
Well, considering that nvu is deprecated and has basically been
abandoned upstream as of 15 September 2006, I'd say that it is best to
look elsewhere.

Regards,

-Roberto

> 
> IMHO etch as a amd64 server is fine - but the Desktop has holes
> 
> 
> 
> -- 
> !!!>> INCLUDE ALL TEXT IN TECHNICAL SUPPORT EMAIL REPLIES!!!
> !!!>>Send in plain-text mode - mail with attached GIFs will be rejected 
> << 
> Karl Schmidt EMail [EMAIL PROTECTED]
> Transtronics, Inc.   WEB http://xtronics.com
> 3209 West 9th StreetPh (785) 841-3089
> Lawrence, KS 66049 FAX (785) 841-0434
> 
> 
> Misdirection is the key to being a good magician. Magicians tell
> you they are doing something while they do something quite
> different; much like politicians -- except we can afford magicians.
> -KPS
> ----
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact 
> [EMAIL PROTECTED]
> 

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: when is etch safe to access internet?

2007-01-01 Thread Roberto C. Sanchez
On Mon, Jan 01, 2007 at 02:17:05PM -0500, Robert Isaac wrote:
> 
> http://lists.debian.org/debian-devel-announce/2006/12/msg8.html
> 
> Etch is receiving security updates.
> 
Thanks.  I missed that mail.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: when is etch safe to access internet?

2006-12-31 Thread Roberto C. Sanchez
On Sun, Dec 31, 2006 at 02:45:57PM -0500, Douglas Tutty wrote:
> Hi,
> 
> Two interrelated questions:
> 
> Short question:  when can my Etch amd64 box access the net via dialup
> safely?  At one point recently in relation to Etch (pre RC1), there was
> mention somewhre (perhaps the relase notes of the time) [sorry for my
> spottty memory]  that a testing box should not be connected directly to
> the internet.  I can't find that anymore.  Right now I'm connected via
> an old 486 with a failing NIC.  Now that Etch is frozen, is it safe to
> connect directly with the modem?  
> 
The answer is yes.  The recommendation to not directly connect an Etch
or Sid box to the 'net is given so that people will not blindly go about
connecting to the 'net and thinking that they are perfectly safe.  Now,
it is probably safer to connect a Sid box (packages take from 2 to 10
days to migrate from unstable to testing, even for security fixes).
However, given that Etch is frozen, it is receiving a great deal of
attention.

> Long question:  How is security and etch transition from testing to
> stable handled?  The release and security pages say that the testing
> distribution does not get security updates.  Does this mean that Etch
> must wait to be 'stable' before security is addressed or is it just a
> hand-off from the individual maintainers to the security team?  This
> could suggest that there will be some security holes between the time it
> is released and when security updates are produced.   
> 
Security support for a release is genereally "officially" announced in
the pre-release freeze period.  That way, when the release "happens" the
security support is already up and running.  There is a team of DDs who
have a project going called "testing security", IIRC, which is supposed
to bring the same level of security support to testing as exists with
stable.

> I guess everyone is getting itchy for etch (etchy?).  
> 
Personally, I can't wait, but there are still some serious transitional
bugs to work out.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: AMD64 unofficial Sarge to etch

2006-12-09 Thread Roberto C. Sanchez
On Fri, Dec 08, 2006 at 05:59:58PM -0600, Karl Schmidt wrote:
> I'm looking at upgrading a remote unofficial Sarge to etch server.  I did 
> this on a local machine a while ago without huge problems - but wondered  
> if that is still the case or if I should wait a few more weeks for the 
> official release?
> 
> If someone can list  possible problems with apache-PHP-mySQL and this 
> upgrade I would appreciate.
> 
I guess it is generally a matter of preference.  However, I won't
upgrade a production server until the full freeze has been announced.
Even then, I will only upgrade machines which I do not consider to be
critical.  I usually do the upgrades to help track down last minute bugs
in the upgrade procedure.  So, if your machine as a production machine
and you don't really have a motivation to help find those last minute
bugs, then you should probably wait for the official release.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com



Re: Partial Local Repository

2006-11-16 Thread Roberto C. Sanchez
On Fri, Nov 17, 2006 at 09:13:14AM +0800, GNU Linux wrote:
> Hello all,
> 
> I am planning to create a partial local repository for AMD64 Etch but I

Maybe debmirror?

Regards,

-Roberto
-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: nvidia repository

2006-10-11 Thread Roberto C. Sanchez
On Thu, Oct 12, 2006 at 08:46:32AM +1000, Alexander Samad wrote:
> Hi
> 
> I remember in some earlier posts, there was an unoffical repository that
> has precompiled nvidia deb which match the linux-image debs.
> 
> I can't seem to find it via google.  Can somebody repost please 
> 
Maybe the non-free section of the official archive?  Or backports (if
you are using Sarge).

Beyond that, you can just use module-assistant.  It is dead easy.
http://home.comcast.net/~andrex/Debian-nVidia/

Regards,

-Roberto
-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: Installing Intel Fortran Compiler

2006-09-13 Thread Roberto C. Sanchez
On Wed, Sep 13, 2006 at 11:30:59AM -0400, Lennart Sorensen wrote:
> 
> Well gcc is certainly top compiler for portability.  For optimization it
> leaves a lot to be desired, but it is something that is being worked on,
> although getting people to volunteer time to make optimizer code is
> probably hard.  It is hardly glorious code that lots of people will
> notice you for, and probably not very exciting code either.  They will
> notice if you do it wrong though. :)
> 

As they say: "I do good and nobody ever remembers.  I do bad and nobody
ever forgets." :-)

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: Digital signature


Re: update gnutls11 please

2006-08-10 Thread Roberto C. Sanchez
On Thu, Aug 10, 2006 at 10:20:25AM -0600, Cedar Cox wrote:
> I'm requesting that gnutls11 be updated to 1.0.16-13.2sarge1.  This
> update has already been uploaded to sarge-proposed-updates for the
> official archs.
> 
> This is to fix gnutls11 bug #325971, "Fix occasional SSL connection
> setup error".  Although urgency is listed low, this bug has wide ranging
> effects, causing communication errors in pam_ldap, nss_ldap, exim,
> imapd, samba, and anything that depends on them or gnutls.  The
> probability of failure is approximately 1 in 320 connections for 2048bit 
> SSL certs.  Even for our relatively small LDAP infrastructure this has 
> caused significant problems such as rejected mail.
> 
You will need to email the release managers on the debian-release
mailing list, IIRC.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: Digital signature


Re: Menu "Debian" in KDE refresh: how ?

2006-07-28 Thread Roberto C. Sanchez
On Fri, Jul 28, 2006 at 02:33:03PM +0200, Hans-J. Ullrich wrote:
> Hello all,
> 
> I would like to refresh the "Debian"-menu in KDE (as I have many orphaned 
> entries). I had this problem some time ago, and I had to delete some file in 
> my home. Accidently I deleted your mail with the solution from the past and 
> cannot find your answer in the debian-lists, too. Would you like to tell me 
> once again ?
> 

Try running update-menus in a terminal window.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: Digital signature


Re: debian amd64 and linux certifications

2006-07-25 Thread Roberto C. Sanchez
On Tue, Jul 25, 2006 at 08:45:16AM -0400, Christian Powers wrote:
> Anyone,
> 

What certifications?

-Roberto
-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: Digital signature


Re: building nvidia module on sarge

2006-07-14 Thread Roberto C. Sanchez
Alan Ianson wrote:
> I'd like to build the nvidia-kernel-source on sarge but "m-a auto-install 
> nvidia" says I haven't got the right compiler to build the module, so how can 
> I do that?
> 
> If I add testing repositories and grab testings kernel and gcc and friends 
> will that work?
> 
> If anyone has done this and can give me some pointers it'd be appreciated.
> 
> 

It's hard to tell why it says that.  What kernel are you running (the
output of `uname -a` will tell you) and what version of gcc is the
default (the output of `gcc --version` will tell you)?

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: unrar

2006-07-07 Thread Roberto C. Sanchez
Lennart Sorensen wrote:
> On Fri, Jul 07, 2006 at 04:22:52PM -0400, Roberto C. Sanchez wrote:
> 
>>Yes, and neither works particularly well, if at all, with archives that
>>use the latest version of the rar format.
> 
> 
> Well I won't use rar for my own data.  I like my data in documented
> formats.
> 

Same here.  However, not everyone thinks the same way.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: unrar

2006-07-07 Thread Roberto C. Sanchez
A J Stiles wrote:
> On Friday 07 July 2006 11:59, Marko Gabud wrote:
> 
>>Hello,
>>
>>I have notticed that there is no unrar package in official repositories
>>for amd64. Is there any unofficial repository or is there a way to install
>>official packet for i386?
> 
> 
> Try unrar-free or p7zip instead.  Both are Free Software alternatives to the 
> obnoxious licencing terms of unrar.
> 

Yes, and neither works particularly well, if at all, with archives that
use the latest version of the rar format.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: Unwanted messages

2006-06-08 Thread Roberto C. Sanchez
A J Stiles wrote:
> We seem to be getting a lot of spam being sent to the list lately.  Can we do 
> anything to block it?  Only accepting inbound mail from addresses on the 
> recipients list would be a good start.  Also, since we're all Debian users 
> here, it might make sense to reject mail apparently coming from a 
> Windows-based user-agent.
> 
> It was ironically endearing when it was adverts for pirated Windows software; 
> but I get enough pr0n, phishing and share scams elsewhere without them coming 
> through this list.
> 

Um, no, no, no and no.  Here is why those are all bad ideas:

- List volume is huge and many people want to post without subscribing
- All posts to this list do not originate by email, e.g., news groups
- Lots of people post from work (where they only have windows)
- Lots of people admin Debian servers, with Windows as a workstation OS
- You can do those things (except for filtering based on subscribers)

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: dosemu or dosbox

2006-06-04 Thread Roberto C. Sanchez
Alexander Samad wrote:
> Hi
> 
> I have need to run a text only dos application on my debian box, does
> dosemu not exist on amd64 ?  But I found dosbox - any one use this
> successfully
> 
> 
> Its a old pabx configuration program 8)
> 

The dosemu package is only Architecture: i386.  I guess that means you
could probably run it in a chroot, but not natively.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: debian_amd64_sarge/testing

2006-06-02 Thread Roberto C. Sanchez
Lennart Sorensen wrote:
> On Fri, Jun 02, 2006 at 11:20:33AM -0400, Roberto C. Sanchez wrote:
> 
>>First, please don't top post.  Second, it is generally not necessary to
>>CC everyone involved in the coversation.  We all read the list.
> 
> 
> Assuming everyone reads the list is not a valid assumption.  People post
> questions at times to the list without being subscribed.  Having them
> miss the answer would be unfortunate.
> 
True, but the custom on Debian mailing lists is that if you are not
subscribed and expect a CC, you should state that in your message or
your sig.

> And some of us are used to dealing with lkml where it is considered very
> unacceptable to not include the cc list.  For heavy mailing list
> traffic, having the cc to you for threads you are directly involved in
> makes it much easier to not miss messages in that thread.
> 
Personally, I follow the threads that interest me, so having CCs sent to
me are neither help nor hindrance.  The only time I can think of when it
was helpful was the recent Spamcop listing problem with murphy, which
slowed nearly all list mail to something like a 24 hour delay.

> You can request that people not CC you in your messages, but don't whine
> if they miss it.  It's even a habit to use reply-all on mailing lists
> for many people because of things like lkml and some badly configured
> lists that have the reply to set to the poster rather than the list.
> 
Since I have been contributing on Debian lists (sometime in 2002), the
"standard etiquette" has always been one of not CCing people unless they
explicitly request it.  There are cases however, when I will CC someone
who doesn't request it (e.g., a newbie who might be getting overwhelmed
with Debian or responses from the list, etc).

> Top posting does suck though.  That one I agree with.
> 
Agreed.

I guess it is just "when in Rome, do as the Romans."

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: debian_amd64_sarge/testing

2006-06-02 Thread Roberto C. Sanchez
Francesco Pietra wrote:
> About ram, with:
> 
> amd64 debian testing
> linux-image-2.6.15-1-amd64-k8-smp
> at the moment 2GB ram
> 
> when, in few days, it will be upgraded to 8GB ram, is that kernel OK? If not, 
> is any suitable one available from debian repositories,  or should I 
> recompile the kernel and which CONFIG?
> 
First, please don't top post.  Second, it is generally not necessary to
CC everyone involved in the coversation.  We all read the list.

I have two amd64 systems with 4 GB RAM and there was nothing special I
had to do.  In a 64 bit address space, 4 GB of RAM is not much.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: libmotif3

2006-06-02 Thread Roberto C. Sanchez
Michael D Schleif wrote:
> 
>>Yes, better avoiding mixing.
> 
> 
> Please, list members in the know, correct me if I have reached a
> misunderstanding with this.
> 
> amd64 repositories for sarge ARE actually 64-bit ports.
> 
> amd64 repositories for sarge are kept separate from standard debian
> repositories; but, they are -- for all intents and purposes -- "as good
> as" official debian packages.
> 
> Have I misunderstood?
> 
Your understanding is correct.

> 
>>The only solution seems to be compiling a deb package from source.
> 
> 
> 
> Yes, that is an option.
> 
> However, I understand that using mirrors from the following site gives
> you debian quality, sarge-specific, 64-bit packages:
> 
> <http://amd64.debian.net/README.mirrors.html>
> 
> Again, have I misunderstood?
> 
That sounds correct too.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: debian_amd64_sarge

2006-06-02 Thread Roberto C. Sanchez
Kompar Krisztian wrote:
> Dear All,
> 
> I would like to get more information about AMD64 port of debain sarge.
> The stability and reliability is very important for me. For this time
> only official i386 release of sarge are runing on my servers. Now I want
> to use more than 4Gb RAM that is why I am planing to install an AMD64 port
> of debian to my new server.
> 
If all you have a need for is to access more than 4 GB of RAM, then just
recompile your kernel with CONFIG_HIGHMEM64G=y.

> I have some question before install it:
>   - It will be possibe to upgrade OS from sarge to etch when the etch 
> will be official stable release (at the end of this year)? The release change 
> was well tested on i386 platform and I could change it without any big 
> problem.

Yes, the upgrade path from one stable release to another is always well
tested.  One of the goals of the amd64 porting team was that although
the Sarge release would be treated as unoffcial by the Debian project,
everything would be just the same as though it were a stable release.
Today, the only functional difference is that the sources.list entries
do not point to official mirrors for Sarge.

>   - Does AMD64 port of sarge use the same code as i386 port of sarge? So
> the AMD64 port is as stable and reliable as i386 port?

Yes, it uses the same code.  However, this is what can make the amd64
port *less* stable and complete than the i386 port.  The primary reason
is that there is still a great deal of code out there that is not 64-bit
clean.  However, this is no different than the situation encountered
with all the non-i386 architectures supported by Debian.

>   - Are here somebody who use this port on Intel servers for a long time?
> 

Not personally.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: x-window-manager

2006-05-30 Thread Roberto C. Sanchez
Francesco Pietra wrote:
> I see that in debian 64 etch there is only 1 program (twm) that provides 
> x-window-manager.
> 
> Is mwm scheduled to come? The fixed windows of twm are unsatisfactory for 
> those, like me, who use OpenGL applications without loading kde or gnome to 
> same ram.
> 

On an amd64 running Sarge:

$ apt-cache search x-window-manager |wc -l
43

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: tyan's raid1

2006-05-25 Thread Roberto C. Sanchez
Francesco Pietra wrote:
> What about efficiency (speed and subtraction of cpu) and reliability (of 
> booting from the intact disk should the other one fail) of raid1 provided by 
> the mainboard Tyan K8WE S2895? It could be simply set from bios and thus ease 
> life. Any comparison with raid1 from amd64 debian in case of application that 
> access often the disks?
> 

I wouldn't bother with onboard RAID.  Unless it is a very expensive card
(e.g., US$1000+), it is probably not worth it since if the board fails,
you may have difficulty accessing your data later.  For example, with
the RAID in the kernel, you can always just pop the disk into another
machine and access it there.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: debian-amd64 install

2006-04-21 Thread Roberto C. Sanchez
Francesco Pietra wrote:
> Dear Goswin:
> 
> i use deabian testing on my pc and i am going to install debian-amd64 on a 
> workstation for quantum mechanical calculations (a couple of dual opternos on 
> a tyan k8we), as soon as i have built it (a week or so). you know what i 
> mean, in principle the $ and # prompts are what we use for the input of 
> calculations (also not to withdraw from ram for useless graphical 
> interfaces). however, today we have also become used at examining the 
> molecule on the screen and therefore x11 would help.
> 
> apart from my problem, is it possible for the general benefit to publish on 
> this list a protocol as to debian-amd-6a installation (i mean the key 
> elements) and keep it up-to-date? there are so many interventions in these 
> days that it makes difficult to keed tray of.
> 
> if it is a bad idea forget about my mail
> 
> best wishes
> francesco pietra
> 
> 

You could just install the necessary client programs and just use ssh
and X forwarding.

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: samsung ml-1520 install script fails with glibc 2.0 error

2006-04-05 Thread Roberto C. Sanchez
Matthew Yee-King wrote:
> Hello!
> 
> I am attempting to install a samsung ml-1520 usb printer on my debian
> etch amd64 system. I have only been able to install this printer on an
> i386 system using proprietary drivers in the past, and that is what I am
> using now. The thing is that the install script appears to detect a
> glibc 2.0 system and fail, telling me to install 2.1 or newer.
> 
> I am using  libc6 2.3.6-3 in the amd64 part and  2.3.6-3 in my 32 bit
> chroot. I'm running the script from within the amd 64 system, but have
> created symlink to /emul/ia32-linux/lib/ld-linux.so.2 in /lib.
> 
> Heres the bit of the script that does the detection:
> 
> DetectLIBC()
> {
> status=1
> if [ `uname -s` != Linux ]; then
> echo "detected glibc-2.1"
> return $status
> fi
>   if [ -f `echo /lib/libc.so.6* | tail -1` ]; then
> if fgrep GLIBC_2.1 /lib/libc.so.6* 2> $NULL >> $NULL; then
> echo "glibc-2.1"
> status=0
> else
> echo "glibc-2.0"
> status=0
> fi
>   elif [ -f /lib/libc.so.5 ]; then
> echo "libc5"
> status=0
>   else
> echo "unknown"
>   fi
>   return $status
> }
> 
> Though it is a gtk app that is launched later in the installer that
> actually fails with the 2.0 problem- but this script detects a glibc 2.0
> so I'm guessing it  has the same problem as the gtk app.
> 
> How might I convince this script I have a 2.1 glibc? Is it somehow
> testing my 32 bit emualted glibs and seeing it as version 2.0?
> 
> cheers
> 
> matthew
> 
> 

There is a note at the bottom of the ML-1510 entry at linuxprinting.org
[0] where some states that the the ML-1520 works perfectly by following
the setup instructions for the ML-1510.  I would start there.

-Roberto

[0] http://linuxprinting.org/show_printer.cgi?recnum=Samsung-ML-1510

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: eclipse

2006-03-30 Thread Roberto C. Sanchez
Rafael Rodríguez wrote:
> 2006/3/29, Kurt Roeckx <[EMAIL PROTECTED]>:
> 
>>So, basicly, until someone actually uploads a version with a
>>build depedency on bzip2.
> 
> 
> OIC... so writing 5 chars is taking to mantainers months... *sigh*...
> 

Why doesn't someone just NMU it then?

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto



signature.asc
Description: OpenPGP digital signature


Re: amd64 dualcore nad raid1

2006-03-22 Thread Roberto C. Sanchez
[EMAIL PROTECTED] wrote:
> 
> And from what I've heard, Linux's software raid is more reliable and 
> simple than most hardware RAIDs.
> 
> -- hendrik
> 
> 

All of my research on the topic certainly agrees with that assessment.
Basically, I have found:

- If you pay less than about US$1000 for your card, you are getting
"fakeraid" (that is, software RAID implemented in firmware)
- With disks being so cheap today, you are hard pressed to justify using
anything other than RAID1
- The software RAID in the kernel is much more uniform, in that you can
manage disparate hardware in exactly the same way

-Roberto

-- 
Roberto C. Sanchez
http://familiasanchez.net/~roberto


signature.asc
Description: OpenPGP digital signature


Re: Netinst Image AMD64 where

2006-03-10 Thread Roberto C. Sanchez

Quoting Dirk Schleicher <[EMAIL PROTECTED]>:


Hello,

where can I find a netinst image for the amd port?

Thanks


Ask Google:

http://www.google.com/search?hl=es&q=where+can+I+find+a+netinst+image+for+the+amd+port&btnG=B%C3%BAsqueda+en+Google&lr=

-Roberto

--
Roberto C. Sanchez
http://familiasanchez.net/~roberto


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Thunderbird hangs when trying to write message

2006-01-01 Thread Roberto C. Sanchez

lance wrote:

On Friday 30 December 2005 11:34 am, Roberto C. Sanchez wrote:


lance wrote:


Hey,

Using a Sarge/Sid hybrid.  I can read, delete, and move messages in
Mozilla thunderbird 1.0.7 but when I try to write, reply, or forward the
application hangs and I have to use pkill to stop it.

Anyone else had this problem and know the solution?

Lance


Under advanced server settings for the account, how many connections is
it set to cache?  What IMAP server do you use?



Cache is default (5) and am using Cyrus IMAP 21

Lance


Ding! Ding! Ding!

The Cyrus IMAP server will allow a max of 2 or 4 (I forget which).  You 
need to reduce the number of cached connections in T-bird, or you will 
continue to see the same problem whenever you send a message that should 
also be copied into the Sent folder.


I had the same exact problem when I was using Cyrus.  I finally ended up 
switching to Courier, though for a number of other reasons as well.


-Roberto

--
Roberto C. Sanchez
http://familiasanchez.net/~roberto


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Thunderbird hangs when trying to write message

2005-12-30 Thread Roberto C. Sanchez

lance wrote:

Hey,

Using a Sarge/Sid hybrid.  I can read, delete, and move messages in 
Mozilla thunderbird 1.0.7 but when I try to write, reply, or forward the
application hangs and I have to use pkill to stop it.  


Anyone else had this problem and know the solution?

Lance




Under advanced server settings for the account, how many connections is 
it set to cache?  What IMAP server do you use?


-Roberto

--
Roberto C. Sanchez
http://familiasanchez.net/~roberto


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]