Jump to content

tons

Members
  • Posts

    13
  • Joined

  • Last visited

Posts posted by tons

  1. I use this script:

     

    #!/bin/bash
    MFDIR=/opt/MozillaFirebird
    MFBIN=MozillaFirebird-bin
    MOZSTAT=`ps -C $MFBIN|grep -v PID|wc -l`
    if [ 0 -eq $MOZSTAT ]
    then	
      $MFDIR/MozillaFirebird $*  &
    else
      case $# in
    0)
       $MFDIR/MozillaFirebird -remote xfeDoCommand\ \(openBrowser\) &
    ;;
    1) 
       $MFDIR/MozillaFirebird -remote openurl\($*,new\-window\) 
    ;;
    *)
       echo Usage: $0 "[url]"
    ;;
      esac
    fi

     

    I posted it on a MozillaFirebird forum a few days ago. Hope this helps?

  2. I've tried nearly everything with my Sony Vaio to get the 9.1 install to go from the cdrom with no luck.  

    The only way I could get 9.1 installed is with a hard drive install and then I had additional problems with 9.1 when the install was done. Odd thing is that  9.0 installed fine. Wound up going back to 9.0 rather than try to fix 9.1.

     

    No problems here getting 9.1 working on my Sony Vaio. I only had a small problem with the sounddrivers during the first boot. ALSA and Sound made the system halt. Rebooted again using the interactive boot sequence, skipped all the sound things, Got into KDE, upgraded 9.1 with the latest patches and now it's running fine.

     

    The only thing is that a shutdown ends with a black screen and I have to push the button to turn the notebook off. This didn't happen with 9.0.

    Reboot still doesn't work, but who needs this?

     

    Ton

  3. Hi,

     

    I installed Mandrake 9.0 next to WindowsXP on my Sony Vaio FX-802. I use Lilo to choose between them. When I switch on the machine everything is fine, the bootscreen appears and I can choose the OS. When I reboot Linux the system reboots but stops after the bios-screen. Turning it off and on and it boots ok (just the message the previous boot failed etc.) When I choose to turn of the machine in Linux it's ok and after turning it on again the bootscreen is there. When I reboot WindowsXP everything is fine.

     

    How can I get Linux to let the notebook reboot properly?

     

    Ton

  4. Hi,

     

    it's done in /etc/sysconfig/desktop. Put a line DISPLAYMANAGER=<displaymanager of your choice> in it.

     

    My /etc/sysconfig/desktop contains:

    KDE

    DISPLAYMANAGER=kdm

     

    Greetings and HTH,

    Ton

  5. It can be a number of things:

    1. Have you made the script executable (chmod +x <scriptname>).

    2. In my first attempt I forgot #!/bin/bash in the script, so kwrite opened when I logged in.

    Have you checked with konqueror that the script is executable?

    3. Is xscreensaver in your path?

     

    Hope this helps.

  6. Hi,

     

    to get xscreensaver working put the following in your ~/.kde/Autostart directory:

    Filename e.g.: launch-xscreensaver

    --------------------------------------------

    #!/bin/bash

    xscreensaver

    --------------------------------------------

     

    Everytime the user logs in xscreensaver gets started. It is in manuals/howto's on the xscreensaver-homepage: http://www.jwz.org/xscreensaver

    xscreensaver is not controlled by the mandrake control center, but through xscreensaver-demo.

     

    Success,

    Ton

×
×
  • Create New...