Page 4 of 5 FirstFirst ... 2345 LastLast
Results 46 to 60 of 63

Thread: how can I install TwonkyVision 2.5 ?

  1. #46
    Hi Hugo,
    when I boot the WL-HDD new, then is the edit smb.conf delete. This means, I make the smb.conf with the vi. When I reboot the ASUS there is no smb.conf. I dont know what happend.

  2. #47
    Hi, the smb.conf that I show you is the smb.conf from my Linksys that works great. I edit it, but it also don't work.

  3. #48
    You have to do some special operation to keep the smb.conf after reboot. We will see that afterward. For now, just keep your wl-hdd on until we finish. Please use my smb.conf and no other, using vi, and start smbd -D and nmbd -D as you were doing.

    you will seee the share if you connect on your pc with \\192.168.1.1\usb

    don't forget to mount the disk on /tmp/harddisk as you were doing before

  4. #49
    why connect with 192.168.1.1
    my asus have 192.168.1.220 and the pc 192.168.1.14

  5. #50
    ok then it is \\192.168.1.220\usb

    did you set it to this adress by yourself?

  6. #51
    shit,
    network was not found
    I'm in with telnet 192.168.1.200
    I can't anderstand this.

  7. #52
    not 192.168.200
    I have 192.168.1.220

  8. #53
    type the 3 following command and post result here:

    Code:
    ps
    Code:
    cat /etc/smb.conf
    Code:
    mount

  9. #54

    ps

    [admin@ASUS WL-HDD etc]$ ps
    PID Uid VmSize Stat Command
    1 admin 448 S /sbin/init
    2 admin SW [keventd]
    3 admin SWN [ksoftirqd_CPU0]
    4 admin SW [kswapd]
    5 admin SW [bdflush]
    6 admin SW [kupdated]
    7 admin SW [mtdblockd]
    41 admin 304 S telnetd
    46 admin 492 S httpd
    49 admin 356 S syslogd -m 0 -O /tmp/syslog.log -S -l 7
    51 admin 316 S klogd
    52 admin SW [khubd]
    58 admin 244 S lpd
    60 admin 236 S p9100d -f /dev/usb/lp0 0
    63 admin 360 S waveservermain
    65 admin 364 S rcamdmain
    70 admin 304 S infosvr br0
    71 admin 488 S watchdog
    73 admin 360 S ntp
    84 admin SW [kjournald]
    103 admin SW [usb-storage-0]
    104 admin SW [scsi_eh_0]
    130 admin 516 S -sh
    163 admin 360 S httpd eth1 7776
    170 admin 372 R ps

  10. #55

    cat /etc/smb.conf

    [admin@ASUS WL-HDD etc]$ cat /etc/smb.conf
    [global]
    workgroup = WORKGROUP
    netbios name = ASUS WL-HDD
    guest account = admin
    security = share
    browsable = yes
    guest ok = yes
    log level = 1
    max log size = 100
    encrypt passwords = no
    dns proxy = yes
    deadtime = 1
    browse list = yes
    wins support = yes
    domain master = yes
    syslog = 1
    [sys]
    path = /tmp/hd
    writable = yes
    browsable = yes
    force user = admin
    [share]
    path = /tmp/hd2/
    writable = yes
    browsable = yes
    force user = admin
    [c$]
    path= /
    writable = yes
    force user = admin
    browsable = no
    [usb]
    path = /tmp/harddisk
    writable = yes
    browsable = yes
    force user = admin

  11. #56

    mount

    [admin@ASUS WL-HDD etc]$ mount
    /dev/root on / type squashfs (ro)
    none on /dev type devfs (rw)
    proc on /proc type proc (rw)
    ramfs on /tmp type ramfs (rw)
    usbfs on /proc/bus/usb type usbfs (rw)
    /dev/discs/disc0/part1 on /tmp/hd1 type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/harddisk type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/hd2 type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/hd3 type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/usb type ext3 (rw)
    /dev/discs/disc0/part1 on /tmp/harddisk/part1 type ext3 (rw)
    [admin@ASUS WL-HDD etc]$

  12. #57
    Join Date
    Dec 2003
    Location
    Russian Federation
    Posts
    8,356
    Does "ASUS WL-HDD" is the host name? It will never work this way, do not use spaces, etc in hostnames. use something like "wlhdd".

  13. #58

    Thanks, that was it

    Juhu, now my shares are here. I can transfer the mediaserfer in share/part1.
    But when I now reboot then is the smb.conf empty and nothing ist mounted.

  14. #59
    hehe, I told you not to reboot until we finish.

    Now when you have everything reset to a working state, you will have to edit a file called post-boot.
    and another one called .files
    It is explained in Oleg's page.

    For you, you have to do this when your smb.conf is properly set up:

    I suppose your mediaserver file is at the root of your harddisk, otherwise, please change the path.

    Code:
    echo /etc/smb.conf >> /usr/local/.files
    Code:
    mkdir -p /usr/local/sbin/
    echo "#!/bin/sh" >> /usr/local/sbin/post-boot
    chmod +x /usr/local/sbin/post-boot
    echo "mount /dev/ide/host0/bus0/target0/lun0/part1 /tmp/harddisk" >> /usr/local/sbin/post-boot
    echo "smbd -D" >> /usr/local/sbin/post-boot
    echo "nmbd -D" >> /usr/local/sbin/post-boot
    echo "/tmp/harddisk/mediaserver" >> /usr/local/sbin/post-boot

    after that, do a
    Code:
    flashfs save
    flashfs commit
    flashfs enable
    reboot, you are set.

    You can now edit the twonkyvision-mediserver.ini file in your hd root to your liking.

    It should be the end my friend

  15. #60
    Quote Originally Posted by stefan9113
    /dev/discs/disc0/part1 on /tmp/hd1 type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/harddisk type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/hd2 type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/hd3 type ext3 (rw)
    /dev/ide/host0/bus0/target0/lun0/part1 on /tmp/usb type ext3 (rw)
    /dev/discs/disc0/part1 on /tmp/harddisk/part1 type ext3 (rw)
    My god, you really wanted to mount your harddisk, didn't you

Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. Problem running TwonkyVision
    By Olaf030 in forum WL-HDD Q&A
    Replies: 2
    Last Post: 15-06-2005, 17:47
  2. Question: TwonkyVision on WL500g
    By wurstel13 in forum WL-500g Q&A
    Replies: 0
    Last Post: 26-04-2005, 08:32
  3. TwonkyVision + Asus WL-HDD
    By GJM in forum WL-HDD Q&A
    Replies: 0
    Last Post: 17-04-2005, 21:53
  4. Replies: 2
    Last Post: 16-03-2005, 16:58
  5. How to install the 1.8.1.7-2a package?
    By sunwen in forum WL-500g Q&A
    Replies: 7
    Last Post: 16-11-2004, 15:50

Posting Permissions

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