You are not logged in.

#1 2004-03-15 16:15:47

shaurz
Member
Registered: 2004-02-02
Posts: 358

RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

If you want to easily browse Samba and other shares on your local network (with KDE), LISA is what you need. It comes with the kdenetwork package. To start it on every boot, copy the script below to /etc/rc.d/lisa and add lisa to the DAEMONS array in /etc/rc.conf. Remember to chmod +x the file to make it executable.

#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

case "$1" in

  start)
    stat_busy "Starting LAN Browsing Daemon"
    /opt/kde/bin/lisa &>/dev/null
    if [ $? -ne 0 ]; then
      stat_fail
    else
      add_daemon lisa
      stat_done
    fi
  ;;

  stop)
    stat_busy "Stopping LAN Browsing Daemon"
    kill -9 `pidof /opt/kde/bin/lisa` &>/dev/null
    rm_daemon lisa
    stat_done
  ;;

  restart)
    $0 stop
    $0 start
  ;;

  *)
    echo "usage: $0 {start|stop|restart}"
esac

You can configure LISA settings from Control Center -> Internet and Network -> Local Network Browsing.

This uses the same template as all the other RC scripts that come with Arch Linux. Have fun!

Offline

#2 2004-03-15 16:56:44

Xentac
Forum Fellow
From: Victoria, BC
Registered: 2003-01-17
Posts: 1,797
Website

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

I bet, if you submitted that file in a bug report, you could get it added to the kdenetwork package.  It's a startup script for something that's included in the package and should probably be in there.


I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal

Offline

#3 2004-03-17 22:19:48

shaurz
Member
Registered: 2004-02-02
Posts: 358

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

My post has been posted on the wiki, it could do with some editing to make it clearer.

It probably should come with the package, otherwise the 'LAN Browser' option in Konqueror's new 'Services' sidebar is a bit useless ;-)

Offline

#4 2004-03-17 23:07:32

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

shaurz wrote:

My post has been posted on the wiki, it could do with some editing to make it clearer.

It probably should come with the package, otherwise the 'LAN Browser' option in Konqueror's new 'Services' sidebar is a bit useless ;-)

i'm maintaining kdenetwork ... and i will include it in the next release

EDIT:

http://bugs.archlinux.org/index.php?do=details&id=565


The impossible missions are the only ones which succeed.

Offline

#5 2004-03-18 18:19:03

wakeupbomb
Member
From: Liverpool, UK
Registered: 2004-02-15
Posts: 164

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

excellant
Was starting to get fed up of starting that manually everytime I use KDE

Offline

#6 2004-03-19 14:28:07

shaurz
Member
Registered: 2004-02-02
Posts: 358

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

Offline

#7 2004-03-21 20:33:16

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

/etc/rc.d/lisa is available now (kdenetwork-3.2.1-2)

enjoy!


The impossible missions are the only ones which succeed.

Offline

#8 2007-01-02 19:01:01

islamguide.com
Member
Registered: 2006-12-08
Posts: 98

Re: RC Script for LISA (KDE LAN Browsing Daemon) [wiki]

Is lisa necessary? Can't we just browse samba shares through remote places from about:konqueror the same way?


Thanks in advance!

Offline

Board footer

Powered by FluxBB