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
  •  


A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G picture

A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G

$13.99



Samsung 16GB 2Rx4 PC4-2133P DDR4-17000 1.2V RDIMM ECC Registered Server Memory picture

Samsung 16GB 2Rx4 PC4-2133P DDR4-17000 1.2V RDIMM ECC Registered Server Memory

$16.29



HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin picture

HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin

$12.90



A-Tech 16GB 2 x 8GB PC3-12800 Laptop SODIMM DDR3 1600 Memory RAM PC3L 16G DDR3L picture

A-Tech 16GB 2 x 8GB PC3-12800 Laptop SODIMM DDR3 1600 Memory RAM PC3L 16G DDR3L

$27.98



A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G picture

A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G

$13.99



Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM picture

Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM

$13.25



8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A picture

8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A

$12.00



TeamGroup 16GB PC4 2666 PC4 21300 DDR4 2666MHz 1.2V CL19 Desktop RAM Memory picture

TeamGroup 16GB PC4 2666 PC4 21300 DDR4 2666MHz 1.2V CL19 Desktop RAM Memory

$27.95



A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM picture

A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM

$287.96



A-Tech 64GB 4x 16GB 2Rx4 PC4-17000R DDR4 2133MHz ECC REG RDIMM Server Memory RAM picture

A-Tech 64GB 4x 16GB 2Rx4 PC4-17000R DDR4 2133MHz ECC REG RDIMM Server Memory RAM

$87.96