I don't know much about accessing a hard drive across the internet, but I was wondering if it's possible with the raspberry pi?
Thanks

Connect your drive to one of the usb ports on your raspberry pi.maxxiejw wrote:It's a Hitachi Touro Desk Pro 2TB USB 3.0
Code: Select all
sudo mkdir -p /mnt/hitachi
Code: Select all
sudo apt-get install ntfs-3g
Code: Select all
sudo ntfs-3g /dev/sda1 /mnt/hitachi
The Pi doesn't have the horse power to transcode and stream across a network. You would need a much faster system, then you can install Plex Media Server (http://www.plexapp.com/) for streaming remotely.maxxiejw wrote:I want to access both files and be able to stream the videos from it.
Is it really necessary to set up a static IP?sim_tcr wrote: ...
...
To access this contents from internet, you need to first setup your pi be accessible from internet.
First assign a static address to you pi, details are at http://raspisimon.no-ip.org/ipaddress.php
Now forward your ssh port (by default port 22) in your router using the above assigned static address.
...
...
I guess by doing dhcp reservation in the router, router note down pi's mac address and always assign the same address to pi. Or in other words router reserves a particular ip addreSs for a mac address.klricks wrote:Is it really necessary to set up a static IP?sim_tcr wrote: ...
...
To access this contents from internet, you need to first setup your pi be accessible from internet.
First assign a static address to you pi, details are at http://raspisimon.no-ip.org/ipaddress.php
Now forward your ssh port (by default port 22) in your router using the above assigned static address.
...
...
I do DHCP reservations on my router:
First I find the RPi in the client list on the router
Then I assign an IP address within the DHCP range such as 192.168.1.123.
Now the RPi always gets the same IP address and there is no configuration needed on the RPi.
Am I missing something?
Correct the MAC addresses off all connected devices are displayed in the DHCP reservation table and referenced to the client name. raspberrypisim_tcr wrote: I guess by doing dhcp reservation in the router, router note down pi's mac address and always assign the same address to pi. Or in other words router reserves a particular ip addreSs for a mac address.
Yep - I use the same reservation technique. It gives a specific IP address to each MAC. A wifi dongle has its own MAC too.klricks wrote:Correct the MAC addresses off all connected devices are displayed in the DHCP reservation table and referenced to the client name. raspberrypisim_tcr wrote: I guess by doing dhcp reservation in the router, router note down pi's mac address and always assign the same address to pi. Or in other words router reserves a particular ip addreSs for a mac address.
If not connected then the MAC address can be entered manually.