Find the answer to your Linux question:
Results 1 to 5 of 5
My debian 3.0, how a)to stop the AppleTalk service when boot. I have tried to go /etc/init.d/ , but couldn't find this application b)to remove this Application...
  1. #1
    Just Joined!
    Join Date
    Aug 2005
    Posts
    40

    Stop and remove AppleTalk

    My debian 3.0, how
    a)to stop the AppleTalk service when boot. I have tried to go /etc/init.d/ , but couldn't find this application
    b)to remove this Application

  2. #2
    Linux Newbie Darl's Avatar
    Join Date
    Oct 2003
    Location
    Canada/BC/Kelowna/Home
    Posts
    130
    Removing the application will stop it from being loaded on boot. Debian is a clever devil that way...:
    Code:
    ~]# apt-get remove netatalk

  3. #3
    Just Joined!
    Join Date
    Aug 2005
    Posts
    40
    I want to stop it temporarily and not remove it at this moment.

  4. #4
    Linux User
    Join Date
    Apr 2005
    Location
    Ohio
    Posts
    326
    To stop netatalk temporarily
    root@debian: # /etc/init.d/netatalk stop
    Unless you have a mac theres really no need to keep inetatalk around..

    you can also leave it installed but change the settings so it does not start automatically when you boot the system. use a tool like sysv-rc-conf to adjust the services that start at boot time.

    root@debian: # apt-get install sysv-rc-conf
    root@debian: # sysv-rc-conf

    Check and uncheck services as desired. Debian starts up in Run level 2, run levels 2-5 are configured the same by default for most services.
    far...out

  5. #5
    Just Joined!
    Join Date
    Jun 2006
    Posts
    4
    Quote Originally Posted by Darl
    Removing the application will stop it from being loaded on boot. Debian is a clever devil that way...:
    Code:
    ~]# apt-get remove netatalk
    A more complete procedure would be to:

    Code:
    update-rc.d -f netatalk remove
    apt-get remove netatalk

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •