driver til Bufalo Linkstation live ?

Spørgsmål, som ikke kan besvares i andre hardware-fora, bør stilles her.
swotie
Indlæg: 542
Tilmeldt: 10. jan 2009, 08:31
Geografisk sted: Bjerringbro

Re: driver til Bufalo Linkstation live ?

Indlæg af swotie »

soundpartner skrev:jeg ville starte ud med noget i den stil:
#!/bin/bash
#
# Buffalo Linkstation Mini+Sbackup Service file used by anacron
# Version 0.2 by Olof Englund, 04.2009

interface=ra0
mountpoint=/media/Backup
ethernet=aa:bb:cc:dd:ee:ff
subnet=192.168.1.255


i=0
if [ -x /usr/sbin/sbackupd ]; then
while [ $i -lt 5 ]; do
wakeonlan -i $subnet $ethernet
sleep 20
let "i += 1"
done

check=`cat /etc/mtab | grep -c $mountpoint`

if [ "$check" = "0" ]; then
echo "check = $check. $mountpoint not mounted. Mounting."
mount $mountpoint
fi


øøhh ... hvor er det lige jeg skal rette mac adressen ... har du ikke glemt noget ?
/Henrik

Ubuntu 20.04 64 bit

Lenovo ideacenter 310S, Pentium J4205 Quad, 8 GB Ram,canonscan lide 120 scanner
soundpartner
Indlæg: 3461
Tilmeldt: 27. sep 2008, 23:51
IRC nickname: sound
Geografisk sted: København

Re: driver til Bufalo Linkstation live ?

Indlæg af soundpartner »

swotie skrev:jeg ville starte ud med noget i den stil:
#!/bin/bash
#
# Buffalo Linkstation Mini+Sbackup Service file used by anacron
# Version 0.2 by Olof Englund, 04.2009

interface=ra0
mountpoint=/media/Backup
ethernet=aa:bb:cc:dd:ee:ff
subnet=192.168.1.255


i=0
if [ -x /usr/sbin/sbackupd ]; then
while [ $i -lt 5 ]; do
wakeonlan -i $subnet $ethernet
sleep 20
let "i += 1"
done

check=`cat /etc/mtab | grep -c $mountpoint`

if [ "$check" = "0" ]; then
echo "check = $check. $mountpoint not mounted. Mounting."
mount $mountpoint
fi


øøhh ... hvor er det lige jeg skal rette mac adressen ... har du ikke glemt noget ?


næææ

mountpoint=/media/Backup <--mountpoint
ethernet=aa:bb:cc:dd:ee:ff <--mac adresse til disk
subnet=192.168.1.255 <--subnet

men som sagt jeg har bare taget det fra det script der var linket til... kan godt være det kan gøres smartere, eller at det lige skal tweakes lidt mere.
Selvudnævnt guru når det drejer sig om mobilt bredbånd

Webmaster og stifter af:
Billede
Hvor du finder scripts til en hver situation

Billede
swotie
Indlæg: 542
Tilmeldt: 10. jan 2009, 08:31
Geografisk sted: Bjerringbro

Re: driver til Bufalo Linkstation live ?

Indlæg af swotie »

jeg vil prøve at makke videre med det her ... I skal nok høre fra mig, hvis jeg ikke får det til at virke :lol:

Oz hvis jeg får det til at virke ;)
/Henrik

Ubuntu 20.04 64 bit

Lenovo ideacenter 310S, Pentium J4205 Quad, 8 GB Ram,canonscan lide 120 scanner
soundpartner
Indlæg: 3461
Tilmeldt: 27. sep 2008, 23:51
IRC nickname: sound
Geografisk sted: København

Re: driver til Bufalo Linkstation live ?

Indlæg af soundpartner »

swotie skrev:jeg vil prøve at makke videre med det her ... I skal nok høre fra mig, hvis jeg ikke får det til at virke :lol:

Oz hvis jeg får det til at virke ;)

så lige mere overflødigt
tror faktisk jeg ville starte med noget i denne stil

#!/bin/bash
#
# Buffalo Linkstation

mountpoint=/media/Backup
ethernet=aa:bb:cc:dd:ee:ff
subnet=192.168.1.255

wakeonlan -i $subnet $ethernet
sleep 20

check=`cat /etc/mtab | grep -c $mountpoint`

if [ "$check" = "0" ]; then
echo " $mountpoint not mounted. Mounting."
mount $mountpoint
fi
Selvudnævnt guru når det drejer sig om mobilt bredbånd

Webmaster og stifter af:
Billede
Hvor du finder scripts til en hver situation

Billede
swotie
Indlæg: 542
Tilmeldt: 10. jan 2009, 08:31
Geografisk sted: Bjerringbro

Re: driver til Bufalo Linkstation live ?

Indlæg af swotie »

er der en "code" for at se ip adresse og subnet maske på harddisken ?
/Henrik

Ubuntu 20.04 64 bit

Lenovo ideacenter 310S, Pentium J4205 Quad, 8 GB Ram,canonscan lide 120 scanner