Jump to content

lynchmob

Members
  • Posts

    61
  • Joined

  • Last visited

Everything posted by lynchmob

  1. Open a terminal and type: df -T (That's a upper-case T) HTH lynchmob
  2. If you use KMail, I believe Klam will integrate itself with that. In KMail, look under the Tools menu. lynchmob
  3. For Busy Cursor go to Appearances and Themes> Launch Feedback and select " No Busy Cursor". For the other thing, right click the Panel at the bottom of the desktop and go to Panel Menu> Configure Panel> Appearance tab and un-check the "Enable Icon Mouseover Effects." lynchmob
  4. Download the rpm. Open konqueror and go to the directory where you downloaded it to. Right-click on the rpm and choose software installer. Enter your root password when prompted. That should do it. Look in /usr/share/doc for documentation on bitdefender. lynchmob
  5. lynchmob

    USB Configuration

    mount -t vfat /dev/usb /mnt/usbkey I don't think you need the -w option as it mounts read/write by default.
  6. you have no need for it unless you run a Linux mail server for a windows network or somthing like that. No spyware either. I would recommend a rootkit detector or two: rkhunter chkrootkit HTH lynchmob
  7. As root, you can type umount -l /mnt/cdrom -l is the "lazy" option. You should be able to eject the cd now.
  8. I use sftp via konqueror. In the address window, I type: sftp://lynchmob@192.168.0.xxx and am prompted for a password to the lynchmob account on the 192.168.0.xxx computer and then am connected. I have /etc/hosts set up so I can use aliases: 192.168.0.1 computer1.local comp1 and, so, all I need type to reach the host named computer1.local is: sftp://lynchmob@comp1 HTH lynch
  9. The IP address you typed is the IP address of the router, not the dlink site. lynchmob
  10. Do you use the actual partition info as an argument? ie.: dumpe2fs /dev/sda1 or debugreiserfs /dev/sda6 Or do you point to the entire device? lynchmob
  11. These are permissions as listed with the ls command. r=read w=write x=executeable s=setuid
  12. Right click the directory and choose delete.
  13. Suse has Packman and Guru that have some of the same stuff as PLF.You add them as Yast source repositories. lynch
  14. I fixed it by redoing my sources via easy-urpmi and then running urpmi.removemedia -a. After that I pasted the new update-source commands generated by easy-urpmi into bash and ran them.
  15. I got them working but there's got to be a better solution than adding this: /etc/init.d/harddrake restart mknod /dev/sda1 b 8 1 mknod /dev/sdb1 b 16 1 mount -t reiserfs /dev/sda1 /mnt/data1 mount -t reiserfs /dev/sdb1 /mnt/data2 to /etc/rc.d/rc.local. lynchmob
  16. There is no /dev/sda. lynch
  17. My 2006.05 install is on /dev/hda but I have 2 sata drives for storage that were available on my previous install (2005le). Problem is I dont have access to them now. In MCC>Hardware , only hda is listed but it does list the vt6420 sata raid controller. When I do a dmesg > textfile, the part pertaining to scsi says: SCSI subsystem initialized libata version 1.11 loaded. sata_via version 1.1 ACPI: PCI Interrupt 0000:00:0f.0[B] -> Link [ALKA] -> GSI 20 (level, low) -> IRQ 20 PCI: Via IRQ fixup for 0000:00:0f.0, from 11 to 4 sata_via(0000:00:0f.0): routed to hard irq line 4 ata1: SATA max UDMA/133 cmd 0xB400 ctl 0xB802 bmdma 0xC400 irq 20 ata2: SATA max UDMA/133 cmd 0xBC00 ctl 0xC002 bmdma 0xC408 irq 20 usb 1-2: new full speed USB device using uhci_hcd and address 3 ata1: dev 0 cfg 49:2f00 82:346b 83:7f21 84:4003 85:3469 86:3c01 87:4003 88:407f ata1: dev 0 ATA, max UDMA/133, 72303840 sectors: lba48 ata1: dev 0 configured for UDMA/133 scsi0 : sata_via ata2: dev 0 cfg 49:2f00 82:346b 83:7f21 84:4003 85:3469 86:3c01 87:4003 88:407f ata2: dev 0 ATA, max UDMA/133, 72303840 sectors: lba48 ata2: dev 0 configured for UDMA/133 scsi1 : sata_via Vendor: ATA Model: WDC WD360GD-00FN Rev: 35.0 Type: Direct-Access ANSI SCSI revision: 05 Vendor: ATA Model: WDC WD360GD-00FN Rev: 35.0 Type: Direct-Access ANSI SCSI revision: 05 So they are recognized by the kernel and a lsmod shows: sata_via 5700 0 libata 42116 1 sata_via scsi_mod 121096 2 sg,libata Taking a look in /dev/scsi shows two listings: /dev/scsi/host0/bus0/target0/lun0 /dev/scsi/host1/bus0/target0/lun0 So is this just a matter of doing: ln -s /dev/scsi/host0/bus0/target0/lun0 /dev/sda1 ln -s /dev/scsi/host1/bus0/target0/lun0 /dev/sdb1 and then putting entries in /etc/fstab? Or am I missing somthing. TIA lynchmob
  18. I always do that. Thanks. lynchmob
  19. For Main, Main-update, Contrib, and Jpackage, I have used: ftp.ciril.fr (current) ftp.rutgers.edu Penn State Ga Tech Va Tech And a few European ones. I use ftp.easynet.fr for my PLF and non-free PLF sources. I have already tried everything that has been suggested before posting here( thanks BTW ) and am still trying to find out why this still happens. The first thing I looked at was the signatures themselves and they all seemed to be okay. If it were mirrors then I imagine the problem would be more widespread. I guess I'll narrow this down eventually. Thanks again. :) lynchmob
  20. I have had this problem occur several times recently. whenever I try to install anything via urpmi or MCC, it downloads okay but then hangs on "..Checking Signature Verification..". I end up redoing my sources via Easy-Urpmi and that fixes the problem temporarily but usually happens the next time I try to install anything. I have used several different sets of mirrors and it happens with them all. I'm running Mandriva 2005LE. Any ideas? TIA lynchmob
  21. Did you use su or su - ? Try su -. lynchmob
  22. Here is an article I read at linux.com that may help: http://www.linux.com/article.pl?sid=05/09/15/1655234 you may need to build the restricted access lists mentioned in the article. Hope that helps lynchmob
  23. Thanks. Wget worked. I had forgotten all about that. I never use M$. Just have been downloading CD isos, not DVD isos and was'nt aware of the ftp file size limitations at some mirror sites. I've been using Linux (mainly MDK/ 'driva) for about 6 years now. This is a nice site that I've lurked in anon' from time to time. Answered some Qs for me too. :) Thought it was about time to register. Who knows, maybe I can answer a Q or 2 somtime. :D lynchmob
×
×
  • Create New...