Ga naar inhoud


Aanbevolen berichten

Geplaatst:
Citaat:
heb in mijn start_enigma het volgende staan

=============

#!/bin/sh
ifconfig eth0 192.168.0.2 netmask 255.255.255.000 up
sleep 5
mount -t nfs -o nolock 192.168.0.1:/dreambox /hdd

[ -x /hdd/root/startup.sh ] && {
# Put the programs you want to run in /hdd/root/startup.sh
# These will be started when enigma is running for 30 seconds.
# Within these 30 seconds the network should be running.
( sleep 30; /hdd/root/startup.sh ) &
}

/bin/update_tmp.sh

while :
do

===========================


Hallo jizbo
Je moet dit eens proberen he werkte voor mij ook.
Het schijnt dat je de bestemings directory bent vergeten.

fconfig eth0 192.168.0.2 netmask 255.255.255.000 up
sleep 5
mount -t nfs -o nolock 192.168.0.1:/dreambox /mnt

Suc 6

  • Reacties 35
  • Aangemaakt
  • Laatste reactie

Beste reacties in dit onderwerp

Beste reacties in dit onderwerp

Geplaatst:
Citaat:
Citaat:
heb in mijn start_enigma het volgende staan

=============

#!/bin/sh
ifconfig eth0 192.168.0.2 netmask 255.255.255.000 up
sleep 5
mount -t nfs -o nolock 192.168.0.1:/dreambox /hdd

[ -x /hdd/root/startup.sh ] && {
# Put the programs you want to run in /hdd/root/startup.sh
# These will be started when enigma is running for 30 seconds.
# Within these 30 seconds the network should be running.
( sleep 30; /hdd/root/startup.sh ) &
}

/bin/update_tmp.sh

while :
do

===========================


Hallo jizbo
Je moet dit eens proberen he werkte voor mij ook.
Het schijnt dat je de bestemings directory bent vergeten.

fconfig eth0 192.168.0.2 netmask 255.255.255.000 up
sleep 5
mount -t nfs -o nolock 192.168.0.1:/dreambox /mnt

Suc 6


mount -t nfs -o nolock 192.168.0.1:/dreambox /hdd

hier boven zie ik toch echt een destination staan, jij niet ?

anyway, zet de sleep eens op 10 ?
domme vragen bestaan niet, domme mensen wel.
Geplaatst:

@TSR de bestemming is inderdaad zoals tCC opmerkt mount -t nfs -o nolock 192.168.0.1:/dreambox /hdd

 

 

@tCC heb het al metsleep 20 geprobeerd , helaas nog niet succesvol <img src="/ubbthreads/images/graemlins/biggthumpdown.gif" alt="" />

Geplaatst:

Oke dan zal het wel zo zijn .

Ik ben wat dit betreft ook nog maar een newbie.

Het is bij mij ook raar ,want als ik 2 mappen mount dan ziet hij alleen de laaste <img src="/ubbthreads/images/graemlins/confused.gif" alt="" />

En als ik ze manual intype doen ze het wel<img src="/ubbthreads/images/graemlins/confused.gif" alt="" />

 

Zie hier mijn Start_Enigma

 

++++++++++++++++++++++++++++++++++++++++++++++++++++++++

#!/bin/sh

 

ifconfig eth0 192.168.1.103 netmask 255.255.255.000 up

sleep 5

mount -t nfs -o nolock 192.168.1.101:/mp3 /mnt

 

ifconfig eth0 192.168.1.103 netmask 255.255.255.000 up

sleep 5

mount -t nfs -o nolock 192.168.1.101:/movie /mnt

 

[ -x /hdd/root/startup.sh ] && {

# Put the programs you want to run in /hdd/root/startup.sh

# These will be started when enigma is running for 30 seconds.

# Within these 30 seconds the network should be running.

( sleep 30; /hdd/root/startup.sh ) &

}

 

/bin/update_tmp.sh

 

while :

do

/bin/enigma

case "$0" in

0)

echo "Halt"

/bin/update_var.sh

sync;/sbin/halt

;;

1)

echo "reboot"

/bin/update_var.sh

sync;/sbin/reboot

;;

2)

echo "Restart"

;;

*)

echo "Crash"

/bin/update_var.sh

sync;/sbin/halt

;;

