Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ericbrunson

    Sun Cluster Solution

    We don't have SAN.
  2. ericbrunson

    How to find the number of CPUs in a Linux box?

    Annihilannic, I don't think that's correct. foxtrot(~)$ sudo dmidecode | grep -c Central 2 I definitely only have a single processor with a single core, and since it's a Sempron, I'm pretty sure it doesn't have HyperThreading. My motherboard is capable of using a dual core athlon, I think...
  3. ericbrunson

    Sun Cluster Solution

    I used to be an old pro at SunOS back in the 4.1.3 days, but I'm tooling up on Solaris 10 now and I'd like input on some of the HA features available in Sun Cluster. I have a (very) high transaction MySQL database running in a Solaris 10 zone on one physical server. I'm using MySQL replication...
  4. ericbrunson

    Python saving images from a webpage

    You have to go get the image with urlopen, just like your browser does. You may want to look at the builtin htmlparser module to do this parsing for you. You would simply subclass the parser and define an action for "start_img()" in which you go get the image file an save it off somewhere.
  5. ericbrunson

    LVM deletion problem

    Boot of the Fedora rescue disk and use fdisk to delete the partition.
  6. ericbrunson

    setting up a hotkey to *

    You don't say what X environment you're using. In gnome you would use the command "gnome-keybinding-properties". In twm you would add a setting to your ".twmrc".
  7. ericbrunson

    Adding Time

    There sure is and you can find it in the python manual in section 6.11 "time -- Time access and conversions".
  8. ericbrunson

    CVS Client

    It's called "cvs" and you type it at the command line. :-)
  9. ericbrunson

    Requesting the http header

    That is the full header, what are you expecting to see?
  10. ericbrunson

    Python2.2 installation error in SuSE 10.0

    Pretty much the same as for any package... Download the source untar it cd to the directory ./configure ; make ; make install
  11. ericbrunson

    possible time.sleep() problem...is there an alternative

    From the description of the date command, it sounds like you have a problem with your OS or hardware clock and not your python script.
  12. ericbrunson

    Trigger script on file add/change/delete?

    Gnome provides a service called "Gamin" http://www.gnome.org/~veillard/gamin/index.html It's a C level interface, but there are Python bindings to it. You could also write a simple C program that would call your shell script.
  13. ericbrunson

    Python2.2 installation error in SuSE 10.0

    Why are you trying to install such an old version of python? Is there something in particular that you need from it? We may be able to help you use a more recent version if there is.
  14. ericbrunson

    setting virtual ips on a single network card

    Even though both IPs are on the same physical interface, if they are masked so they are in different subnets you will only be able to talk to the interfaces from other IP addresses that are on the same subnet. For example: Address 1 = 1.1.1.1 Address 2 = 1.1.2.1 If your subnet mask is...
  15. ericbrunson

    Python2.2 installation error in SuSE 10.0

    So, your problem is not with Python so much as you can't compile readline on your system. Have you tried installing the readline development RPMs from SuSE?
  16. ericbrunson

    Shared and Separate domains with Cyrus separate message store

    and alias = 'domainname' should read: and alias = 'example.com'
  17. ericbrunson

    Shared and Separate domains with Cyrus separate message store

    The second is done with virtual domains and is pretty simple. You have to have some external authentication for cyrus to handle username overlaps, so on my system your email address is user@example.com and you log in as user.example.com so different domains can have the same users. The first...
  18. ericbrunson

    cyrus sasl2 configure/make errors

    When I installed cyrus-imapd integrated with postfix and mysql via SASL I used the pam_mysql module to do the database access. I think that's the preferred method. As far as your actual problem, however, do you have all the devel rpms for mysql, sasl, etc. installed? You may also consider...
  19. ericbrunson

    Secure NFS

    NFS is insecure because the data is "sniffable" over the network and spoofable by IP and has no user level authentication. You can also spoof your UID on the remote end to get around file access controls. Samba/CIFS is an option, but I don't think that it's encrypted. There is also...
  20. ericbrunson

    select.select

    Define "doesn't work". Do you get an error message? Do you get unexpected results? Are you getting any results? http://www.catb.org/~esr/faqs/smart-questions.html#beprecise

Part and Inventory Search

Back
Top