Pagina 4 di 4 primaprima ... 2 3 4
Visualizzazione dei risultati da 31 a 33 su 33

Discussione: samba dove e come?

  1. #31
    Ti consiglio di creartelo da zero usando:
    codice:
    # apt-setup
    Permette l'aggiunta di repository nel sources.list

    <!-- Debian GNU/Linux 4.0 Kernel 2.6.x -->
    ftp://ftp.it.debian.org/
    http://www.php.net/

  2. #32
    ok ma il mio problema è conoscere gli indirizzi sicuramente funzionanti. Ho cercato in giro c'è molta roba ma non essendo pratico non saprei quali scegliere

    Grazie
    Carpe diem
    Preferisco tentare che rinunziare

  3. #33
    Spero tu abbia testing, altrimenti sostituisci a testing unstable o stable

    deb ftp://ftp.debian.org/debian/ testing main contrib non-free
    deb http://security.debian.org/ testing/updates main
    # deb ftp://ftp.nerim.net/debian-marillat/ testing main

    L'ultimo e` un repository non ufficiale che contiene tante cose interessanti, come LAME o altre librerie che per questioni di licenza non vengono incluse in Debian. Se vuoi usarlo togli il commento.

    Per quanto riguarda lo script di avvio in init ... alla fine non e` altro che uno script di bash... ti incollo il mio

    codice:
    #!/bin/sh
    #
    # Start/stops the Samba daemons (nmbd and smbd).
    #
    #
    
    # Defaults
    RUN_MODE="daemons"
    
    # Reads config file (will override defaults above)
    [ -r /etc/default/samba ] && . /etc/default/samba
    
    NMBDPID=/var/run/samba/nmbd.pid
    SMBDPID=/var/run/samba/smbd.pid
    
    # clear conflicting settings from the environment
    unset TMPDIR
    
    # See if the daemons are there
    test -x /usr/sbin/nmbd -a -x /usr/sbin/smbd || exit 0
    
    case "$1" in
    	start)
    		echo -n "Starting Samba daemons:"
    
    		echo -n " nmbd"
    		start-stop-daemon --start --quiet --exec /usr/sbin/nmbd -- -D
    
    		if [ "$RUN_MODE" != "inetd" ]; then
    			echo -n " smbd"
    			start-stop-daemon --start --quiet --exec /usr/sbin/smbd -- -D
    		fi
    
    		echo "."
    		;;
    	stop)
    		echo -n "Stopping Samba daemons: "
    
    		start-stop-daemon --stop --quiet --pidfile $NMBDPID
    		# Wait a little and remove stale PID file
    		sleep 1
    		if [ -f $NMBDPID ] && ! ps h `cat $NMBDPID` > /dev/null
    		then
    			# Stale PID file (nmbd was succesfully stopped),
    			# remove it (should be removed by nmbd itself IMHO.)
    			rm -f $NMBDPID
    		fi
    		echo -n "nmbd"
    
    		if [ "$RUN_MODE" != "inetd" ]; then
    			start-stop-daemon --stop --quiet --pidfile $SMBDPID
    			# Wait a little and remove stale PID file
    			sleep 1
    			if [ -f $SMBDPID ] && ! ps h `cat $SMBDPID` > /dev/null
    			then
    				# Stale PID file (nmbd was succesfully stopped),
    				# remove it (should be removed by smbd itself IMHO.)
    				rm -f $SMBDPID
    			fi
    			echo -n " smbd"
    		fi
    
    		echo "."
    
    		;;
    	reload)
    		echo -n "Reloading /etc/samba/smb.conf (smbd only)"
    		start-stop-daemon --stop --signal HUP --pidfile $SMBDPID
    
    		echo "."
    		;;
    	restart|force-reload)
    		$0 stop
    		sleep 1
    		$0 start
    		;;
    	*)
    		echo "Usage: /etc/init.d/samba {start|stop|reload|restart|force-reload}"
    		exit 1
    		;;
    esac
    
    exit 0
    Are you alive?
    No, but I was written with LOVE. A new scripting language.
    www.frequenze.it

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.