esac

done

 

++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

Ik snap er ook nog niet veel van.

 

 

Geplaatst:

maar als alles opgestart is kan je WEL dus via telnet met hetzelfde commando mounten ?

 

zeker weten dat de ip configuratie dan hetzelfde is ?

domme vragen bestaan niet, domme mensen wel.
Geplaatst:

@TSR

 

zelf ook een nebie op dit gebied , bedankt voor je listing <img src="/ubbthreads/images/graemlins/xyxthumbs.gif" alt="" />

 

 

@tCC

ja als ik een telnet sessie doe dan werkt alles prima <img src="/ubbthreads/images/graemlins/xyxthumbs.gif" alt="" />

 

heb het ook al geprobeerd met de vi (unix editor) ook niet succesvol geeft hetzelfde resultaat met een normale editor en daarna het filetje te ftp'en

 

<img src="/ubbthreads/images/graemlins/kweetniet.gif" alt="" /> <img src="/ubbthreads/images/graemlins/kweetniet.gif" alt="" /> <img src="/ubbthreads/images/graemlins/kweetniet.gif" alt="" />

 

Geplaatst:

@TSR

 

1 keer een ifconfig is iig voldoende (dit om je netwerkkaart te activeren).

 

daarna een sleep 5.

 

dan de mount commando's.

dus niet later WEER een ifconfig doen...

 

domme vragen bestaan niet, domme mensen wel.
Geplaatst:

@tCC THX

 

Ik vindt het maar raar hij blijft alleen de laaste Mount zien.

 

Zie hier mijn Enigma:

 

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

#!/bin/sh

 

ifconfig eth0 192.168.1.103 netmask 255.255.255.000 up

sleep 5

mount -t nfs -o nolock 192.168.1.101:/mp3 /mnt

mount -t nfs -o nolock 192.168.1.101:/movie /mnt

 

[ -x /hdd/root/startup.sh ] && {

# Put the programs you want to run in /hdd/root/startup.sh

# These will be started when enigma is running for 30 seconds.

# Within these 30 seconds the network should be running.

( sleep 30; /hdd/root/startup.sh ) &

}

 

/bin/update_tmp.sh

 

while :

do

/bin/enigma

case "$0" in

0)

echo "Halt"

/bin/update_var.sh

sync;/sbin/halt

;;

1)

echo "reboot"

/bin/update_var.sh

sync;/sbin/reboot

;;

2)

echo "Restart"

;;

*)

echo "Crash"

/bin/update_var.sh

sync;/sbin/halt

;;

esac

done

 

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

Ik zal het toch geloof ik bij 1 Mount moet houden.

<img src="/ubbthreads/images/graemlins/confused.gif" alt="" />

Geplaatst:

Niet zo vreemd:

mount -t nfs -o nolock 192.168.1.101:/mp3 /mnt

mount -t nfs -o nolock 192.168.1.101:/movie /mnt

 

Je mount eerst /mp3 op de directory /mnt vorvolgens mount je daar /movie overheen. Logisch dat je de eerste mount niet meer ziet!

 

Je zou miscchien de volgende structuur kunnen maken:

- directorys /mnt/mp3 en /mount/movie aanmaken op de DB.

om vervolgens

mount -t nfs -o nolock 192.168.1.101:/mp3 /mnt/mp3

en

mount -t nfs -o nolock 192.168.1.101:/movie /mnt/movie

uit te voeren.

 

Dan heb je wel twee gelijktijdige gemounte directoy's <img src="/ubbthreads/images/graemlins/xyxthumbs.gif" alt="" />

Dat zeg ik... lezen!

Geplaatst:

dit omdat je beide shares naar /mnt mount en de 2e de 1e dus weer overschrijft <img src="/ubbthreads/images/graemlins/smile.gif" alt="" />

domme vragen bestaan niet, domme mensen wel.
Geplaatst:
Citaat:
Niet zo vreemd:
mount -t nfs -o nolock 192.168.1.101:/mp3 /mnt
mount -t nfs -o nolock 192.168.1.101:/movie /mnt

Je mount eerst /mp3 op de directory /mnt vorvolgens mount je daar /movie overheen. Logisch dat je de eerste mount niet meer ziet!

