Prepping 1 TB portable drive to USB Pogoplug? August 10, 2015 07:33PM |
Registered: 9 years ago Posts: 1,516 |
Re: Prepping 1 TB portable drive to USB Pogoplug? August 10, 2015 07:56PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: Prepping 1 TB portable drive to USB Pogoplug? August 10, 2015 10:29PM |
Registered: 14 years ago Posts: 264 |
YEAH! August 11, 2015 12:21AM |
Registered: 9 years ago Posts: 1,516 |
Re: Prepping 1 TB portable drive to USB Pogoplug? August 11, 2015 11:11AM |
Registered: 9 years ago Posts: 1,516 |
Re: Prepping 1 TB portable drive to USB Pogoplug? August 11, 2015 03:35PM |
Admin Registered: 13 years ago Posts: 19,102 |
Re: Prepping 1 TB portable drive to USB Pogoplug? August 11, 2015 04:09PM |
Registered: 9 years ago Posts: 1,516 |
Re: Prepping 1 TB portable drive to USB Pogoplug? August 11, 2015 04:25PM |
Admin Registered: 13 years ago Posts: 19,102 |
SWEET! August 11, 2015 04:58PM |
Registered: 9 years ago Posts: 1,516 |
Re: SWEET! August 11, 2015 06:07PM |
Admin Registered: 13 years ago Posts: 19,102 |
/swapfile1 swap swap defaults 0 0
if [ -f /media/HOME/swapfile2 ]; then swapoff -a swapon /media/HOME/swapfile2 logger -s -i "Swap ON using /media/HOME/swapfile2" else logger -s -i "/media/HOME/swapfile2 not found, use system default swapfile1" fi
swapoff -a umount /media/HOME
nose to grindstone August 11, 2015 09:36PM |
Registered: 9 years ago Posts: 1,516 |
Re: nose to grindstone August 11, 2015 11:53PM |
Admin Registered: 13 years ago Posts: 19,102 |
yeah I overlooked August 12, 2015 02:07PM |
Registered: 9 years ago Posts: 1,516 |
Re: yeah I overlooked August 12, 2015 03:10PM |
Admin Registered: 13 years ago Posts: 19,102 |
dmesg | tail
Re: Prepping 1 TB portable drive to USB Pogoplug? August 12, 2015 11:14PM |
Registered: 9 years ago Posts: 1,516 |
root@debian:~# dmesg | tail [ 14.578908] kjournald starting. Commit interval 5 seconds [ 16.004449] udevd[259]: starting version 175 [ 16.633017] orion_wdt: Initial timeout 21 sec [ 16.786446] USB Power: 5000 mV [ 17.246687] random: nonblocking pool is initialized [ 18.271347] EXT3-fs (sda1): using internal journal [ 23.109516] NET: Registered protocol family 10 [ 24.349616] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 27.394300] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, ful l duplex, flow control disabled [ 27.404229] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready root@debian:~# dmesg | tail [ 365.607033] usb-storage 1-1.2:1.0: USB Mass Storage device detected [ 365.622892] scsi host1: usb-storage 1-1.2:1.0 [ 366.871242] scsi 1:0:0:0: Direct-Access Lexar USB Flash Drive 8.07 PQ : 0 ANSI: 4 [ 366.891571] sd 1:0:0:0: Attached scsi generic sg1 type 0 [ 366.898689] sd 1:0:0:0: [sdb] 62537728 512-byte logical blocks: (32.0 GB/29.8 GiB) [ 366.914584] sd 1:0:0:0: [sdb] Write Protect is off [ 366.919409] sd 1:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 366.923332] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doe sn't support DPO or FUA [ 366.994418] sdb: sdb1 < sdb5 > [ 367.007306] sd 1:0:0:0: [sdb] Attached SCSI removable disk root@debian:~#
Best laid plans of mice & men August 14, 2015 01:33PM |
Registered: 9 years ago Posts: 1,516 |
Samba smb.conf for a simple set up August 14, 2015 04:22PM |
Admin Registered: 13 years ago Posts: 19,102 |
cd /etc/samba mv smb.conf smb.conf.saveand then copy the download smb.conf to here.
testparmIf there is any error then it will give some indication where to fix, if not then you will see normal output of the test.
/etc/init.d/samba restart
# log file = /var/log/samba/log.%m log file = /tmp/logsamba.%m
[media] comment = shared media (eg. USB drives) path = /media browseable = yes writeable = yes guest ok = yes
[Pictures] comment = shared media (eg. USB drives) path = /media/sdb1/Pictures browseable = yes writeable = yes guest ok = yes
edit August 14, 2015 11:39PM |
Registered: 9 years ago Posts: 1,516 |
delete me August 18, 2015 02:20AM |
Registered: 9 years ago Posts: 1,516 |
-=success-for-the-most-part=- September 10, 2015 11:39PM |
Registered: 9 years ago Posts: 1,516 |
[G-Connect] guest ok = yes comment = Cloud 9! writeable = yes path = /mnt/sdb1
/dev/sdb1 /mnt/sdb1 vfat defaults 0 0
# -bash: testparm: command not found
Re: Best laid plans of mice & men June 08, 2016 04:50PM |
Registered: 9 years ago Posts: 73 |
Re: Best laid plans of mice & men June 08, 2016 05:15PM |
Registered: 10 years ago Posts: 1,037 |