My Net 750 and linux ubuntu

Making this post to share experience with my net product and linux.

My goal is to use the My_Net_750 as a little NAS for my PC and DLNA for my Teac WAP 8500 music player.

I plug 2 usb disk and I can browse then with smbclient to find the name of the shares:

root@fred-pc:~# smbclient -L '\192.168.1.1' -U test%test

    Sharename       Type      Comment
    ---------       ----      -------
    IPC$            IPC       
    ADMIN$          IPC       
    print$          Disk      
    Seagate_Portable_34 Disk => first partition of my 500GB disk in NTFS
    Seagate_Portable_38 Disk => second partition of my 500GB disk in linux swap    
    Seagate_Portable_39 Disk => third partition of my 500GB disk in ext4     
    WD_412AS__External_78 Disk => first partition of my 160GB disk in ext4    
session request to 192.168.1.1 failed (Called name not present)
session request to 192 failed (Called name not present)

    Server               Comment
    ---------            -------

    Workgroup            Master
    ---------            -------
    test  

               
root@fred-pc:/# mount -t cifs //192.168.1.1/Seagate_Portable_34 /NAS -o “user=test,password=test,rw”
root@fred-pc:/# df -k
Filesystem                        1K-blocks      Used Available Use% Mounted on
/dev/sdb1                          15386000   3072896  11531536  22% /
udev                                 987688         4    987684   1% /dev
tmpfs                                398172       844    397328   1% /run
none                                   5120         0      5120   0% /run/lock
none                                 995420         0    995420   0% /run/shm
none                                 102400        12    102388   1% /run/user
//192.168.1.1/Seagate_Portable_38 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_34 471604136 456063556  15540580  97% /NAS

=> why 2 partitions mounted ?

=> NTFS ok

root@fred-pc:/# mount -t cifs //192.168.1.1/Seagate_Portable_39 /NAS2 -o “user=test,password=test,rw”
root@fred-pc:/# df -k
Filesystem                        1K-blocks      Used Available Use% Mounted on
/dev/sdb1                          15386000   3072844  11531588  22% /
udev                                 987688         4    987684   1% /dev
tmpfs                                398172       844    397328   1% /run
none                                   5120         0      5120   0% /run/lock
none                                 995420         0    995420   0% /run/shm
none                                 102400        12    102388   1% /run/user
//192.168.1.1/Seagate_Portable_38 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_34 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_39  14523884  11288900   3234984  78% /NAS2

=> ext4 ok

root@fred-pc:/# mount -t cifs //192.168.1.1/Seagate_Portable_38 /NAS3 -o “user=test,password=test,rw”
root@fred-pc:/# df -k
Filesystem                        1K-blocks      Used Available Use% Mounted on
/dev/sdb1                          15386000   3073164  11531268  22% /
udev                                 987688         4    987684   1% /dev
tmpfs                                398172       864    397308   1% /run
none                                   5120         0      5120   0% /run/lock
none                                 995420         0    995420   0% /run/shm
none                                 102400        12    102388   1% /run/user
//192.168.1.1/Seagate_Portable_38 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_34 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_39  14523884  11288908   3234976  78% /NAS2

=> swap is not mounted that is normal

root@fred-pc:/# mount -t cifs //192.168.1.1/Seagate_Portable_34 /NAS3 -o “user=test,password=test,rw”
root@fred-pc:/# df -k
Filesystem                        1K-blocks      Used Available Use% Mounted on
/dev/sdb1                          15386000   3072976  11531456  22% /
udev                                 987688         4    987684   1% /dev
tmpfs                                398172       864    397308   1% /run
none                                   5120         0      5120   0% /run/lock
none                                 995420         0    995420   0% /run/shm
none                                 102400        12    102388   1% /run/user
//192.168.1.1/Seagate_Portable_38 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_34 471604136 456063556  15540580  97% /NAS
//192.168.1.1/Seagate_Portable_39  14523884  11288912   3234972  78% /NAS2
//192.168.1.1/Seagate_Portable_38 471604136 456063556  15540580  97% /NAS3
//192.168.1.1/Seagate_Portable_34 471604136 456063556  15540580  97% /NAS3

=> again double mount bug with NTFS+linux swap…
 (I should delete it)

 Watchting an 1080p mkv with vlc from mounted filesystem ik wrking fine.

2 Likes

Thanks for sharing.