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. linuxlastslonger

    sending e-mail from python

    thanks! :-)
  2. linuxlastslonger

    HELP! default install of RH 7.3 kernel panics on restart!!!!!

    during your install, did you hit F3, F4, and F5 to view your hardware status. i'm convinced that it is an incorrectly loaded module of some sort. of course, like i said, my experience with the adaptec card is limited, but the problems you are explaining are the same problems i was having at the...
  3. linuxlastslonger

    Webmin questions

    webmin allows you to execute shell commands, click on Others, then click on Command Shell. also, you can start an ssh/telnet session by clicking on SSH/Telnet Login .
  4. linuxlastslonger

    HELP! default install of RH 7.3 kernel panics on restart!!!!!

    an appendature to my last note, before you do the cp line, do a: chroot /mnt/sysimage if that doesn't work replace this line with the cp line: cp /mnt/sysimage/root/install.log /mnt/floppy
  5. linuxlastslonger

    HELP! default install of RH 7.3 kernel panics on restart!!!!!

    hmmm..... my expierence with Adaptec RAID cards is limited, but the experience i've had with them aren't very good. that's why we moved to another vendor. Concerning my experience, i remember using an adaptec specific driver. it may be included with the boxed software, or i believe you can...
  6. linuxlastslonger

    HELP! default install of RH 7.3 kernel panics on restart!!!!!

    did you try installing with a separate set of hard disks? it may be that your hdd's are bad and linux is having a snowball effect of errors.
  7. linuxlastslonger

    sending e-mail from python

    hello all! i'm in charge of developing a backup program for our server product, and one of the fuctions is to e-mail the user and our offices if any problems occur. anyways, i cannot figure out how to send an e-mail from within python. i've tried using os.spawnvpe, but it doesn't work correctly...
  8. linuxlastslonger

    execute unix shell command with python

    to run a command as if it were from the shell, do the following: os.spawnvpe('P_WAIT','foo',foo_lst,os.environ) the os.spawnvpe tells python to start a child process. 'P_WAIT' is saying to python, "wait until the child process is done before killing it". the 'foo' is a name that you...
  9. linuxlastslonger

    Mount Win2k HD in RH8.1 Error

    try: smbmount //host/c /mnt/some-dir -o credentials=/etc/samba/smb.cred in the smb.cred specify: username=user password=pass if you are still having touble, make sure you have the NTFS module loaded, and that your kernel supports it. i believe you need this either if your mounting a local...

Part and Inventory Search

Back
Top