Results 1 to 8 of 8

Thread: How to autostart Samba ???

  1. #1
    Junior Member registered user
    Join Date
    May 2004
    Location
    Miami, FL ,USA
    Posts
    11

    How to autostart Samba ???

    Networking knoppix and windows is not complicated
    here is a very good explanation
    http://www.knoppix.net/docs/index.php/FaqSambaQuick
    but...
    A lot of typing and time consuming, I'm trying to make it automatic.
    I include the smb.conf in the ISO {properly configured to share the Complete FileSystem}
    and edited the Autorun.Bat {originally it starts the Index}

    this is my autorun.bat

    rm -f /etc/samba/smb.conf
    cp smb.conf /etc/samba/smb.conf
    /etc/init.d/samba start

    Burned the ISO and... it did NOT work as I expected
    Frustration yeahh a lot...
    anyone can give me a hand??? I really apreciate it!!!
    HelderSepu@yahoo.com
    HelderSepu@hotmail.com

  2. #2
    Senior Member registered user
    Join Date
    May 2003
    Posts
    981

    Re: How to autostart Samba ???

    Quote Originally Posted by heldersepu
    Networking knoppix and windows is not complicated
    here is a very good explanation
    http://www.knoppix.net/docs/index.php/FaqSambaQuick
    but...
    A lot of typing and time consuming, I'm trying to make it automatic.
    I include the smb.conf in the ISO {properly configured to share the Complete FileSystem}
    and edited the Autorun.Bat {originally it starts the Index}

    this is my autorun.bat

    rm -f /etc/samba/smb.conf
    cp smb.conf /etc/samba/smb.conf
    /etc/init.d/samba start

    Burned the ISO and... it did NOT work as I expected
    I don't think your autorun.bat is correct.

    rm -f /etc/samba/smb.conf - this line will remove the existing file /etc/samba/smb.conf

    cp smb.conf /etc/samba/smb.conf - this line will attempt to copy smb.conf to /etc/samba/smb.conf... but what is the source file smb.conf it is trying to copy? If it has no source file you will be left with no /etc/samba/smb.conf file since the first line removed it.

    If you have already made an /etc/samba/smb.conf correctly configured for file sharing using share level permissions instead of the default user level, and burned it to your new iso, it should not be necessary to remove/edit/copy it again.

    /etc/init.d/samba start - this line just starts samba.

    Question: when you boot up Knoppix (no other changes), is your /etc/samba/smb.conf correctly set up for filesharing? If it is, all you should have to do is start samba.

    Question: when you are up and running with the new iso, if you go through the whole procedure manually, does it work? If it does, your setup is OK, just burn your iso with /etc/samba/smb.conf already correct. Then all you have to do is start samba.

  3. #3
    Junior Member registered user
    Join Date
    May 2004
    Location
    Miami, FL ,USA
    Posts
    11

    Heldersepu

    First of all Thanks for your Interest...
    Let's get to the point FOR SURE my autorun.bat is not working
    in the original ISO does not exist any "smb.conf" or "/etc/samba/smb.conf"
    actually there are just a few folders the only one I changed was the Folder "Talks" that is useless for me because I don't know German, so... I delete that folder and all the PDFs

    Answer 1: After I boot up the /etc/samba/smb.conf still the original, not the one I made. --> this means that the first line in the autoexec didn't remove a shit

    Answer 2: Up and running with "the new ISO"
    I open the root shell
    delete "/etc/samba/smb.conf"
    copy the file "smb.conf" to "/etc/samba"
    start samba
    All perfect !!!!!

    I'm going to read more about ".bat" files See U around..


    [/quote]

    I don't think your autorun.bat is correct.

    rm -f /etc/samba/smb.conf - this line will remove the existing file /etc/samba/smb.conf

    cp smb.conf /etc/samba/smb.conf - this line will attempt to copy smb.conf to /etc/samba/smb.conf... but what is the source file smb.conf it is trying to copy? If it has no source file you will be left with no /etc/samba/smb.conf file since the first line removed it.

    If you have already made an /etc/samba/smb.conf correctly configured for file sharing using share level permissions instead of the default user level, and burned it to your new iso, it should not be necessary to remove/edit/copy it again.

    /etc/init.d/samba start - this line just starts samba.

    Question: when you boot up Knoppix (no other changes), is your /etc/samba/smb.conf correctly set up for filesharing? If it is, all you should have to do is start samba.

    Question: when you are up and running with the new iso, if you go through the whole procedure manually, does it work? If it does, your setup is OK, just burn your iso with /etc/samba/smb.conf already correct. Then all you have to do is start samba.[/quote]

  4. #4
    Senior Member registered user
    Join Date
    Mar 2003
    Posts
    555
    Autostart.bat is just what gets started when a knoppix CD is inserted in a machine running windows. It's got absolutely nothing to do with what's executed under linux. Different OS, different conventions. I suggest you read a little about knoppix.sh or full remastering with customisation of system services startup.

  5. #5
    Junior Member registered user
    Join Date
    May 2004
    Location
    Miami, FL ,USA
    Posts
    11
    Quote Originally Posted by baldyeti
    Autostart.bat is just what gets started when a knoppix CD is inserted in a machine running windows. It's got absolutely nothing to do with what's executed under linux. Different OS, different conventions. I suggest you read a little about knoppix.sh or full remastering with customisation of system services startup.
    Hello hell0 He11O
    I realize that it work under Linux because I love to experiment, so I did this….
    Originally the autorun.bat was
    @echo Lade "index.html"...
    @start index.html
    @exit

    I did this…
    Open the ISO
    Modify the “autorun.bat” to :
    @echo Hello World Knoppix Rocks ...
    @start knoppix/index_en.html
    @exit
    Burn the New ISO, boot up the PC with the new CD and a New Page at Start UP!!!!
    How can it work ?.?......?...?

  6. #6
    Junior Member registered user
    Join Date
    May 2004
    Location
    Miami, FL ,USA
    Posts
    11
    Quote Originally Posted by baldyeti
    Autostart.bat is just what gets started when a knoppix CD is inserted in a machine running windows. It's got absolutely nothing to do with what's executed under linux. Different OS, different conventions. I suggest you read a little about knoppix.sh or full remastering with customisation of system services startup.
    OOOO00000ooooo
    I forgot to ask U where can I find more about knoppix.sh or full remastering with customization of system services startup??
    Thanks in Advance

  7. #7
    Senior Member registered user
    Join Date
    May 2003
    Posts
    981
    as baldyeti said, Autostart.bat is just what gets started when a knoppix CD is inserted in a machine running windows.
    It will change the default startup file but nothing else.
    Once Linux is up and running, autostart is a thing of the past.

    On of the best resources for an overall understanding of how a Linux system operates is Paul Sheer's 'Rute'. (download from http://www.icon.co.za/~psheer/book/index.html)

    -knoppix.sh (or any file that ends with .sh) is a shell script...sort of a super .bat file for Linux. You can find a lot of these files all over you system. Browse around & read them.

    -full remastering with customization of system services startup...try the Docs section at the top header for this site. You will find that to actually make changes to the Knoppix system, you have to copy the Knoppix system to your HD, make your changes, make a new compressed Knoppix file, make a new iso CD image & then burn that to CD.

  8. #8
    Senior Member registered user
    Join Date
    Mar 2004
    Location
    Berlin
    Posts
    436
    cp smb.conf /etc/samba/smb.conf

    This will copy the file (if any) smb.conf from the $PWD (present working directory).

    If invoked from a script, the $PWD is the $PWD, from where the script was called, as long as no 'cd' command changed the $PWD in the script.

