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
  •  


NEW OEM Dell Inspiron 14 5406  P126G Laptop Battery 11.25V 40Wh JK6Y6  CF5RH picture

NEW OEM Dell Inspiron 14 5406 P126G Laptop Battery 11.25V 40Wh JK6Y6 CF5RH

$39.00



OEM WDX0R DELL 42Wh 15 5567 5568 5368 7368 7569 Fair Battery Health picture

OEM WDX0R DELL 42Wh 15 5567 5568 5368 7368 7569 Fair Battery Health

$14.24



R630 DELL OEM 10 x 2.5’’ CTO SERVER 2X HEATSINKS 2X 750W PSU IDRAC ENTERPRISE picture

R630 DELL OEM 10 x 2.5’’ CTO SERVER 2X HEATSINKS 2X 750W PSU IDRAC ENTERPRISE

$119.95



NEW OEM DELL (PKWVM) 95Wh Battery 7550 Precision CR72X 17C06 447VR picture

NEW OEM DELL (PKWVM) 95Wh Battery 7550 Precision CR72X 17C06 447VR

$79.99



OEM Dell Inspiron 11 13 14 15 17 3000 5000 7000 AC Adapter Charger 65W 4.5mm Tip picture

OEM Dell Inspiron 11 13 14 15 17 3000 5000 7000 AC Adapter Charger 65W 4.5mm Tip

$10.99



OEM 130W USB-C Type-C Charger for Dell XPS 15 9500 9570 9575 17 9700 DA130PM170 picture

OEM 130W USB-C Type-C Charger for Dell XPS 15 9500 9570 9575 17 9700 DA130PM170

$35.88



Genuine OEM 65W Dell PA-12 AC Adapter Charger 928G4 06TM1C LA65NS2-01 7.4*5.0mm picture

Genuine OEM 65W Dell PA-12 AC Adapter Charger 928G4 06TM1C LA65NS2-01 7.4*5.0mm

$14.99



OEM DELL 65W AC Adapter Charger 7.4mm Latitude 7490 7480 E7440 E7450 E7470 E7270 picture

OEM DELL 65W AC Adapter Charger 7.4mm Latitude 7490 7480 E7440 E7450 E7470 E7270

$11.88



Lot of 10 Genuine OEM Dell 180W AC Adapter Charger 19.5V 9.23A for Docks WD19 TB picture

Lot of 10 Genuine OEM Dell 180W AC Adapter Charger 19.5V 9.23A for Docks WD19 TB

$125.00



OEM 130W Power Adapter Charger For Dell XPS 15 9530 9550 9560 9570 7590 06TTY6 picture

OEM 130W Power Adapter Charger For Dell XPS 15 9530 9550 9560 9570 7590 06TTY6

$33.22