Un' ottima strategia per spostare file (mp3, avi, iso...) dalla play3 al pc è usare la rete. Infatti in pochi passi è possibile creare un sito ftp con gli strumenti che YellowDog Linux offre, raggiungibile da qualsiasi computer collegato in rete con la ps3, tramite il vostro client ftp preferito (anche IE... credo... dovrebbe... nn saprei nn lo uso da taaaaanto tempo).
Apriamo un Terminale dal menu applicazioni di Yellow Dog e diventiamo root:
Codice:
[fabio@localhost ~]$ su -
Password:
[root@localhost ~]#
ora editiamo il file di configurazione del server ftp
Codice:
[root@localhost ~]#gedit /etc/vsftpd/vsftpd.conf
e assicuriamoci che alcune opzioni siano settate cosi:
Codice:
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
Potrebbe essere conveniente poi appuntarsi l'ip della ps3:
Codice:
[root@localhost ~]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:19:C5:3C:4D:01
inet addr:192.168.2.2 Bcast:192.168.2.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:560 errors:0 dropped:0 overruns:0 frame:0
TX packets:632 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:29647 (28.9 KiB) TX bytes:97874 (95.5 KiB)
Interrupt:160
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:1779 errors:0 dropped:0 overruns:0 frame:0
TX packets:1779 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1501052 (1.4 MiB) TX bytes:1501052 (1.4 MiB)Nel
mio caso l'ip della play è 192.168.2.2.
A questo punto possiamo far partire il server ftp:
Codice:
[root@localhost ~]# /sbin/service vsftpd start
Starting vsftpd for vsftpd: [ OK ]
[root@localhost ~]#
ora abbassiamo il firewall (si lo so, cosi' e' un po' brutale ma magari la creazione di una regola ad hoc la vediamo nelle prossime puntate...)
Codice:
[root@localhost ~]# iptables -F
[root@localhost ~]#
A questo punto non resta che fare una prova. Colleghiamoci al server ftp dal pc usando un qualsiasi client ftp. Per semplicita' io usero il client a riga di comando (... si c'è anche su win):
Codice:
MacBook:~ fkb$ ftp 192.168.2.2
Connected to 192.168.2.2.
220 (vsFTPd 2.0.4)
Name (192.168.2.2:fkb): fabio
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> get BackupBluRay.jar
local: BackupBluRay.jar remote: BackupBluRay.jar
229 Entering Extended Passive Mode (|||13159|)
150 Opening BINARY mode data connection for BackupBluRay.jar (13735 bytes).
100% |*********************************************************************************************************************| 13735 147.92 KB/s 00:00
226 File send OK.
13735 bytes received in 00:00 (129.40 KB/s)
ftp>
File trasferito.