Similar Threads

  1. X won't autostart after crash
    By slwrider in forum Hdd Install / Debian / Apt
    Replies: 0
    Last Post: 05-14-2005, 07:46 PM
  2. autostart ?!
    By Catscratch in forum Hdd Install / Debian / Apt
    Replies: 5
    Last Post: 08-12-2004, 05:28 PM
  3. editing /KNOPPIX/etc/samba/samba.conf as root ?!?!
    By smarchand291 in forum General Support
    Replies: 0
    Last Post: 11-08-2003, 11:41 PM
  4. splash background and konqueror autostart
    By cYmen in forum Customising & Remastering
    Replies: 1
    Last Post: 06-29-2003, 08:34 PM
  5. Autostart KDE - automatic startx
    By Digital Wanker in forum General Support
    Replies: 11
    Last Post: 05-07-2003, 08:27 PM

Posting Permissions

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


Vintage 1960s Donner Model 3000 Analog Computer ~ MUSEUM PIECE Extremely Rare picture

Vintage 1960s Donner Model 3000 Analog Computer ~ MUSEUM PIECE Extremely Rare

$4000.00



NEC Multisync II JC-1402HMA VGA EGA CGA Analog TTL Computer Monitor Vintage 1988 picture

NEC Multisync II JC-1402HMA VGA EGA CGA Analog TTL Computer Monitor Vintage 1988

$699.99



NEW Aquarius+ Computer Signature Edition - 8Bit Retro System picture

NEW Aquarius+ Computer Signature Edition - 8Bit Retro System

$239.00



Landen Computer. Circa 1898. the Rapid Computer Company.  With Original Case. picture

Landen Computer. Circa 1898. the Rapid Computer Company. With Original Case.

$425.00



IBM Modem Saver Phone Line Tester picture

IBM Modem Saver Phone Line Tester

$7.99



Burr Brown Analog Computer parts Circuit boards w Helipot Potentiometers 1631a  picture

Burr Brown Analog Computer parts Circuit boards w Helipot Potentiometers 1631a

$85.00



Apple IIc Analog Board NOS - 661-0265 picture

Apple IIc Analog Board NOS - 661-0265

$74.00



Vintage Apple Macintosh Plus Completely Recapped #M0001A 1MB picture

Vintage Apple Macintosh Plus Completely Recapped #M0001A 1MB

$649.95



Extron RGB-160XI Analog Computer Video 60-378-01 picture

Extron RGB-160XI Analog Computer Video 60-378-01

$187.06



Macintosh Classic/Classic II Analog Board Computer 630-0395 New picture

Macintosh Classic/Classic II Analog Board Computer 630-0395 New

$276.00