Re: sony ericsson w550i for internet connection
On Fri, Feb 20, 2009 at 11:11:29AM +0530, jagdev singh wrote: > > i am using sony ericsson w550i mobile . i want to use it for internet on > debian > 4.03r . please tell me the method for doing it. I recently found this howto: http://p97.blogspot.com/2009/01/linux-bluetooth-gprs-and-internet.html and had success with my Sony Ericsson P1i. Regards Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van Stellenbosch "For the Lord himself shall descend from heaven with a shout, with the voice of the archangel, and with the trump of God: and the dead in Christ shall rise first: Then we which are alive and remain shall be caught up together with them in the clouds, to meet the Lord in the air: and so shall we ever be with the Lord." I Thessalonians 4:16,17 -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
Hi Chris, I plan to upgrade to lenny over the weekend: Take a look at http://www.ducea.com/2008/12/08/howto-upgrade-from-debian-etch-to-lenny/ It worked for me. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: How can i install Debian via hard disk
On Thursday 19 February 2009 22:12:42 Qzi wrote: > Is there a easy way to start the graphic install without CD *WRONG* *List*. Please follow the Code of Conduct http://www.debian.org/MailingLists/#codeofconduct and use the correct list, debian-user *NOT* debian-mentors. -- Boyd Stephen Smith Jr. ,= ,-_-. =. b...@iguanasuicide.net ((_/)o o(\_)) ICQ: 514984 YM/AIM: DaTwinkDaddy `-'(. .)`-' http://iguanasuicide.net/\_/ signature.asc Description: This is a digitally signed message part.
sony ericsson w550i for internet connection
hi i am using sony ericsson w550i mobile . i want to use it for internet on debian 4.03r . please tell me the method for doing it.
Re: How can i install Debian via hard disk
On Thursday 19 February 2009 22:12:07 Qzi wrote: > Is there a easy way to start the graphic install without CD > > JUST .ISO ... detail I need ! Not that I know of. You'll have to burn the .iso as a CD/DVD and boot from that. There might be some way to convince Ubuntu's GRUB to boot off on the .iso, but I don't know how. > On 2/20/09, Boyd Stephen Smith Jr. wrote: > > Reply to the list and not to me. You should get faster responses that > > way, and a wider breadth and deeper depth of knowledge than I have. Please: *REPLY* TO THE *LIST* and not to me. -- Boyd Stephen Smith Jr. ,= ,-_-. =. b...@iguanasuicide.net ((_/)o o(\_)) ICQ: 514984 YM/AIM: DaTwinkDaddy `-'(. .)`-' http://iguanasuicide.net/\_/ signature.asc Description: This is a digitally signed message part.
Re: MySQL Clustering; Load balancing is not working.
On Thu, 19 Feb 2009, Stackpole, Chris wrote: > I wanted to learn more about MySQL clustering so I looked around and > found this guide [1]. It was the newest guide I found (8 months old), so > I decided to give it a shot. I went through the guide with a little > deviation and I end up with mostly the same results as the author. Data > written to one node, shows up real quick on the other node. The > management interface all gives the same results as the author too. > However, the big problem (and reason for my post) is the virtual IP for > the load balancing doesn't work right. > > When I try connect to the virtual IP: > $ mysql -h 10.0.1.10 -u ldirector -p > Enter password: > It will sit here for a really long time before giving: > ERROR 2003 (HY000): Can't connect to MySQL server on '10.0.1.10' (111) > For most of this, you don't need to follow the instructions there to a tee, where ever possible I just use what ever is in apt, most of it version agnostic. The real important thing, it just the methods. > Step 2) Author uses MySQL 5.1.24 compiled from source. I used apt (I am > not afraid to compile but I didn't because apt is awesome :). > $ apt-cache show mysql-server | grep -i version > Version: 5.0.51a-24 > > Well, I guess I can see the versioning being a problem. Maybe I should > update and compile a newer version. ?? > > Step 6.1) For whatever reason, I can't update the GPG key for > ultramonkey, but I just hit y to install anyway on apt. Also, he > installs libdbd-mysql-perl from a download he gives from CPAN. I had > errors with his commands. Turns out you have to install > libmysqlclient15-dev (not 14) and you have to install make too! Then his > link to the DBD-mysql-3.0002.tar.gz didn't work for me. However, the > link to the newest (I believe) DBD-mysql-3.0008.tar.gz, _did_ work. So I > installed that one. So again, versioning issues? > >From what I remember, ultramonkey is kind of dead. All you really need to install is ldirectord for the load balancing and heartbeat for failover, both of which are in debians repositories. So, I would just uninstall everything you installed from ultramonkey, remove them from your sources list and just install heartbeat and ldirector debians rep. for the DBD-mysql, you can just install libdbd-mysql-perl, that will provide what you need. > Step 6.2 - 7) Everything works exactly as the author suggests it should, > /except/ for the last line of: > `mysql -h 10.0.1.10 -u ldirector -p` > > As stated before, this fails. I can ping 10.0.1.10. I can even ssh into > 10.0.1.10. They both redirect me to the (current) primary load balancer. > If I turn off the primary, I go to the secondary. Also, if I run > `ipvsadm -L -n` I can see the connections show up, even though they time > out. So I don't think it is the virtual part. I think it is the > redirection to the MySQL session. > > The only thing I have found in the log files that doesn't look right, is > every once in a while this line is put into the /var/log/ldirectord.log: > Exiting with exit_status 2: configu_error: Configuration Error > The thing is, from everything I can find, it is correct. I posted at the > end of the email. > > I would appreciate any feedback people may have. > > Thanks! > ~Stack~ > > [1] > http://www.howtoforge.com/setting-up-a-loadbalanced-mysql-cluster-with-m > ysql5.1 > > $cat /etc/ha.d/ldirector.cf > # Global Directives > checktimeout=10 > checkinterval=2 > autoreload=no > logfile="local0" > quiescent=yes > virtual=10.0.1.10:3306 > service=mysql > real=10.0.1.33:3306 gate > real=10.0.1.34:3306 gate > checktype=negotiate > login="ldirector" > passwd="ldirectorpassword" > database="ldirectordb" > request="SELECT * FROM connectioncheck" > scheduler=wrr your config looks ok. The one other thing I would check is the entries in your /etc/sysctl.conf to turn off arp. That sounds like that may be the main issue here -- 8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Techno. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Seriously, no way to reconfigure video card in lenny?
Sven Joachim wrote: On 2009-02-19 05:21 +0100, Ron Johnson wrote: On 02/18/2009 10:13 PM, S D wrote: It appears that video card configuration was removed from dpkg-recofigure in lenny. Has anything replaced it? How can one reconfigure video card in lenny? It's supposed to be automagic now, built into xorg itself. If that doesn't work, "Xorg -configure" should give you a starting point for xorg.conf. Further customizing has to be done with your favorite text editor. I was reading about that in the man page. Does that generate an xorg.conf file that matches what xorg does automatically with the new, almost empty .conf file? So that if you use the generated file you get the same options as you get with the automagic method, but have the option to tweak it? -- Marc Shapiro mshapiro...@yahoo.com -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: emacs and terminus, proggy and ttf-inconsolata fonts
H.S. wrote: > Sven Joachim wrote: >> Does not seem possible AFAIK. Your best bet would be to try Emacs 23 >> which has XFT support but is not released yet. Pre-compiled snapshots >> for Debian are available from http://emacs.orebokech.com. > > Wonderful! Fonts looks markedly better than in version 22. Plus I can use all the fonts the system sees! Wonderful anti-aliased fonts, terminus, inconsolata, etc. Thanks a ton for the URL for the debs of snapshots. Regards. -- Please reply to this list only. I read this list on its corresponding newsgroup on gmane.org. Replies sent to my email address are just filtered to a folder in my mailbox and get periodically deleted without ever having been read. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
On Thu, Feb 19, 2009 at 12:02:10PM -0500, Allan Wind wrote: > On 2009-02-19T16:05:55, Richard Lyons wrote: > > The rechargeeables, both NiCad and NiMH, are a good idea in principle, but > > lose charge when not in use and become ineffective surprisingly quickly in > > my experience. > > Try the low discharge NiMH batteries like Sanyo Eneloop. double plus that! A signature.asc Description: Digital signature
Re: How can i install Debian via hard disk
Reply to the list and not to me. You should get faster responses that way, and a wider breadth and deeper depth of knowledge than I have. On Thursday 19 February 2009 18:46:17 Qzi wrote: > where to put lenny.iso on ! Per the instructions I pointed you at, you do not need the .iso images at all if you have an existing UNIX-like system. Since Ubuntu supports it, you loopback-mount the .iso and use the apt repository on it as one source of packages to remove the need to download so many from the Internet. Others might, but if you refuse to read the documentation that is available, I shall refuse to help you further. > what I should add to the menu.lst ! You'll basically copy the Ubuntu lines and change the version numbers to match the version on the kernel you installed in Debian. The installation guide should have more details about this. However, if you choose to use the installer (*not* the technique I linked), Debian should edit your menu.lst for you. > Detail , I wish ! http://www.catb.org/~esr/faqs/smart-questions.html If you want detailed answers, you'll need to ask detailed questions. There's a lot of choice involved in technology--and Debian in particular. In addition, the choices you have my be restricted by your hardware. -- Boyd Stephen Smith Jr. ,= ,-_-. =. b...@iguanasuicide.net ((_/)o o(\_)) ICQ: 514984 YM/AIM: DaTwinkDaddy `-'(. .)`-' http://iguanasuicide.net/\_/ signature.asc Description: This is a digitally signed message part.
Re: Gnome open can not recognize a file by its name
On Feb 19, 7:30 pm, Nuno Magalhães wrote: > > Recently, my gnome failed to recognize any file by its name extension. > > That's actually a good thing if you've been reading the thread about > .desktop "viruses". However, shouldn't gnome fallback to file magic > test if extension test fails? > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org yes. That, for sure, will avoid some viruses. But the thing is that file magic test is gone on my gnome. I believe a dist-upgrade removed some gnome component which perform magic test. I just can recall the name now. Recent dist-upgrade wanted to remove a lot of gnome component. Of cause I did not upgrade. The problem happened right after lenny's release. If I can track my update history, I may figure out a way to solve it. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Lenny rescue mode doesn't see partitions; install mode does
Hello all, I just thought I'd boot up the i386 Lenny netinst.iso to ensure that it sees all the hardware: I'll wait for a couple of months before upgrading from Etch to Lenny. The Box is an HP NetServer LPr D6131-60200 dual PII/450. It has an integrated symbios SCSI system but the drives are connected to an HP NetRaid-1si that runs in Etch under the MegaRaid driver. If I boot up the Lenny CD in rescue mode, at the point it stops for "choose language", megaraid is not mentioned in the dmesg. While looking for the CD it finds the megaraid and the logical drives it presents (sda and sdb) with all their partitions. Eventually, the rescue-mode stuff gets to the point of looking for the partitions but then says it can't find them. However, from a shell you can fdisk the partitions no problem. If I boot up the Lenny CD in expert install mode, it has no problem finding the disks and shows the existing partitions. I'm hoping that when the time comes, the upgrade will proceed and I won't need to reinstall anyway, however the lack of a rescue mode troubles me. Any ideas why the discrepancy between rescue and install modes? Doug. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Gnome open can not recognize a file by its name
On Feb 19, 6:20 pm, Daryl Styrk wrote: > mond wrote: > > Hi, > > > Recently, my gnome failed to recognize any file by its name extension. > > For example, I have a .odt file but gnome fails to open it with > > openoffice writer. So every time I want to open .odt file I have to > > use "open with other application" option. It is annoying. Gnome also > > fails to display the correct icon for a certain file. > > > I think it is due to a recent careless dist-upgrade. This issue maybe > > caused be some components of gnome or nautlis removed. > > > Any idea how to fix this problem? > > > Thank you in advance. > > > Mond Zhu > > Right click a .odt select properties, choose open with.. If there is no > default option listed there choose add and select which you prefer. > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Thanks Daryl, I did that.I tried what you said. It did not work. I selected openoffice writer as preferred program. But gnome gave error message Couldn't display "..test.odt". Now it seems that gnome fails to recognize odt,xls,html etc files. But right click open with still works. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Gnome open can not recognize a file by its name
> Recently, my gnome failed to recognize any file by its name extension. That's actually a good thing if you've been reading the thread about .desktop "viruses". However, shouldn't gnome fallback to file magic test if extension test fails? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Java in Debian 5
On Thu, Feb 19, 2009 at 01:54:39PM -0800, francisco Quinonez wrote: > On February 18, 2009 11:44:43 pm S D wrote: > > --- On Thu, 2/19/09, Bret Busby wrote: [snip] > > Again, no. It means that Java SDK is now part of Debian distribution and > > people who want Java installed can install it, as you would install some > > arbitrary package. > > > > HTH > > The problem is, if it come on a standard installation as SELinux and probably > others; because in this case it becomes an obligation by default. > > BTW, SElinux could control all linux boxes as Windows do it, this is the > method to create dependency and control. Why do we need SElinux, yuck yuck. before I rant too much, is it a must install on debian 5. > [snip] -- "The point is, this is a way to help inoculate me about what has come and is coming." - George W. Bush 09/02/2000 on his anti-Gore ad, in an interview with the New York Times signature.asc Description: Digital signature
Re: Upgrade procedure: etch -> lenny
On Friday 20 February 2009 00:44:11 Chris Jones wrote: > > > 2. apt-get update > > > 2. replace "etch" by "lenny" in /etc/sources.list > > > > These steps need to be reversed, obviously. > > Thought the "apt-get update" stage ensured system was up-to-date before > the upgrade plunge, thus that my apt sources should point to the "etch" > repository. Herewith a simplistic explanation. I'm sure that I shall get corrected where I have deviated from the strictly technically correct! ;-) apt-get update doesn't render the system up-to-date. It updates the list of available packages. So if you want to upgrade to Lenny, you must first update your list of available packages to Lenny: therefore you must alter your sources.list _before_ you update the list of available packages. Otherwise you won't get a proper upgrade because your system will not know what is available. HTH Lisi -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
How to find uninstallable packages in apptiude?
Is there a way to get a list of uninstallable packages in aptitude? Something like "aptitude search ..." that would return a list of packages that were installed in the past but are currently uninstallable. Thanks -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: [OT] Linux on the London Tube?
Ha, I thought the same thing! On Tue, Feb 17, 2009 at 07:16:02PM +, Richard Lyons wrote: > I saw this ad on the tube recently, and was disappointed to find it wasn't > inviting people to migrate from the dark side > > http://the-place.net/penguin/migrate.jpg > > But maybe we should... > > richard > > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org > -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On Thu, Feb 19, 2009 at 02:10:11AM EST, Sven Joachim wrote: > On 2009-02-19 04:00 +0100, Chris Jones wrote: > > > I plan to upgrade to lenny over the weekend: > > > > 1. duplicate current etch system on a new partition > > Good idea to be cautious. bare-bones netinst -> install 3-4 apps I need -> copy previous system config files & user data -> [optional/skip] document the upgrade Benefits for a 3-4 hours linux time weekly hobbyist & w/ no deadlines: 1. existing system untouched & only a twenty seconds' reboot away.. 2. don't matter if it takes a month or a year to do the upgrade.. 3. serious spring cleaning every couple years or so.. 4. minimal understanding of debian packaging to pull it off. > > 2. apt-get update > > 2. replace "etch" by "lenny" in /etc/sources.list > > These steps need to be reversed, obviously. Thought the "apt-get update" stage ensured system was up-to-date before the upgrade plunge, thus that my apt sources should point to the "etch" repository. > > 3. apt-get dist-upgrade > > > > Am I missing anything? > > Yes, a very important step: inform yourself of potential problems and > read the release notes first! With my luck..? I'd be a winner again & the first to report a problem that nobody else cares about. Thanks, CJ -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Gnome open can not recognize a file by its name
mond wrote: > Hi, > > Recently, my gnome failed to recognize any file by its name extension. > For example, I have a .odt file but gnome fails to open it with > openoffice writer. So every time I want to open .odt file I have to > use "open with other application" option. It is annoying. Gnome also > fails to display the correct icon for a certain file. > > I think it is due to a recent careless dist-upgrade. This issue maybe > caused be some components of gnome or nautlis removed. > > Any idea how to fix this problem? > > Thank you in advance. > > Mond Zhu > > Right click a .odt select properties, choose open with.. If there is no default option listed there choose add and select which you prefer. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Gnome open can not recognize a file by its name
Hi, Recently, my gnome failed to recognize any file by its name extension. For example, I have a .odt file but gnome fails to open it with openoffice writer. So every time I want to open .odt file I have to use "open with other application" option. It is annoying. Gnome also fails to display the correct icon for a certain file. I think it is due to a recent careless dist-upgrade. This issue maybe caused be some components of gnome or nautlis removed. Any idea how to fix this problem? Thank you in advance. Mond Zhu -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: How can i install Debian via hard disk
On Thursday 19 February 2009 17:25:24 Qzi wrote: > How can i install Debian via hard disk ? > > My system is ubuntu ... > > I have dowload Lenny.iso on my hard disk ...But I don't know how to > install it ! http://debian.org/releases/stable/installmanual Specifically, appendix D section 4. Wrong list, BTW. If you need further assistance, follow-up to debian-user. -- Boyd Stephen Smith Jr. ,= ,-_-. =. b...@iguanasuicide.net ((_/)o o(\_)) ICQ: 514984 YM/AIM: DaTwinkDaddy `-'(. .)`-' http://iguanasuicide.net/\_/ signature.asc Description: This is a digitally signed message part.
Re: Upgrade procedure: etch -> lenny
On Thu, 19 Feb 2009 18:26:44 -0500 Chris Jones wrote: ... > So pin or hold, what's best? My understanding is that a hold is more of a short term, quick and dirty, solution, while for a more robust, longer term solution, one would use pinning. IINAE, though, and there may be other considerations involved. Celejar -- mailmin.sourceforge.net - remote access via secure (OpenPGP) email ssuds.sourceforge.net - A Simple Sudoku Solver and Generator -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On Thu, Feb 19, 2009 at 04:52:50PM EST, Celejar wrote: > On Thu, 19 Feb 2009 15:40:53 -0600 > Ron Johnson wrote: > > > On 02/19/2009 06:29 AM, Chris Jones wrote: > > > On Wed, Feb 18, 2009 at 10:41:21PM EST, Ron Johnson wrote: > > >> On 02/18/2009 09:00 PM, Chris Jones wrote: > > ... > > > >>> Note: I do not want apt to mess with my linux kernel. > > >> Then I'd pin that package. > > > > > > http://jaqque.sbih.org/kplug/apt-pinning.html ? > > > > No, not really. > > > > Go to section 3.10 of this document to see what I mean: > > http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html > > He can also just put a hold on it, although that will get removed > whenever he clears the pending actions list. So pin or hold, what's best? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On Thu, Feb 19, 2009 at 04:40:53PM EST, Ron Johnson wrote: > On 02/19/2009 06:29 AM, Chris Jones wrote: > >On Wed, Feb 18, 2009 at 10:41:21PM EST, Ron Johnson wrote: > >>On 02/18/2009 09:00 PM, Chris Jones wrote: > >>>I plan to upgrade to lenny over the weekend: > >>> > >>>1. duplicate current etch system on a new partition > >>>2. apt-get update > >>>2. replace "etch" by "lenny" in /etc/sources.list > >>>3. apt-get dist-upgrade > >>> > >>>Am I missing anything? > >>I'd first upgrade apt, dpkg & perl. Maybe that's just a legacy of > >>the woody->etch process, but could't hurt... > >> > >>>Note: I do not want apt to mess with my linux kernel. > >>Then I'd pin that package. > > > > http://jaqque.sbih.org/kplug/apt-pinning.html ? > > No, not really. > > Go to section 3.10 of this document to see what I mean: > http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html Thanks, that's more like it! -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
MySQL Clustering; Load balancing is not working.
This is a project of personal experimentation and learning; in other words, if I goof something up real bad, oh well. I can reinstall. I wanted to learn more about MySQL clustering so I looked around and found this guide [1]. It was the newest guide I found (8 months old), so I decided to give it a shot. I went through the guide with a little deviation and I end up with mostly the same results as the author. Data written to one node, shows up real quick on the other node. The management interface all gives the same results as the author too. However, the big problem (and reason for my post) is the virtual IP for the load balancing doesn't work right. When I try connect to the virtual IP: $ mysql -h 10.0.1.10 -u ldirector -p Enter password: It will sit here for a really long time before giving: ERROR 2003 (HY000): Can't connect to MySQL server on '10.0.1.10' (111) Which, if I understand right, means the client isn't getting data back from the MySQL server. However, if I try to connect directly to one of the nodes, I get success! So I started to think about it. What gives? What did I do wrong? Then I went back step by step to see where I went different from the author. Step 1) I obviously have different hardware, and the author uses Etch while I used Lenny (fresh net-install today so it is current stable). Step 2) Author uses MySQL 5.1.24 compiled from source. I used apt (I am not afraid to compile but I didn't because apt is awesome :). $ apt-cache show mysql-server | grep -i version Version: 5.0.51a-24 Well, I guess I can see the versioning being a problem. Maybe I should update and compile a newer version. ?? Step 3, 4, & 5) I get the exact same results as author with exception of trivial things (like our PID's don't match. Whoop-de-do. Of course they won't. Doesn't affect the outcome.) Step 6.1) For whatever reason, I can't update the GPG key for ultramonkey, but I just hit y to install anyway on apt. Also, he installs libdbd-mysql-perl from a download he gives from CPAN. I had errors with his commands. Turns out you have to install libmysqlclient15-dev (not 14) and you have to install make too! Then his link to the DBD-mysql-3.0002.tar.gz didn't work for me. However, the link to the newest (I believe) DBD-mysql-3.0008.tar.gz, _did_ work. So I installed that one. So again, versioning issues? Step 6.2 - 7) Everything works exactly as the author suggests it should, /except/ for the last line of: `mysql -h 10.0.1.10 -u ldirector -p` As stated before, this fails. I can ping 10.0.1.10. I can even ssh into 10.0.1.10. They both redirect me to the (current) primary load balancer. If I turn off the primary, I go to the secondary. Also, if I run `ipvsadm -L -n` I can see the connections show up, even though they time out. So I don't think it is the virtual part. I think it is the redirection to the MySQL session. The only thing I have found in the log files that doesn't look right, is every once in a while this line is put into the /var/log/ldirectord.log: Exiting with exit_status 2: configu_error: Configuration Error The thing is, from everything I can find, it is correct. I posted at the end of the email. I would appreciate any feedback people may have. Thanks! ~Stack~ [1] http://www.howtoforge.com/setting-up-a-loadbalanced-mysql-cluster-with-m ysql5.1 $cat /etc/ha.d/ldirector.cf # Global Directives checktimeout=10 checkinterval=2 autoreload=no logfile="local0" quiescent=yes virtual=10.0.1.10:3306 service=mysql real=10.0.1.33:3306 gate real=10.0.1.34:3306 gate checktype=negotiate login="ldirector" passwd="ldirectorpassword" database="ldirectordb" request="SELECT * FROM connectioncheck" scheduler=wrr -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Java in Debian 5
--- On Thu, 2/19/09, francisco Quinonez wrote: > The problem is, if it come on a standard installation as > SELinux and probably > others; because in this case it becomes an obligation by > default. What Java packages are you referring to? If you don't use any Java apps you should be able to remove Java without any ill effect. > BTW, SElinux could control all linux boxes as Windows do > it, this is the > method to create dependency and control. Dependency maybe, control no. Java is Free Software licensed under GNU, is it not? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Debian GNU/Linux 5.0 released (fwd)
On Fri, Feb 20, 2009 at 02:48:55AM +0900, Bret Busby wrote: > > Hello. > > In the message below, is the part > > "In addition to the regular installation media, Debian GNU/Linux can now > also be directly used without prior installation. The special images > used, known as live images, are available for CDs, USB sticks, and > netboot setups. Initially, these are provided for the amd64 and i386 > architectures only." > > I have been to the Debian web site, and the web page at > http://www.debian.org/distrib/ , does not include any reference to "live > images", that can be run without being installed. > > That web page, with the heading and title, "Getting Debian", refers only > to installable versions of Debian 5. It says > "If you simply want to install Debian, these are your options:" > but no mention is made, of anything like > "If you want to run Debian without installing it, you do this:" > > I note that the paragraph above, from the announcement message below, > saya that the "live images" are special images, indicating that they are > not the same as standard installable images. > > Are "live images" of Debian 5, available? > > If so, how do we get them? > > Thank you in anticipation. > http://cdimage.debian.org/debian-cd/5.0.0-live/ or any of the mirrors that hold CD images. You'll get a .iso file which you'll need to burn to a blank CD. HTH, AndyC > -- > Bret Busby > Armadale > West Australia > .. > > "So once you do know what the question actually is, > you'll know what the answer means." > - Deep Thought, > Chapter 28 of Book 1 of > "The Hitchhiker's Guide to the Galaxy: > A Trilogy In Four Parts", > written by Douglas Adams, > published by Pan Books, 1992 > > > > -- Forwarded message -- > Date: Sat, 14 Feb 2009 22:58:48 -1100 > From: Alexander Reichle-Schmehl > To: debian-annou...@lists.debian.org > Subject: Debian GNU/Linux 5.0 released > Resent-Date: Sun, 15 Feb 2009 09:59:15 + (UTC) > Resent-From: debian-annou...@lists.debian.org > > > > -- > To UNSUBSCRIBE, email to debian-announce-requ...@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org > > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a > subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Logitech MX Revolution/MX1100
> > > > Original Message >From: aneurin.pr...@gmail.com >To: debian-user@lists.debian.org >Subject: Re: Logitech MX Revolution/MX1100 >Date: Thu, 19 Feb 2009 17:40:45 + > >>On Thu, Feb 19, 2009 at 5:02 PM, wrote: Original Message From: aneurin.pr...@gmail.com To: debian-user@lists.debian.org Subject: RE: Logitech MX Revolution/MX1100 Date: Thu, 19 Feb 2009 16:42:20 + >Hello all, > >I'm thinking about replacing my mouse soon as the ball is >starting to stick >after about a decade of use, and I'm looking at either the >Logitech MX >Revolution or MX1100. Does anybody have any experience with >either of these in >Linux? I'm particularly interested in whether the special >features work, like >the magic scroll wheel, extra buttons, and (on the Revolution) >the extra scroll >wheel plus the ability to move the wheel left or right. > >I'm a little wary since my current mouse has a thumb button which only seems to >do anything when using the special driver in Windows, so I don't want to pay >for features if they won't work for me. > >Thanks, >Nye > >>> I know this is perhaps a trite suggestion but before I'd replace >it, >>> I'd take it apart and clean everything. I am always surprised at >the >>> stuff I find inside. >> >>I'm not sure you understand the concept of an excuse to buy new >shiny >>things :P >> >>Seriously though I do clean it out fairly well every now and then, >but it >>would be nice not to have to bother, plus I'm finding it >increasingly >>difficult to press the middle button without scrolling a notch, >which >>really annoys me if I'm trying to, say, open a link in a new tab, or >>paste something and end up putting it in the wrong place. >> >>Nye >> Of course I understand the famous Don Ho "shiny new things" concept (or was it "tiny new things"? or was it ---). Enjoy your new toy Larry >> >>-- >>To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org >>with a subject of "unsubscribe". Trouble? Contact listmas...@lists.d >ebian.org >> >> >> -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xemacs flickers
Hi all, I have xemacs21 installed on a the following system (PC) deb ftp://ftp.de.debian.org/debian/ sid main contrib non-free deb-src ftp://ftp.de.debian.org/debian/ sid main deb http://security.debian.org/ lenny/updates main contrib deb-src http://security.debian.org/ lenny/updates main contrib deb http://www.debian-multimedia.org unstable main After using xemacs for several minutes, the menu bar begins to flicker and xemacs uses up about 50% of the CPU time in top. I have found several mentions of similar problems in google from around 2003 but saw now solution. What is going on? I cannot imagine life without the one true editor... cheers Peter -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Java in Debian 5
On February 18, 2009 11:44:43 pm S D wrote: > --- On Thu, 2/19/09, Bret Busby wrote: > > Does this now mean that we cannot instal and run Debian 5 > > without Java, > > No, it doesn't mean that. You can install and run Debian without Java. > > > or that Debian cannot fully run without Java, > > in the same way that some versions of MS Windows cannot > > fully run without Internet Explorer? > > Again, no. It means that Java SDK is now part of Debian distribution and > people who want Java installed can install it, as you would install some > arbitrary package. > > HTH The problem is, if it come on a standard installation as SELinux and probably others; because in this case it becomes an obligation by default. BTW, SElinux could control all linux boxes as Windows do it, this is the method to create dependency and control. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
On Thursday 19 February 2009, Richard Lyons wrote: > I used to think standard batteries were a better idea too, but they don't > perform anywhere near as well as the L-ion flat ones most cameras now use. This is slightly misleading. Yes, lb for lb, LI batts perform better, but often if a camera uses AA's, it uses two or four, which pack a wallop vs a Li batt which may last longer, but how long do you really need vs the ease of having standard chargers for AA and the excellent reusability of AA's in many devices? For me, it's a win-win for my two smaller cams (Canon S5 and Pana LZ10, that use AA's and last a long time with Sanyo Eneloops). My big cameras both use the standard XT/XTi LI charger, so at most, for 4 cameras, I carry two chargers and two cheap sets of replacements for the AA's. I can shoot indefinitely for cheap money, vs. having two or four replacement LI batts around (which, for name brand, are minmum 20 bucks each on the cheap end) > I was in Budapest last week with a friend who had to buy new AAs for his > camera. An hour later they were flat, but my camera's L-ion battery lasted > a full day. But if yours went flat, a replacement is not easy to find and you'd have to carry a special one-use charger. For some people, utility over absolute power contained in the batt is a win. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: tools to get a mirror of modem/router configuration
Celejar wrote: > On Thu, 19 Feb 2009 14:32:19 -0500 > "H.S." wrote: > >> H.S. wrote: >>> Hello, >>> >>> I vaguely recall that we can somehow "copy" or mirror the configuration >>> interface (accessible via a browser) of a modem or a router to a local >>> hard disk. This can be then browsed from that saved copy. Anybody know >>> if we have tools or packages in Debian to do so? >>> >>> The objective is to 'mirror' the configuration of a modem so that I can >>> walk the user through the configuration steps whenever need be (I can >>> click through the interface on my copy and the user will be browsing his >>> modem's actual interface). > > I don't have an answer for you, but I'm having trouble imagining that > there can really be any solution for the general case. These units, at > least the home / SOHO types with which I'm familiar, all use > proprietary web based interfaces, often with lots of (yuck) > javascript. For any given interface, I suppose one could write some > sort of scraper, but how could this be implemented as a general tool? Yes, this particular modem has all the pages as a script (cgi). Well, at least this shown I am not missing some tool that actually would do this job. Thanks. -- Please reply to this list only. I read this list on its corresponding newsgroup on gmane.org. Replies sent to my email address are just filtered to a folder in my mailbox and get periodically deleted without ever having been read. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On Thu, 19 Feb 2009 15:40:53 -0600 Ron Johnson wrote: > On 02/19/2009 06:29 AM, Chris Jones wrote: > > On Wed, Feb 18, 2009 at 10:41:21PM EST, Ron Johnson wrote: > >> On 02/18/2009 09:00 PM, Chris Jones wrote: ... > >>> Note: I do not want apt to mess with my linux kernel. > >> Then I'd pin that package. > > > > http://jaqque.sbih.org/kplug/apt-pinning.html ? > > No, not really. > > Go to section 3.10 of this document to see what I mean: > http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html He can also just put a hold on it, although that will get removed whenever he clears the pending actions list. Celejar -- mailmin.sourceforge.net - remote access via secure (OpenPGP) email ssuds.sourceforge.net - A Simple Sudoku Solver and Generator -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On 02/19/2009 06:29 AM, Chris Jones wrote: On Wed, Feb 18, 2009 at 10:41:21PM EST, Ron Johnson wrote: On 02/18/2009 09:00 PM, Chris Jones wrote: I plan to upgrade to lenny over the weekend: 1. duplicate current etch system on a new partition 2. apt-get update 2. replace "etch" by "lenny" in /etc/sources.list 3. apt-get dist-upgrade Am I missing anything? I'd first upgrade apt, dpkg & perl. Maybe that's just a legacy of the woody->etch process, but could't hurt... Note: I do not want apt to mess with my linux kernel. Then I'd pin that package. http://jaqque.sbih.org/kplug/apt-pinning.html ? No, not really. Go to section 3.10 of this document to see what I mean: http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html -- Ron Johnson, Jr. Jefferson LA USA Supporting World Peace Through Nuclear Pacification -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: unstable and bugs
On Thu, Feb 19, 2009 at 12:20, Celejar wrote: > We had a recent thread about the reliability of Sid. I just got hit by > this 'grave' one: > > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515976 > > This is a bug in libxi6 which causes the system to (partially, at least > in my case) ignore the specified keyboard layout and revert to qwerty. > The (hopefully temporary) workaround, though, was pretty simple: > > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515976#19 I might have encountered the same bug, but I thought it was due to evdev/hal (as I switched my kb config to hal at that time). For my issue, a workaround is to set the kb map with setxkbmap, like this: setxkbmap -model evdev -layout jp -variant OADG109A Cheers, Kelly Clowers -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Suspend/Resume issues - Custom scripts not running? Mouse frozen?
Hi. I recently installed Debian Lenny onto my Dell Studio XPS 16 laptop. I'm having issues getting resume to work properly. I can suspend, but when I resume and compiz was running, my screen shows up with only my cursor and some corrupted textures. I attempted to solve this by writing a script /etc/acpi/suspend.d/00-compiz.sh that executes the following: Code: #!/bin/sh killall compiz killall compiz.real xfwm4 and /etc/acpi/resume.d/99-compiz.sh Code: #!/bin/sh killall xfwm4 compiz --replace These scripts don't appear to be working, however. Manually killing compiz before suspending will show my screen as normal upon resume, but simply running pm-suspend, gnome-power-cmd, or /usr/share/acpi-support/suspendorhibernate won't. In both cases, my touchpad becomes completely unusable on resume. I tried to solve this by using another script: Code: #!/bin/sh modprobe -r psmouse echo -n "i8042" > /sys/bus/platform/drivers/i8042/unbind echo -n "i8042" > /sys/bus/platform/drivers/i8042/bind modprobe psmouse It doesn't work and I'm not sure what else to try. I'm not even sure if the scripts are running (how can I check?). Can anyone help? This issue is really the only one keeping me from using Linux permanently on my laptop.
Re: tools to get a mirror of modem/router configuration
On Thu, 19 Feb 2009 14:32:19 -0500 "H.S." wrote: > H.S. wrote: > > Hello, > > > > I vaguely recall that we can somehow "copy" or mirror the configuration > > interface (accessible via a browser) of a modem or a router to a local > > hard disk. This can be then browsed from that saved copy. Anybody know > > if we have tools or packages in Debian to do so? > > > > The objective is to 'mirror' the configuration of a modem so that I can > > walk the user through the configuration steps whenever need be (I can > > click through the interface on my copy and the user will be browsing his > > modem's actual interface). I don't have an answer for you, but I'm having trouble imagining that there can really be any solution for the general case. These units, at least the home / SOHO types with which I'm familiar, all use proprietary web based interfaces, often with lots of (yuck) javascript. For any given interface, I suppose one could write some sort of scraper, but how could this be implemented as a general tool? Celejar -- mailmin.sourceforge.net - remote access via secure (OpenPGP) email ssuds.sourceforge.net - A Simple Sudoku Solver and Generator -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
unstable and bugs
We had a recent thread about the reliability of Sid. I just got hit by this 'grave' one: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515976 This is a bug in libxi6 which causes the system to (partially, at least in my case) ignore the specified keyboard layout and revert to qwerty. The (hopefully temporary) workaround, though, was pretty simple: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515976#19 Celejar -- mailmin.sourceforge.net - remote access via secure (OpenPGP) email ssuds.sourceforge.net - A Simple Sudoku Solver and Generator -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: tools to get a mirror of modem/router configuration
On Thu, Feb 19, 2009 at 02:32:19PM -0500, H.S. wrote: > H.S. wrote: > > Hello, > > > > I vaguely recall that we can somehow "copy" or mirror the configuration > > interface (accessible via a browser) of a modem or a router to a local > > hard disk. This can be then browsed from that saved copy. Anybody know > > if we have tools or packages in Debian to do so? > > > > The objective is to 'mirror' the configuration of a modem so that I can > > walk the user through the configuration steps whenever need be (I can > > click through the interface on my copy and the user will be browsing his > > modem's actual interface). > > > > Thanks. > > Anybody? I'm probably missing something here, but how about setting a symlink to the config file(s) in a web-accessible directory. I often do something like this, sometimes adding ".txt" to the end of the symlink name so the server treats it as a text file. I don't know what to make of the "click through" bit; that sounds like maybe you want to generate a set of linked web pages from the config file, which sounds like a job for perl, python, etc. Ken -- Ken Irving -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Seriously, no way to reconfigure video card in lenny?
[ Please wrap your lines at 80 characters or less; this increases the likelihood of people reading your posts. (It is also part of the code of conduct for Debian mailing lists.) ] On Wed, Feb 18, 2009 at 23:33:32 -0800, S D wrote: > On Thu, 2/19/09, Sven Joachim wrote: [...] >> If that doesn't work, "Xorg -configure"should give you a starting >> point for xorg.conf. Further customizing has to be done with your >> favorite text editor. [...] > I'm trying to resolve a specific issue that appeared after upgrade > from etch to lenny, see > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515840. > > In etch the video card was configured using dpkg-reconfigure and it > was working marvelously. In lenny it's all screwed up and > dpkg-reconfigure no longer allows to reconfigure the video card. It's > simply not clear for what needs to be customized to get it working. The "new way" to configure resolution, multiple heads, etc. is via RandR: http://wiki.debian.org/XStrikeForce/HowToRandR12 There are several graphical tools for configuring RandR in the Debian archives, see "apt-cache search randr". If your driver/hardware combination does not support the RandR extension then you can add the old-fashioned "Modes" lines to your xorg.conf yourself, following Sven's hint on how to get started. (Proprietary drivers often have a vendor-specific tool for configuration.) -- Regards,| http://users.icfo.es/Florian.Kulzer Florian | -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: radeonhd on R5xx based card + dri very slow
On Thu, Feb 19, 2009 at 04:55, Thomas Preud'homme wrote: > On Thursday 19 February 2009 09:32:33 Amit Uttamchandani wrote: >> On Mon, 16 Feb 2009 09:43:17 +0100 >> "Thomas Preud'homme" wrote: >> >> [snip] >> >> > Yes, all of these is installed. I'm sorry in fact because I forgot about >> > this thread: I actually found what was the problem. ATI cards need an >> > additional option in xorg.conf in the section "Device": >> > >> > Option "DRI" >> > >> > For those who would seek for the same information, I attach my xorg.conf >> > to this email. As latest xorg now uses evdev instead of kbd, I attach my >> > working evdev config un hal. I don't know if it's a clean configuration >> > but it's a working one. By the way, I think there is a bug on >> > xserver-xorg because a reconfigure modify the xorg.conf for the keyboard >> > although this does nothing. Only modifications in >> > /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi have made xorg >> > recognize my keyboard layout and options. >> > >> > > Also is your graphics card compatible with the 'radeon' driver? I've >> > > had more success with that. >> > >> > Yep it is. It's an X1600 Mobility chipset. It now perfectly works with >> > transparency on KDE 4 :) >> >> That's great news! Thanks for posting back! > > It is indeed. I will definitively buy ati chipset based card for my next > computer. Having a free (as in free speach) driver is nice. And it is far more > stable than fglrx driver. Glad you got it working. It is worth noting that the "DRI" option is not in any way ATI-specific. It is needed to turn on Direct Rendering Infrastructure (aka accelerated 3D) for any card. The binary blob drivers may not use it (I don't know), if so, it is because they basically implement their own thing outside of X's native systems. Cheers, Kelly Clowers -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: tools to get a mirror of modem/router configuration
H.S. wrote: > Hello, > > I vaguely recall that we can somehow "copy" or mirror the configuration > interface (accessible via a browser) of a modem or a router to a local > hard disk. This can be then browsed from that saved copy. Anybody know > if we have tools or packages in Debian to do so? > > The objective is to 'mirror' the configuration of a modem so that I can > walk the user through the configuration steps whenever need be (I can > click through the interface on my copy and the user will be browsing his > modem's actual interface). > > Thanks. Anybody? -- Please reply to this list only. I read this list on its corresponding newsgroup on gmane.org. Replies sent to my email address are just filtered to a folder in my mailbox and get periodically deleted without ever having been read. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: USB Wireless Adapter for Linux?
On Thursday, 19.02.2009 at 10:38 +, Dave Ewart wrote: > On Wednesday, 18.02.2009 at 22:36 +0200, Dotan Cohen wrote: > > > > I've used two Edimax adapters without issue: they just work. > > > > Really? The last time I tried, the fact that the Edimax adaptors did > > not work was the second most duped bug in Launchpad. I've got a > > neighbor that is getting Ubuntu next week, if the issue truly is > > resolved. Thanks for the heads up. > > Hmmm, if what you say is true, I'd better double-check. I don't have > access to the machine in question right now, though, so I can't tell you > which kernel module it uses. > > My receipt says the adapter I got was "Edimax EW-7318USg 54G 802.11 > b/g". > > The model was sold at http://lugradio.org/live/UK2008/ specifically as > "Just Works With Linux", which in my experience it did: that would have > been with Ubuntu/Hardy, though, not Debian. > > More details later... The kernel appears to have loaded these modules: rt2500usb,rt73usb,rt2x00usb,btusb Those appear to be the ones associated with the Edimax USB adapter. Dave. -- Dave Ewart da...@ceu.ox.ac.uk Computing Manager, Cancer Epidemiology Unit University of Oxford / Cancer Research UK PGP: CC70 1883 BD92 E665 B840 118B 6E94 2CFD 694D E370 Get key from http://www.ceu.ox.ac.uk/~davee/davee-ceu-ox-ac-uk.asc N 51.7516, W 1.2152 -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: label swap partition
The last posting asking about previous windows use. Also, blkid thought it was ntfs. This made me guess there was a stale superblock from the previous NTFS use that was confusing linux. So I took the swap partition off line, used dd to zero the beginning of it, and did mkswap again. All is now working. IMHO this is a bug in mkswap - it should make any arbitrary partition into a swap partition no matter what its previous content. -- -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: lenny netinst on laptop help
Chris Lew : > > lspci shows the following network related info: > Ethernet controller: Marvell Technology Group Ltd. Device 4380 (rev 10) > Network controller: Intel Corporation Wireless WiFi Link 5100 > > i also ran the dmesg command, but couldn't recall how to 'scroll' up to the > other output and did not see any network related info displayed on the > screen. dmesg | less Sometimes, you can use Shift-PgUp too. -- Any technology distinguishable from magic is insufficiently advanced. (*)http://blinkynet.net/comp/uip5.html Linux Counter #80292 - -http://www.faqs.org/rfcs/rfc1855.htmlPlease, don't Cc: me. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: ifconfig data
Hugo Vanwoerkom wrote: Aneurin Price wrote: On Thu, Feb 19, 2009 at 11:43 AM, Hugo Vanwoerkom wrote: Maybe this would suit you: To explain a little: I wrote a little program that analyzes the output of apache2's access log. It puts just one message out to syslog if the server is accessed many times. But I want to be the only one that accesses it, so I need to know who I am. Now it puts out: Feb 19 12:17:17 debian do_chk_aplog_3[22590]: 200.57.201.39 32 hits my IP=200.57.201.39 (336) That says that I accessed the server 32 times as myself. That would give me a warning if anyone else accesses it, should be impossible because I have the firewall blocked against it. Thanks again for that page. Hugo -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Debian GNU/Linux 5.0 released (fwd)
Bret Busby escreveu: > "In addition to the regular installation media, Debian GNU/Linux can now > also be directly used without prior installation. The special images > used, known as live images, are available for CDs, USB sticks, and > netboot setups. Initially, these are provided for the amd64 and i386 > architectures only." > > I have been to the Debian web site, and the web page at > http://www.debian.org/distrib/ , does not include any reference to "live > images", that can be run without being installed. > > [...] > > Are "live images" of Debian 5, available? > Yes. http://debian-live.alioth.debian.org/ -- Eduardo M Kalinowski edua...@kalinowski.com.br -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Debian GNU/Linux 5.0 released (fwd)
Hello. In the message below, is the part "In addition to the regular installation media, Debian GNU/Linux can now also be directly used without prior installation. The special images used, known as live images, are available for CDs, USB sticks, and netboot setups. Initially, these are provided for the amd64 and i386 architectures only." I have been to the Debian web site, and the web page at http://www.debian.org/distrib/ , does not include any reference to "live images", that can be run without being installed. That web page, with the heading and title, "Getting Debian", refers only to installable versions of Debian 5. It says "If you simply want to install Debian, these are your options:" but no mention is made, of anything like "If you want to run Debian without installing it, you do this:" I note that the paragraph above, from the announcement message below, saya that the "live images" are special images, indicating that they are not the same as standard installable images. Are "live images" of Debian 5, available? If so, how do we get them? Thank you in anticipation. -- Bret Busby Armadale West Australia .. "So once you do know what the question actually is, you'll know what the answer means." - Deep Thought, Chapter 28 of Book 1 of "The Hitchhiker's Guide to the Galaxy: A Trilogy In Four Parts", written by Douglas Adams, published by Pan Books, 1992 -- Forwarded message -- Date: Sat, 14 Feb 2009 22:58:48 -1100 From: Alexander Reichle-Schmehl To: debian-annou...@lists.debian.org Subject: Debian GNU/Linux 5.0 released Resent-Date: Sun, 15 Feb 2009 09:59:15 + (UTC) Resent-From: debian-annou...@lists.debian.org -- To UNSUBSCRIBE, email to debian-announce-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
php-cgi segfault problem
Hello, I recently upgraded a debian etch box to lenny. Since then php-cgi keeps segfault-ing from time to time. It doesn't happen on every http request, many requests are served ok. Any ideas concerning the solution of this problem ? [137316.466578] php-cgi[7348]: segfault at 7f49ccafeed0 ip 7f49ccafeed0 sp 40919128 error 14 in libogg.so.0.5.3[7f49d1295000+5000] [138203.582993] php-cgi[16206]: segfault at 7f2a76ecaed0 ip 7f2a76ecaed0 sp 419fc128 error 14 in librt-2.7.so[7f2a7dc1c000+8000] [138502.153652] php-cgi[19324]: segfault at 7fe5bc663ed0 ip 7fe5bc663ed0 sp 4171d128 error 14 in libICE.so.6.3.0[7fe5bd897000+16000] [138897.500032] php-cgi[24002]: segfault at 7fb9b25e2ed0 ip 7fb9b25e2ed0 sp 41178128 error 14 in librt-2.7.so[7fb9b9334000+8000] [139043.153509] php-cgi[25556]: segfault at 7fff76fabed0 ip 7fff76fabed0 sp 41e0f128 error 14 in librt-2.7.so[7fff7dcfd000+8000] [139158.987399] php-cgi[26771]: segfault at 7f2b74f66ed0 ip 7f2b74f66ed0 sp 424d5128 error 14 in librt-2.7.so[7f2b7bcb8000+8000] [139499.690934] php-cgi[31180]: segfault at 7f6f60395ed0 ip 7f6f60395ed0 sp 409f0128 error 14 in librt-2.7.so[7f6f670e7000+8000] [139550.782813] php-cgi[32293]: segfault at 7f01ba925ed0 ip 7f01ba925ed0 sp 426d1128 error 14 in librt-2.7.so[7f01c1677000+8000] [140460.991573] php-cgi[10360]: segfault at 7f4b6d057edb ip 7f4b6bd361af sp 41b8ec90 error 4 in libgcc_s.so.1[7f4b6bd26000+16000] [140851.006761] php-cgi[14630]: segfault at 7faea0f82ed0 ip 7faea0f82ed0 sp 41b51128 error 14 in libtasn1.so.3.0.15[7faea7391000+f000] [141579.990748] php-cgi[23747]: segfault at 7fc7cc172ed0 ip 7fc7cc172ed0 sp 40ccb128 error 14 in libXdmcp.so.6.0.0[7fc7ce9e1000+5000] [141631.383734] php-cgi[24500]: segfault at 7f33449d6ed0 ip 7f33449d6ed0 sp 40df9128 error 14 in librt-2.7.so[7f334b728000+8000] [141696.438542] php-cgi[25241]: segfault at 7fef85308ed0 ip 7fef85308ed0 sp 40c29128 error 14 in librt-2.7.so[7fef8c05a000+8000] [141912.033105] php-cgi[28056]: segfault at 7f1118ba9ed0 ip 7f1118ba9ed0 sp 4189f128 error 14 in librt-2.7.so[7f111f8fb000+8000] [142264.105270] php-cgi[31990]: segfault at 7f39824efed0 ip 7f39824efed0 sp 421b5128 error 14 in libltdl.so.3.1.6[7f3982aa5000+7000] [142561.344205] php-cgi[3668]: segfault at 7f25e19aeed0 ip 7f25e19aeed0 sp 411bf128 error 14 in librt-2.7.so[7f25e870+8000] [143261.213414] php-cgi[12091]: segfault at 7fab215fbed0 ip 7fab215fbed0 sp 42423128 error 14 in libtasn1.so.3.0.15[7fab27a0a000+f000] hyperion cgi # dmesg|grep -c segf 583 Linux hyperion 2.6.26-1-amd64 #1 SMP Sat Jan 10 17:57:00 UTC 2009 x86_64 GNU/Linux PHP 5.2.6-1+lenny2 with Suhosin-Patch 0.9.6.2 (cli) (built: Jan 26 2009 21:54:14) Copyright (c) 1997-2008 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies Server version: Apache/2.2.9 (Debian) Server built: Jan 21 2009 00:06:59 Thank you ! Bogdan -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Sa. 21.2.: Sonix Saturday Night Show
On Thu, 19 Feb 2009 09:59:19 -0700 Martin Willcocks wrote: Hello Martin, > How did this spam get on this list. Why is the list open to hijacking Sadly, it happens sometimes. > know! The listowner needs to have some means to block such messages > in future. The list is forever being hammered by spammers. If there were no protection in place we'd be seeing hundreds, if not thousands, of spam messages per week. Occasionally, one slips through. Application of something like SpamAssassin or Bogofilter (locally) will improve your reading pleasure, I'm sure. -- Regards _ / ) "The blindingly obvious is / _)radnever immediately apparent" Tired of doing day jobs with no thanks for what I do Do Anything You Wanna Do - Eddie & The Hotrods signature.asc Description: PGP signature
Re: ifconfig data
Aneurin Price wrote: On Thu, Feb 19, 2009 at 11:43 AM, Hugo Vanwoerkom wrote: Hi, Ifconfig says: ... ppp0 Link encap:Point-to-Point Protocol inet addr:200.57.201.43 P-t-P:200.57.219.18 Mask:255.255.255.255 ... I want that inet addr (200.57.201.43) in a program and I prefer not to run the ifconfig command from it and grep it. Does anyone know where else in the system that information resides? I installed the net-tools source and looking at ifconfig.c it's not immediately obvious. Why don't you want to grep the output of ifconfig? Maybe this would suit you: http://www.geekpage.jp/en/programming/linux-network/get-ipaddr.php (Changing eth0 to ppp0 obviously) NB. To get that example to work I had to change the includes as follows: #include #include #include #include #include #include #include Bingo! That is exactly what I was looking for! Thanks! Hugo -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Logitech MX Revolution/MX1100
On Thu, Feb 19, 2009 at 5:02 PM, wrote: >> >> >> >> Original Message >>From: aneurin.pr...@gmail.com >>To: debian-user@lists.debian.org >>Subject: RE: Logitech MX Revolution/MX1100 >>Date: Thu, 19 Feb 2009 16:42:20 + >> >>>Hello all, >>> >>>I'm thinking about replacing my mouse soon as the ball is starting >>to stick >>>after about a decade of use, and I'm looking at either the Logitech >>MX >>>Revolution or MX1100. Does anybody have any experience with either >>of these in >>>Linux? I'm particularly interested in whether the special features >>work, like >>>the magic scroll wheel, extra buttons, and (on the Revolution) the >>extra scroll >>>wheel plus the ability to move the wheel left or right. >>> >>>I'm a little wary since my current mouse has a thumb button which >>only seems to >>>do anything when using the special driver in Windows, so I don't >>want to pay >>>for features if they won't work for me. >>> >>>Thanks, >>>Nye >>> > I know this is perhaps a trite suggestion but before I'd replace it, > I'd take it apart and clean everything. I am always surprised at the > stuff I find inside. I'm not sure you understand the concept of an excuse to buy new shiny things :P Seriously though I do clean it out fairly well every now and then, but it would be nice not to have to bother, plus I'm finding it increasingly difficult to press the middle button without scrolling a notch, which really annoys me if I'm trying to, say, open a link in a new tab, or paste something and end up putting it in the wrong place. Nye -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: exim4: auth. to smarthost - what to set AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS to?
I wrote: > In exim4, what value should AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS be set to > to enable > authentication associated feature? ... > I tried simply setting to true like this: > > AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS = true > > but that yields the error: > > # /etc/init.d/exim4 restart > Restarting MTA: 2009-02-19 11:03:43 Exim configuration error in line > 637 of /var/lib/exim4/config.autogenerated.\ > tmp: > authenticator name missing ... Never mind--I had put the assignment line in the wrong place. Daniel -- (Plain text sometimes corrupted to HTML "courtesy" of Microsoft Exchange.) [F]
Re: digital camera recomendations
On 2009-02-19T16:05:55, Richard Lyons wrote: > The rechargeeables, both NiCad and NiMH, are a good idea in principle, but > lose charge when not in use and become ineffective surprisingly quickly in > my experience. Try the low discharge NiMH batteries like Sanyo Eneloop. /Allan -- Allan Wind Life Integrity, LLC http://lifeintegrity.com -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
RE: Sa. 21.2.: Sonix Saturday Night Show
How did this spam get on this list. Why is the list open to hijacking with a graphic image overlaying the entire text of the digest? This list has nothing to do with Berlin music events or Sonix, as far as I know! The listowner needs to have some means to block such messages in future. Martin Willcocks Taylorsville, UT, USA. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
RE: Logitech MX Revolution/MX1100
> > > > Original Message >From: aneurin.pr...@gmail.com >To: debian-user@lists.debian.org >Subject: RE: Logitech MX Revolution/MX1100 >Date: Thu, 19 Feb 2009 16:42:20 + > >>Hello all, >> >>I'm thinking about replacing my mouse soon as the ball is starting >to stick >>after about a decade of use, and I'm looking at either the Logitech >MX >>Revolution or MX1100. Does anybody have any experience with either >of these in >>Linux? I'm particularly interested in whether the special features >work, like >>the magic scroll wheel, extra buttons, and (on the Revolution) the >extra scroll >>wheel plus the ability to move the wheel left or right. >> >>I'm a little wary since my current mouse has a thumb button which >only seems to >>do anything when using the special driver in Windows, so I don't >want to pay >>for features if they won't work for me. >> >>Thanks, >>Nye >> I know this is perhaps a trite suggestion but before I'd replace it, I'd take it apart and clean everything. I am always surprised at the stuff I find inside. Larry >> >>-- >>To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org >>with a subject of "unsubscribe". Trouble? Contact listmas...@lists.d >ebian.org >> >> >> -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Apache2 confused by index.php after Lenny upgrade
Jeff D wrote: On Thu, 19 Feb 2009, Kent West wrote: I'm ignorant when it comes to Apache/php, etc. I had a working etch server with Apache2 and PHP5, but after the upgrade to Lenny, whenever I point my web browser to a simple index.php file: the web browser opens a dialog window asking what I want to do with the index.php file. I'm unsure how to go about troubleshooting this. wes...@]goshen]:/etc/apache2:> ls mods-enabled/ alias.conf authz_user.load include.load ssl.conf alias.load autoindex.conf mime.conf ssl.load auth_basic.load autoindex.load mime.load status.conf authn_file.load cgi.load negotiation.conf status.load authz_default.loaddir.conf negotiation.load authz_groupfile.load dir.load setenvif.conf authz_host.load env.load setenvif.load (I'm thinking maybe there's supposed to be a php5.conf or something in the above directory? If so, where do I get it?) Thanks for any help! to enable the php5 confs you can run: sudo a2enmod php5 then reload apache and it should start serving your php files. Ah! You're a genius! Worked wonderfully. I see that this utility put php5.conf and php5.load into the /etc/apache2/mods-enabled directory, so I reckon my guess above was correct. Learning a little bit more each day. Thanks! -- Kent West <*)))>< http://kentwest.blogspot.com -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Apache2 confused by index.php after Lenny upgrade
On Thu, 19 Feb 2009, Kent West wrote: > I'm ignorant when it comes to Apache/php, etc. > > I had a working etch server with Apache2 and PHP5, but after the upgrade to > Lenny, whenever I point my web browser to a simple index.php file: > the web browser opens a dialog window asking what I want to do with the > index.php file. > > I'm unsure how to go about troubleshooting this. > > wes...@]goshen]:/etc/apache2:> ls mods-enabled/ > alias.conf authz_user.load include.load ssl.conf > alias.load autoindex.conf mime.conf ssl.load > auth_basic.load autoindex.load mime.load status.conf > authn_file.load cgi.load negotiation.conf status.load > authz_default.loaddir.conf negotiation.load > authz_groupfile.load dir.load setenvif.conf > authz_host.load env.load setenvif.load > > (I'm thinking maybe there's supposed to be a php5.conf or something in the > above directory? If so, where do I get it?) > > Thanks for any help! > > to enable the php5 confs you can run: sudo a2enmod php5 then reload apache and it should start serving your php files. -- 8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Techno. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Logitech MX Revolution/MX1100
Hello all, I'm thinking about replacing my mouse soon as the ball is starting to stick after about a decade of use, and I'm looking at either the Logitech MX Revolution or MX1100. Does anybody have any experience with either of these in Linux? I'm particularly interested in whether the special features work, like the magic scroll wheel, extra buttons, and (on the Revolution) the extra scroll wheel plus the ability to move the wheel left or right. I'm a little wary since my current mouse has a thumb button which only seems to do anything when using the special driver in Windows, so I don't want to pay for features if they won't work for me. Thanks, Nye -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Java in Debian 5
On Thu, Feb 19, 2009 at 04:07:05PM +0900, Bret Busby wrote: > > On the web page at > http://www.debian.org/releases/stable/i386/release-notes/ch-whats-new.en.html#id2794519 > > is stated: > > "2.7. Java now in Debian > > The OpenJDK Java Runtime Environment openjdk-6-jre and Development Kit > openjdk-6-jdk, needed for executing Java GUI and Webstart programs or > building such programs, are now in Debian. The packages are built using > the IcedTea build support and patches from the IcedTea project." > > Does this now mean that we cannot instal and run Debian 5 without Java, > or that Debian cannot fully run without Java, in the same way that some > versions of MS Windows cannot fully run without Internet Explorer? > If you choose to use Java programs, you'll obviously need Java for them. But Debian doesn't come with anything that requires a Java interpreter out of the box, so no, you can happily run Debian 5.0 without Java. -- http://pobega.wordpress.com http://identica/pobega -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Apache2 confused by index.php after Lenny upgrade
I'm ignorant when it comes to Apache/php, etc. I had a working etch server with Apache2 and PHP5, but after the upgrade to Lenny, whenever I point my web browser to a simple index.php file: wes...@]goshen]:/home/westk/web:> cat index.php the web browser opens a dialog window asking what I want to do with the index.php file. I'm unsure how to go about troubleshooting this. wes...@]goshen]:/etc/apache2:> cat mods-available/php5.conf AddType application/x-httpd-php .php .phtml .php3 AddType application/x-httpd-php-source .phps wes...@]goshen]:/etc/apache2:> cat mods-available/php5.load LoadModule php5_module /usr/lib/apache2/modules/libphp5.so wes...@]goshen]:/etc/apache2:> ls -lh /usr/lib/apache2/modules/libphp5.so -rw-r--r-- 1 root root 5.2M 2009-01-26 16:45 /usr/lib/apache2/modules/libphp5.so wes...@]goshen]:/etc/apache2:> ls mods-enabled/ alias.conf authz_user.load include.load ssl.conf alias.load autoindex.conf mime.conf ssl.load auth_basic.load autoindex.load mime.load status.conf authn_file.load cgi.load negotiation.conf status.load authz_default.loaddir.conf negotiation.load authz_groupfile.load dir.load setenvif.conf authz_host.load env.load setenvif.load (I'm thinking maybe there's supposed to be a php5.conf or something in the above directory? If so, where do I get it?) Thanks for any help! -- Kent West <*)))>< http://kentwest.blogspot.com -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Any info about http://www.goodbye-microsoft.com/
On Thu, Feb 19, 2009 at 09:47:40 -0600, Cybe R. Wizard (cybe_r_wiz...@earthlink.net) wrote: > Dennis Wicks said: > > Greetings; > > > > I saw a regerence to http://www.goodbye-microsoft.com/ in a > > recent email, but the site doesn't respond. I have tried > > several different browsers but they all go into a "waiting > > for reply" mode and nothing comes back. > > > > Any info appreciated. > > > > TIA, > > Dennis > > > > goodbye-microsoft.net A whois says that domain is not even registered. The OP's goodbye-microsoft.com does exist, accepts connections to port 80 but that's about as far as it goes. However, the good news is that goodbyemicrosoft.net seems to work ok. -- Bob Cox. Stoke Gifford, near Bristol, UK. Please reply to the list only. Do NOT send copies directly to me. Debian on the NSLU2: http://bobcox.com/slug/ -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
exim4: auth. to smarthost - what to set AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS to?
In exim4, what value should AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS be set to to enable authentication associated feature? My exim4 (on Sarge) is set up in smarthost mode, and I'm trying to set up authentication to my smarthost, my ISP's SMTP server. I found some documentation saying to set AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS (in AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS), but I haven't yet found any that says _what_ to set it to. I tried simply setting to true like this: AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS = true but that yields the error: # /etc/init.d/exim4 restart Restarting MTA: 2009-02-19 11:03:43 Exim configuration error in line 637 of /var/lib/exim4/config.autogenerated.\ tmp: authenticator name missing Invalid new configfile /var/lib/exim4/config.autogenerated.tmp not installing /var/lib/exim4/config.autogenerated.tmp to /var/lib/exim4/config.autogenerated Line 637 is the AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS = true line. (When I don't try to set it, my exim4 doesn't use authentication when talking to my ISPs SMTP server, and it rejects the connection with "550 5.7.1 Authentication required.) Thanks, Daniel -- (Plain text sometimes corrupted to HTML "courtesy" of Microsoft Exchange.) [F]
Re: Any info about http://www.goodbye-microsoft.com/
H.S. wrote: Cybe R. Wizard wrote: Dennis Wicks said: Greetings; I saw a regerence to http://www.goodbye-microsoft.com/ in a recent email, but the site doesn't respond. I have tried several different browsers but they all go into a "waiting for reply" mode and nothing comes back. Any info appreciated. TIA, Dennis goodbye-microsoft.net Cybe R. Wizard This worked for me: http://www.goodbyemicrosoft.net Ah, but that's a different site (or VERY reworked in just a few days) from the goodbye-microsoft.com site with which I'm more familiar. The site with which I'm familiar allows a Windows user to install Debian from within the browser without having to download installation media (it installs a boot stub to the hard drive, which then begins the normal net install). Very convenient. -- Kent West <*)))>< http://kentwest.blogspot.com -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Packardell with usb problems
On Thursday 19 February 2009 03:06:44 consultores1 wrote: > On February 18, 2009 11:58:04 am Rodrigo Valenzuela wrote: > > On Wednesday 18 February 2009 14:51:31 Javier wrote: > > > irqfixup > > > > thanks for the tip but it it won't work for me :( > > > > sadly but it seems i've got no choice but to choose between > > wireless or usb > > > > Rodrigo > > Have you tried suspending the BIOS plug and play. did my best on the BIOS config but it's the first time I see a BIOS config with just a few options,needless to say there's no option for that. On the other hand, I'll try with pnpbios=off thx -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
On Thu, Feb 19, 2009 at 10:55:12AM -0500, Barclay, Daniel wrote: > Mike McClain wrote: > > > > > AA batteries are cheap, readily available and I can get NiCad and NiMH. > > Custom rechargable battery packs are like printer ink cartridges. > > I wonder whether any camera use AAA batteries. That would let the camera be > smaller and you'd still be able to install non-rechargeable batteries in a > crunch. I used to think standard batteries were a better idea too, but they don't perform anywhere near as well as the L-ion flat ones most cameras now use. The rechargeeables, both NiCad and NiMH, are a good idea in principle, but lose charge when not in use and become ineffective surprisingly quickly in my experience. I was in Budapest last week with a friend who had to buy new AAs for his camera. An hour later they were flat, but my camera's L-ion battery lasted a full day. richard -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Any info about http://www.goodbye-microsoft.com/
Cybe R. Wizard wrote: > Dennis Wicks said: >> Greetings; >> >> I saw a regerence to http://www.goodbye-microsoft.com/ in a >> recent email, but the site doesn't respond. I have tried >> several different browsers but they all go into a "waiting >> for reply" mode and nothing comes back. >> >> Any info appreciated. >> >> TIA, >> Dennis >> > > goodbye-microsoft.net > > Cybe R. Wizard This worked for me: http://www.goodbyemicrosoft.net -- Please reply to this list only. I read this list on its corresponding newsgroup on gmane.org. Replies sent to my email address are just filtered to a folder in my mailbox and get periodically deleted without ever having been read. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Any info about http://www.goodbye-microsoft.com/
Cybe R. Wizard wrote: Dennis Wicks said: Greetings; I saw a regerence to http://www.goodbye-microsoft.com/ in a recent email, but the site doesn't respond. I have tried several different browsers but they all go into a "waiting for reply" mode and nothing comes back. Any info appreciated. TIA, Dennis goodbye-microsoft.net Cybe R. Wizard I thought it was .com, which is not working for me at the moment. The .net version does not work either. I suspect they're off-line temporarily during the transition to Lenny, but that's just an uneducated guess. -- Kent West <*)))>< http://kentwest.blogspot.com -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
Mike McClain wrote: > > AA batteries are cheap, readily available and I can get NiCad and NiMH. > Custom rechargable battery packs are like printer ink cartridges. I wonder whether any camera use AAA batteries. That would let the camera be smaller and you'd still be able to install non-rechargeable batteries in a crunch. Daniel -- (Plain text sometimes corrupted to HTML "courtesy" of Microsoft Exchange.) [F]
Re: Seriously, no way to reconfigure video card in lenny?
S D wrote: > --- On Thu, 2/19/09, Sven Joachim wrote: > It appears that video card configuration was >> removed from dpkg-recofigure in lenny. Has anything replaced >> it? How can one reconfigure video card in lenny? >>> It's supposed to be automagic now, built into xorg >> itself. >> >> If that doesn't work, "Xorg -configure" >> should give you a starting point >> for xorg.conf. Further customizing has to be done with >> your favorite >> text editor. > > I'm trying to resolve a specific issue that appeared after upgrade from etch > to lenny, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515840. > > In etch the video card was configured using dpkg-reconfigure and it was > working marvelously. In lenny it's all screwed up and dpkg-reconfigure no > longer allows to reconfigure the video card. It's simply not clear for what > needs to be customized to get it working. > > Thanks I use Testing. I think I hit that situation when the change occurred. The solution, at least for me, at that time was to just rename /etc/X11/xorg.conf to something else and restart gdm. Xorg then, not finding any xorg.conf, creating a new file which, IIRC, seemed to work right out of the box. But I understand your situation. The earlier ncurses dialog for configuring the xserver had more information than the present method, whatever that is. -- Please reply to this list only. I read this list on its corresponding newsgroup on gmane.org. Replies sent to my email address are just filtered to a folder in my mailbox and get periodically deleted without ever having been read. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
kj wrote: > ... I can imagine there's some benefit to designing a battery > that delivers the cameras exact energy requirements rather than trying > to make the most of the fixed output of AAs. Given how small compact > digital cameras have become, AA batteries really just add unnecessary bulk. I think you hit the nail on the head in your last sentence--the primary benefit to camera design of custom-designed batteries is probably the size _and_ _shape_, at least for ultra-compact cameras (such as my Casio Exilim EX-Z580 (which takes a flat, square NP-40 battery), and Casio's V7 and V8, which couldn't also use the NP-40 and uses a long, skinny battery because of the different internal lens layout; these are about the size of Canon's Digital Elph cameras). Daniel -- (Plain text sometimes corrupted to HTML "courtesy" of Microsoft Exchange.) [F]
Re: display is not detected (or supported)
On Thu, Feb 19, 2009 at 12:31:42PM +0100, abdelkader belahcene wrote: > Hi, > I install the debian on my PC, but the monitor is not detected or not > adapted ( while it is for linux CD live, and windows XP). it gives the > following errors : > > out of range > > H 86,2 KHZ > > V 85 > > > I want to use the file xorg.conf given by CDlive ( sidux for example) and > copy it in the /etc/X11 of my debian, is it enougn or I need ohter > configuration ?? thanks for help It just might work. It certainly won't hurt to try. (well, it *could* I suppose, just review it first). But it sounds like you just need to make a simple tweak to your xorg.conf. Search through it for the HorizSync and VertRefresh lines, comment them out (with a "#") and see what happens. X is pretty good at detecting monitors these days. If that doesn't work, please provide your xorg.conf, output of lspci and perhaps the specs of your monitor. A signature.asc Description: Digital signature
Re: Any info about http://www.goodbye-microsoft.com/
Dennis Wicks said: > Greetings; > > I saw a regerence to http://www.goodbye-microsoft.com/ in a > recent email, but the site doesn't respond. I have tried > several different browsers but they all go into a "waiting > for reply" mode and nothing comes back. > > Any info appreciated. > > TIA, > Dennis > goodbye-microsoft.net Cybe R. Wizard -- Nice computers don't go down. Larry Niven, Steven Barnes "The Barsoom Project" -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Any info about http://www.goodbye-microsoft.com/
Greetings; I saw a regerence to http://www.goodbye-microsoft.com/ in a recent email, but the site doesn't respond. I have tried several different browsers but they all go into a "waiting for reply" mode and nothing comes back. Any info appreciated. TIA, Dennis -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: ifconfig data
On Thu, 19 Feb 2009 13:48:12 + Aneurin Price wrote: > On Thu, Feb 19, 2009 at 11:43 AM, Hugo Vanwoerkom > wrote: > > Hi, > > > > Ifconfig says: > > > > ... > > ppp0 Link encap:Point-to-Point Protocol > > inet addr:200.57.201.43 P-t-P:200.57.219.18 > > Mask:255.255.255.255 ... > > > > I want that inet addr (200.57.201.43) in a program and I prefer > > not to run the ifconfig command from it and grep it. > > > > Does anyone know where else in the system that information > > resides? > > > > I installed the net-tools source and looking at ifconfig.c it's > > not immediately obvious. > > > > Why don't you want to grep the output of ifconfig? > At your command prompt, do $ apt-cache search dyndns You'll get a list of 6 possible packages that may suit your needs. -- Raquel http://www.byraquel.com Diversity is not for the squeamish. It means making (and taking) a space at the table that includes people you don't like, don't agree with, or who you think are just plain wrong. --Alexander John Goodrum -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Live-Helper. Became root
On Thu, 19 Feb 2009 09:33:14 -0500 "Thomas H. George" wrote: > On Wed, Feb 18, 2009 at 06:55:09PM -0500, Thomas H. George wrote: > > I have forgotten how to become root on a customised usb-hdd which I > > built with the aid of lh_clean, lh_config and lh_build. The system > > boots nicely from the usb stick and opens a gnome desktop. I can open > > console displays (F1, etc) as a regular user but I wish to switch to > > root to make some modifications. > > > > Tom > > > After further experiment I found sudo bash lets me become root and su > user returns to the default normal user. > You are running too many nested bash sessions this way. The better way if you don't know (or there is no) the root password is to do sudo su to become root and either Ctrl-D on an empty line or logout to go back to the regular user Otherwise sudo bash runs another bash session and sudo user leaves root logged in and adds to the stack of user logins. > Tom > > > > -- > > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > > with a subject of "unsubscribe". Trouble? Contact > > listmas...@lists.debian.org > > > > > > -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
RE: Re: lenny on x86
> From: news [mailto:n...@ger.gmane.org] On Behalf Of Stefan Monnier > Sent: Wednesday, February 18, 2009 7:58 PM > Subject: Re: lenny on x86 > > Then I guess my recommendation would be: > - use your Etch floppys to install an simple Debian system. > - using this system, use a USB key to transfer the hd-install data for > Lenny onto the drive > - boot&install Lenny. > Does that sound feasible? Hello all! Thanks for the suggestions! Here is where I am at. I have the one laptop that I have been working with, but until last night I had not looked into detail at the others. So last night I goofed around with the various others. Several of them had problems (bad screens, busted motherboards, keyboard with stuck keys, ect). So I part swapped until I have 2 laptops that appear to work really well, and one that has a busted mouse (not a big deal to me). I also made the discovery that one of the laptops that all the hardware appears to work on, is a different model and it has 98 on it! Sadly, this one doesn't have a lan connection, nor wireless, nor a USB port, nor a CDRom drive. Just a floppy, a parallel port, serial port, and a PCMCIA slot. I do have a wireless PCMCIA adapter that works, so I spent last night splitting drivers and other files to fit on a floppy to copy over to it. If I can get 98 on the internet then I should be able to use the earlier suggestion of www.goodbye-microsoft.com. On the good system that has a USB port, I tried Celejar's suggestion for the Smart Boot Manager on a floppy. So I put Debian Live on the USB drive and tested that it worked on another machine. However, SBM refuses to see the USB drive. I do have a question that came up from last night. Since I was taking all these laptops apart and doing a bit of mix/match to get things like a good screen paired with a good MB and a working keyboard, I figured I might as well install to one of the hard drives that I had pulled out. So I fired up my old p2 400mhz desktop that was in the depths of the closet (best match I have to the old Pentium line), plugged the drive in via a USB adapter, and installed Lenny to the drive. Everything worked as far as I could tell. It booted at least. So then I plugged the drive into the laptop, reassembled, and on boot up I get a GRUB message that just sticks there. After thinking about it, I never updated GRUB. The install system probably installed it as SDx and in the laptop it probably just shows up as HDx. I was thinking I would take the laptop apart again and try to fix my error. It is a PITA to take them apart, but after doing it so many times last night I think I have it down. Besides, the mouse is already busted so not a big deal if I break something else, right? So my questions are what suggestions do you guys have? Are GRUB and fstab the only things I need to update? Installing i386 with the 2.6 kernel to a P2 shouldn't have problems transferring to a Pentium, correct? Is there a better kernel I should install? What are the chances that something like this http://main.gnulabs.org/?q=node/3 will work? Thanks for the help guys! ~Stack~ -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Live-Helper. Became root
On Wed, Feb 18, 2009 at 06:55:09PM -0500, Thomas H. George wrote: > I have forgotten how to become root on a customised usb-hdd which I > built with the aid of lh_clean, lh_config and lh_build. The system > boots nicely from the usb stick and opens a gnome desktop. I can open > console displays (F1, etc) as a regular user but I wish to switch to > root to make some modifications. > > Tom > After further experiment I found sudo bash lets me become root and su user returns to the default normal user. Tom > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org > > -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Serious Error in Lenny Stable: X Server doesn't works when i reboot eight or nine times
carlos carrego gutierrez on 18/02/09 17:13, wrote: No, i reboot the computer, so i have a problem. when you try CTRL + ALT + F1, don't you got a command-line interface login prompt? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: ifconfig data
On Thu, Feb 19, 2009 at 11:43 AM, Hugo Vanwoerkom wrote: > Hi, > > Ifconfig says: > > ... > ppp0 Link encap:Point-to-Point Protocol > inet addr:200.57.201.43 P-t-P:200.57.219.18 Mask:255.255.255.255 > ... > > I want that inet addr (200.57.201.43) in a program and I prefer not to run > the ifconfig command from it and grep it. > > Does anyone know where else in the system that information resides? > > I installed the net-tools source and looking at ifconfig.c it's not > immediately obvious. > Why don't you want to grep the output of ifconfig? Maybe this would suit you: http://www.geekpage.jp/en/programming/linux-network/get-ipaddr.php (Changing eth0 to ppp0 obviously) NB. To get that example to work I had to change the includes as follows: #include #include #include #include #include #include #include Nye -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: adding secure accounts for remote users?
Hi, L Glidewell wrote: On Saturday 14 February 2009 16:08:05 Zach Uram wrote: Thanks for the replies, I decided to go with just SFTP for now. I suppose they could also use SCP? Configure the users with the scponly shell and they will be able to use either scp or sftp as needed. I would use scponlyc -- the chroot version, that allows winscp. Cheers AndrewM Andrew McGlashan Broadband Solutions now including VoIP -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: ifconfig data
Hi Hugo, this will give you the IP :) ifconfig ppp0 | grep "inet addr:" | awk '{ print $2}' | tail -c14 probably not the best solution, (the last part awk assumes your IP has 14 chars) but this came to mind first .. do some experimenting :) Hugo Vanwoerkom wrote: Hi, Ifconfig says: ... ppp0 Link encap:Point-to-Point Protocol inet addr:200.57.201.43 P-t-P:200.57.219.18 Mask:255.255.255.255 ... I want that inet addr (200.57.201.43) in a program and I prefer not to run the ifconfig command from it and grep it. Does anyone know where else in the system that information resides? I installed the net-tools source and looking at ifconfig.c it's not immediately obvious. Hugo -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: How to make suspend/hibernate buttons work
On Thursday 19 February 2009 11:28:49 Aneurin Price wrote: > On Wed, Feb 18, 2009 at 10:46 PM, David Jarvie wrote: > > On Wednesday 18 February 2009 22:37:56 you wrote: > >> On Wednesday 18 February 2009 11:48:38 am David Jarvie wrote: > >> > No - PowerDevil is the replacement in KDE4 for KPowerSave. It looks as > >> > if global shortcuts to control it is something which still needs to be > >> > implemented. > >> > >> Did you try adding yourself to the powerdev group though? You will need > >> to logout and login to get the change recognized. > > > > I am already in the powerdev group. I can use the KDE4 menu options to > > suspend or hibernate - it's just the buttons which don't work. There is a > > KDE bug requesting global shortcuts to be added to PowerDevil > > (https://bugs.kde.org/show_bug.cgi?id=182538). > > Is there a command line to suspend or hibernate? Does PowerDevil have a > dbus interface for those actions? If either of those is yes, then you > could use KHotkeys, which allows you to create global shortcuts for > arbitrary commands. In systemsettings, go to 'Input Actions', then > right-click in the blank space on the left-hand pane (yes, the area that > doesn't look interactive in any way), and create a new global shortcut. If > PowerDevil does expose those actions via dbus then that's probably the > best route, in case it doesn't like something else hibernating the > machine. There's a dbus browser which seems alright. > > Nye > > (PS. Thanks for motivating me to figure out WTH the Input Actions control > module is for, and how to wrestle with its dire UI) Thank you. I too once looked at KHotkeys and couldn't figure out how it was supposed to be used. I managed to configure a suspend D-Bus action set up as follows: Remote application: org.kde.powerdevilsystem Remote object: /modules/powerdevil Function: suspend Arguments: 2 Hibernate is set up exactly the same but the argument is 4 instead of 2. There are also other options available (shutdown, etc.) - see the enum IdleAction in PowerDevil's source code kdebase/workspace/powerdevil/daemon/PowerDevilDaemon.h -- David Jarvie -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: radeonhd on R5xx based card + dri very slow
On Thursday 19 February 2009 09:32:33 Amit Uttamchandani wrote: > On Mon, 16 Feb 2009 09:43:17 +0100 > "Thomas Preud'homme" wrote: > > [snip] > > > Yes, all of these is installed. I'm sorry in fact because I forgot about > > this thread: I actually found what was the problem. ATI cards need an > > additional option in xorg.conf in the section "Device": > > > > Option "DRI" > > > > For those who would seek for the same information, I attach my xorg.conf > > to this email. As latest xorg now uses evdev instead of kbd, I attach my > > working evdev config un hal. I don't know if it's a clean configuration > > but it's a working one. By the way, I think there is a bug on > > xserver-xorg because a reconfigure modify the xorg.conf for the keyboard > > although this does nothing. Only modifications in > > /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi have made xorg > > recognize my keyboard layout and options. > > > > > Also is your graphics card compatible with the 'radeon' driver? I've > > > had more success with that. > > > > Yep it is. It's an X1600 Mobility chipset. It now perfectly works with > > transparency on KDE 4 :) > > That's great news! Thanks for posting back! It is indeed. I will definitively buy ati chipset based card for my next computer. Having a free (as in free speach) driver is nice. And it is far more stable than fglrx driver. Regards, Thomas Preud'homme -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Dual monitor problem (intel, GNOME)
On 2009-02-19 12:52, Mirco Piccin wrote: > grandr is a frontend to xrandr. > You can edit a simple bash script that launch xrandr with your preferred > settings. Hm, I found the commands for resolution and putting one screen right of the other, but I didn't find the command to put the panels on the primary screen. Any idea? (Btw: While I prefer xrandr commands over a GUI, such as grandr, I wonder what my mother would do. She uses Gnome on etch, but has no idea what "bash" or "script" mean. For a text editor, she would try OpenOffice. Fortunately, she has only one monitor.) -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On Thu, Feb 19, 2009 at 02:10:11AM EST, Sven Joachim wrote: > On 2009-02-19 04:00 +0100, Chris Jones wrote: > > > I plan to upgrade to lenny over the weekend: > > > > 1. duplicate current etch system on a new partition > > Good idea to be cautious. > > > 2. apt-get update > > 2. replace "etch" by "lenny" in /etc/sources.list > > These steps need to be reversed, obviously. > > > 3. apt-get dist-upgrade > > > > Am I missing anything? > > Yes, a very important step: inform yourself of potential problems and > read the release notes first! Wouldn't that spoil the magic of it all? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Upgrade procedure: etch -> lenny
On Wed, Feb 18, 2009 at 10:41:21PM EST, Ron Johnson wrote: > On 02/18/2009 09:00 PM, Chris Jones wrote: > >I plan to upgrade to lenny over the weekend: > > > >1. duplicate current etch system on a new partition > >2. apt-get update > >2. replace "etch" by "lenny" in /etc/sources.list > >3. apt-get dist-upgrade > > > >Am I missing anything? > > I'd first upgrade apt, dpkg & perl. Maybe that's just a legacy of > the woody->etch process, but could't hurt... > > >Note: I do not want apt to mess with my linux kernel. > > Then I'd pin that package. http://jaqque.sbih.org/kplug/apt-pinning.html ? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
kj wrote: ...The T100's battery is tiny compared to two AAs, and gave me roughly double number of pictures that I got out of two 2700mAh NiCads. Correction: they're 2700mAh NiMh batteries. Amazon linky: *http://tinyurl.com/dny49q --kj * -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: digital camera recomendations
Mike McClain wrote: A batteries are cheap, readily available and I can get NiCad and NiMH. Custom rechargable battery packs are like printer ink cartridges. Mike Except they last a lot longer - in both ways. I am not an electronic engineer, but I can imagine there's some benefit to designing a battery that delivers the cameras exact energy requirements rather than trying to make the most of the fixed output of AAs. Given how small compact digital cameras have become, AA batteries really just add unnecessary bulk. I had a Sony DSC-S40 which is a great camera and takes AA batteries. If you can find one like that (or a similar one), I can definitely recommend it. I passed mine on to my mum (she had the exact same one but it went missing) and got myself a DSC-T100 before an overseas trip. I chose the T100 because of its sleek design - no protruding lens, and only about 1.5cm thick, so it fits in my jean or shirt pocket, and I don't even know it's there. I have invested in an extra battery for each of the digital cameras I've owned since, and honestly, it's been worth every penny. The T100's battery is tiny compared to two AAs, and gave me roughly double number of pictures that I got out of two 2700mAh NiCads. You can get third party ones off eBay that works just as well and cost little more than good AAs. Something else to keep in mind is that few rechargeable AAs can discharge as fast as the dedicated camera batteries, which means your flash cycle time is slower, unless you invest in the best AAs you can find. To that end, the Uniross 2700mAh are the best I've found so far. But each to him/herself. --kj -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Dual monitor problem (intel, GNOME)
HI Monitors: Internal LVDS 1280×800, external VGA 1280×1024. > Video: Intel GM965/GL960. > Software: Debian 5.0, Gnome. Exception: X is from experimental. > Initial layout: two identical pictures of 1024×786 each. > > With grandr, I can fix the resolution of each screen (just by > selecting "Auto") and put VGA right of my LVDS (Layout). I have > to move the upper and lower panels from the VGA to the LVDS with > the mouse, though. > First question: How can I save the setting, so that I don't have > to do this every time (fix the resolution and move the panels to > my primary screen)? > grandr is a frontend to xrandr. You can edit a simple bash script that launch xrandr with your preferred settings. Second question: How can I influence, where new windows and > dialogues will pop up? E.g. "always LVDS" would be fine. > Sincerely i don't know. Regards M
display is not detected (or supported)
Hi, I install the debian on my PC, but the monitor is not detected or not adapted ( while it is for linux CD live, and windows XP). it gives the following errors : out of range H 86,2 KHZ V 85 I want to use the file xorg.conf given by CDlive ( sidux for example) and copy it in the /etc/X11 of my debian, is it enougn or I need ohter configuration ?? thanks for help best regards bela
ifconfig data
Hi, Ifconfig says: ... ppp0 Link encap:Point-to-Point Protocol inet addr:200.57.201.43 P-t-P:200.57.219.18 Mask:255.255.255.255 ... I want that inet addr (200.57.201.43) in a program and I prefer not to run the ifconfig command from it and grep it. Does anyone know where else in the system that information resides? I installed the net-tools source and looking at ifconfig.c it's not immediately obvious. Hugo -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Dual monitor problem (intel, GNOME)
Hi, for the first time I try to get a second monitor at my laptop, so far with limited success: Monitors: Internal LVDS 1280×800, external VGA 1280×1024. Video: Intel GM965/GL960. Software: Debian 5.0, Gnome. Exception: X is from experimental. Initial layout: two identical pictures of 1024×786 each. With grandr, I can fix the resolution of each screen (just by selecting "Auto") and put VGA right of my LVDS (Layout). I have to move the upper and lower panels from the VGA to the LVDS with the mouse, though. Windows and dialogues pop up either on LVDS or VGA, without any logic. First question: How can I save the setting, so that I don't have to do this every time (fix the resolution and move the panels to my primary screen)? Second question: How can I influence, where new windows and dialogues will pop up? E.g. "always LVDS" would be fine. Many thanks in advance! -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Debian GNU/Linux 5.0
On Thu, Feb 19, 2009 at 04:00:51PM +0500, Farid Ansari wrote: > *Dear Sir's, > I downloaded and installed the new Debian 5.0 Lenny and was very happy with > the installer which is the best of all Linux installers. > After installation I am not able to run the system. > I come to the screen where it asks for the user and password, after these > are entered i get the $ sign. When I type 'startx' it does not start the > operating system. Are you sure you installed X? Log in as root, and try 'aptitude install kde' or 'aptitude install gnome' to get a working desktop environment installed -- they should bring X with them. If aptitude is not installed then either 'apt-get install aptitude' or use apt-get in place of aptitude. If they turn out to be already installed and still won't run, come back. richard -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: How to make suspend/hibernate buttons work
On Wed, Feb 18, 2009 at 10:46 PM, David Jarvie wrote: > On Wednesday 18 February 2009 22:37:56 you wrote: >> On Wednesday 18 February 2009 11:48:38 am David Jarvie wrote: >> > No - PowerDevil is the replacement in KDE4 for KPowerSave. It looks as if >> > global shortcuts to control it is something which still needs to be >> > implemented. >> >> Did you try adding yourself to the powerdev group though? You will need to >> logout and login to get the change recognized. > > I am already in the powerdev group. I can use the KDE4 menu options to suspend > or hibernate - it's just the buttons which don't work. There is a KDE bug > requesting global shortcuts to be added to PowerDevil > (https://bugs.kde.org/show_bug.cgi?id=182538). > Is there a command line to suspend or hibernate? Does PowerDevil have a dbus interface for those actions? If either of those is yes, then you could use KHotkeys, which allows you to create global shortcuts for arbitrary commands. In systemsettings, go to 'Input Actions', then right-click in the blank space on the left-hand pane (yes, the area that doesn't look interactive in any way), and create a new global shortcut. If PowerDevil does expose those actions via dbus then that's probably the best route, in case it doesn't like something else hibernating the machine. There's a dbus browser which seems alright. Nye (PS. Thanks for motivating me to figure out WTH the Input Actions control module is for, and how to wrestle with its dire UI) -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Restoring file permissions from package database?
On Wed, Feb 18, 2009 at 09:24:15AM -0500, Douglas A. Tutty wrote: > On Wed, Feb 18, 2009 at 11:43:48AM +0100, Oliver Schneider wrote: [...] > However, its a lot of work to go > through each package individually. > > I know, its a lot of work either way. But you could write a bash script to do the actual comparing and chmod-ing once you have either a list or a clean installed copy. (back it up before running the script for real of course). richard -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Debian GNU/Linux 5.0
*Dear Sir's, I downloaded and installed the new Debian 5.0 Lenny and was very happy with the installer which is the best of all Linux installers. After installation I am not able to run the system. I come to the screen where it asks for the user and password, after these are entered i get the $ sign. When I type 'startx' it does not start the operating system. This problem is being faced by me since the earlier versions of Debian. Please someone be kind enough to help me resolve the matter. Any assistance / advise given will be highly appreciated. Thanks and Regards, Farid Ansari Karachi, Pakistan*
Re: testing or unstable?
On 2009-02-17_13:02:38, Rodolfo Medina wrote: >> I've been using Debian for more than three years now, but always using the >> official DVDs of the most current stable version: first Sarge, and then Etch. >> >> Recently, many times I've been needing to use a testing/unstable Debian >> version for many applications that were too old in stable Debian, so now I'm >> thinking of switching to a testing/unstable Debian version for good. >> >> Now, my question is: which one is more advisable, testing or unstable? >> >> Excuse the basicness of my question, thanks for any reply Paul E Condon writes: > Rodolfo, > I have a different take on this issue. Rather than discuss the > relative merits of stable, testing, I think you should consider the > merits of lenny, squeeze. [...] Thanks for your contribution. But, if I understand well, the `unstable' option is excluded from your point of view, that only considers the alternative between stable and testing. Rodolfo -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: USB Wireless Adapter for Linux?
2009/2/19 Dave Ewart : > My receipt says the adapter I got was "Edimax EW-7318USg 54G 802.11 > b/g". According to google, it should work. Thanks! -- Dotan Cohen http://what-is-what.com http://gibberish.co.il א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת ا-ب-ت-ث-ج-ح-خ-د-ذ-ر-ز-س-ش-ص-ض-ط-ظ-ع-غ-ف-ق-ك-ل-م-ن-ه-و-ي А-Б-В-Г-Д-Е-Ё-Ж-З-И-Й-К-Л-М-Н-О-П-Р-С-Т-У-Ф-Х-Ц-Ч-Ш-Щ-Ъ-Ы-Ь-Э-Ю-Я а-б-в-г-д-е-ё-ж-з-и-й-к-л-м-н-о-п-р-с-т-у-ф-х-ц-ч-ш-щ-ъ-ы-ь-э-ю-я ä-ö-ü-ß-Ä-Ö-Ü