Je zou miscchien de volgende structuur kunnen maken:
- directorys /mnt/mp3 en /mount/movie aanmaken op de DB.
om vervolgens
mount -t nfs -o nolock 192.168.1.101:/mp3 /mnt/mp3
en
mount -t nfs -o nolock 192.168.1.101:/movie /mnt/movie
uit te voeren.

Dan heb je wel twee gelijktijdige gemounte directoy's <img src="/ubbthreads/images/graemlins/xyxthumbs.gif" alt="" />


@esc ik heb dit gisteren ook al geprobeerd maar ik mag geen directory aan maken in "mnt" met een FTP programa want dan zegt hij "verwerkingsfout" ???
Of moet dit gedaan worden met telnet zoja hoe?

Grtz TSR


Geplaatst:

Op de dreambox zijn alle directories readonly, behalve /var en als je een hdd erin hebt /hdd. In /mnt kan je dus geen sub directories maken en dus maar 1 mount doen in /mnt. Als een share hebt gemount in /mnt, dan kan je wel sub dirs maken

 

Je hebt de volgende opties:

 

- doe 1 mount in /mnt en maak in die mount je sub directories, dus:

 

mount -t nfs -o nolock 192.168.1.101:/dreambox /mnt # Wel even share maken voor /dreambox

mkdir /mnt/movie

mkdir /mnt/mp3

 

- Of. maak 2 mounts in bijf. /var

mkdir /var/mnt

mkdir /var/mnt/mp3

mkdir /var/mnt/movie

mount -t nfs -o nolock 192.168.1.101:/mp3 /var/mnt/mp3

mount -t nfs -o nolock 192.168.1.101:/movie /var/mnt/movie

 

Ronald

 

My DM(800|7025) is Ronaldd powered

Geplaatst:

Vanochtend nog 's met frisse ogen ernaar gekeken of er niet een puntje , komma'tje oid fout stond maar ik <img src="/ubbthreads/images/graemlins/kweetniet.gif" alt="" />

 

Onderstaand mijn start_enigma de attributen staan op 777 als ik het commando via telnet doe gaat het prima , iemand nog een idee ??? waarom het niet lukken wil <img src="/ubbthreads/images/graemlins/angel.gif" alt="" />

 

 

 

pc ip 192.168.0.1

db ip 1923.168.0.2

 

hd d:\dreambox\hdd

 

=========================================

 

#!/bin/sh

ifconfig eth0 192.168.0.2 netmask 255.255.255.000 up

sleep 10

mount -t NFS -o nolock 192.168.0.1:/dreambox /hdd

 

[ -x /hdd/root/startup.sh ] && {

# Put the programs you want to run in /hdd/root/startup.sh

# These will be started when enigma is running for 30 seconds.

# Within these 30 seconds the network should be running.

( sleep 30; /hdd/root/startup.sh ) &

}

 

/bin/update_tmp.sh

 

while :

do

/bin/enigma

case "$0" in

0)

echo "Halt"

/bin/update_var.sh

sync;/sbin/halt

;;

1)

echo "reboot"

/bin/update_var.sh

sync;/sbin/reboot

;;

2)

echo "Restart"

;;

*)

echo "Crash"

/bin/update_var.sh

sync;/sbin/halt

;;

esac

done

Geplaatst:

Als het handmatig wel lukt en niet via start_enigma, dan gok ik dat ifconfig niet gevonden kan worden. Vervang ifconfig eens door /sbin/ifconfig. Dus maak er van.

 

/sbin/ifconfig eth0 192.168.0.2 netmask 255.255.255.000 up

sleep 10

mount -t NFS -o nolock 192.168.0.1:/dreambox /hdd

 

Als het dan werkt probeer het dan ook eens of het werkt zonder die sleep, dan start de box iig sneller op.

 

Ronald

 

My DM(800|7025) is Ronaldd powered

Maak een account aan of log in om te reageren

Je moet een lid zijn om een reactie te kunnen achterlaten

Account aanmaken

Registreer voor een nieuwe account in onze community. Het is erg gemakkelijk!

Registreer een nieuwe account

Inloggen

Heb je reeds een account? Log hier in.

Nu inloggen
  • Wie is er online   0 leden

    • Er zijn geen geregistreerde gebruikers deze pagina aan het bekijken
×
×
  • Nieuwe aanmaken...