PDA

View Full Version : [VU+ Solo2] Hard disk upgrade



weirskynet
11-04-14, 18:49
Hi their folks looking to upgrade the hard disk on my solo2 as i have a spare 300gb free from the 160gb i have in it currently

what im wondering is whats the best way to backup and transfer the stuff over ?

judge
11-04-14, 19:10
Easiest way would be to mount both drives & move from one to the other.

abu baniaz
11-04-14, 19:21
Initialise (format in ext file sytem) first though.

weirskynet
11-04-14, 19:58
How do I go about moving the files ?




Sent from my iPad using Tapatalk

judge
11-04-14, 20:01
Using telnet, something like

mv /media/hdd/movie/* /media/hdd2/
You'll have to check the mount paths...

weirskynet
11-04-14, 20:04
Sweet thanks


Sent from my iPad using Tapatalk

IAmATeaf
11-04-14, 21:58
I just initialised the new hdd in the box then plugged both drives into a PC and booted up off a Linux boot disk and then copied the files over from old to new.

Sent from my GT-I9505 using Tapatalk

weirskynet
12-04-14, 19:42
what would i use to transfer the complete hard disk contents onto the new one , i have mounted it and its shown as media/usb under mount point and has been initialied

judge
12-04-14, 19:53
what would i use to transfer the complete hard disk contents onto the new one , i have mounted it and its shown as media/usb under mount point and has been initialied

Telnet in & issue
df -h
Copy & paste the results here.

weirskynet
12-04-14, 19:55
Filesystem Size Used Available Use% Mounted on
ubi0:rootfs 196.7M 130.3M 66.4M 66% /
devtmpfs 279.2M 4.0K 279.2M 0% /dev
tmpfs 64.0K 0 64.0K 0% /media
/dev/sda1 232.9G 99.8G 133.1G 43% /media/hdd
/dev/sdb1 298.1G 188.5M 297.9G 0% /media/hdd2
tmpfs 279.3M 196.0K 279.1M 0% /var/volatile
root@vusolo2:~# df -hdf -hdf -h

judge
12-04-14, 20:02
Thought you said it was mounted as USB?
Anway:

mv /media/hdd/* /media/hdd2/
Should do the trick.

That's if you want to move, not copy the contents?

weirskynet
12-04-14, 20:18
says ommiting directory on some , anyway to override it?

weirskynet
12-04-14, 21:11
nope only copies some then says ommiting directory and files

any other commands i can try
or anything else i can do?

abu baniaz
12-04-14, 21:16
FTP program?

craig.gorms
12-04-14, 21:20
FTP program?

FileZilla is a good FTP application :-)


Sent from my iPhone using Tapatalk

judge
12-04-14, 21:25
Can you copy & paste one of the ommit errors here.

weirskynet
12-04-14, 21:33
Status: Renaming '/media/hdd/movie/WWE Viewing' to '/media/hdd2/movie/WWE Viewing'
Command: CWD /media/hdd/movie
Response: 250 Directory successfully changed.
Command: RNFR WWE Viewing
Response: 350 Ready for RNTO.
Command: RNTO /media/hdd2/movie/WWE Viewing
Response: 550 Rename failed.


this is what filezilla says when i try to copy files directory to directory

weirskynet
12-04-14, 21:35
root@vusolo2:~# mv /media/hdd/* media/hdd2/
mv: can't rename '/media/hdd/lost+found': No such file or directory
mv: can't rename '/media/hdd/movie': No such file or directory
mv: can't rename '/media/hdd/timeshift': No such file or directory
mv: can't rename '/media/hdd/usr': No such file or directory
mv: can't rename '/media/hdd/valerie': No such file or directory
mv: can't rename '/media/hdd/var': No such file or directory
mv: can't rename '/media/hdd/xbmc': No such file or directory


this is what i get from the mv command on telnet

judge
12-04-14, 21:40
You probably don't want a lot of them anyway - lost+found, timeshift.
Not sure why you would have a /media/hdd/usr & /media/hdd/var

try
ls -s /media/hdd/
ls -s /media/hdd/movie/

What does it then say is in them?

weirskynet
12-04-14, 21:46
256 lost+found 256 timeshift 256 valerie 256 xbmc
256 movie 256 usr 256 var

thats for the ls -s/media/hdd/

and this is for the ls -s/media/hdd/movie/

root@vusolo2:~# ls -s /media/hdd/movie/
363776 Android Cop
53248 Armin van Buuren - Save My Night .mpg
256 Cosmos
32256 Dimitri Vegas & Like Mike vs DVBBS & Borgeous - Stampede .mpg
28672 Dimitri Vegas & Like Mike vs Sander van Doorn - Project T .mpg
256 Films
256 Fleming
256 Game of Thrones
273152 Season 12 Episode 8
256 The Following
256 True Detective
256 UFC
256 WWE Viewing

judge
12-04-14, 21:57
No idea why it's not moving them unless they are already in the destination folder.

Try:
mv /media/hdd/movie/Android (hit tab here so it completes the name for you) /media/hdd2/movie/

Does it then move the Android Cop directory?
If so, you could work your way down through the others...


Or
mkdir /media/hdd2/movie/leftover
mv /media/hdd/movie/* /media/hdd2/movie/leftover/

weirskynet
12-04-14, 22:08
No idea why it's not moving them unless they are already in the destination folder.

Try:
mv /media/hdd/movie/Android (hit tab here so it completes the name for you) /media/hdd2/movie/

Does it then move the Android Cop directory?
If so, you could work your way down through the others...


Or
mkdir /media/hdd2/movie/leftover
mv /media/hdd/movie/* /media/hdd2/movie/leftover/




root@vusolo2:~# mv /media/hdd/ufc/* /media/hdd2/UFC/
mv: can't rename '/media/hdd/ufc/*': No such file or directory

i can use mkdir to make the directory but when i try the mv command thats what i get :confused::confused:

judge
12-04-14, 22:15
mv /media/hdd/ufc/* is different than mv /media/hdd/UFC/*
it's case sensitive.

At this stage, maybe try as suggested by Abu above & use an ftp client.

weirskynet
12-04-14, 22:17
does same when both are same case


have tried an ftp client file zilla but when i try to copy it within the program it fails also :confused::confused:

weirskynet
12-04-14, 22:24
actually think i got it working , i tried it again and made sure it was correct directories and seems to be doing something
:p

andyblac
13-04-14, 00:16
try


move -r /media/hdd/* /media/hdd2

judge
13-04-14, 00:23
try


move -r /media/hdd/* /media/hdd2

move?
-r for recursive works well with copy, not mv.
No idea what messed up @weirskynet mv though...
If the 2nd disk was blank, should have just worked.

weirskynet
13-04-14, 10:54
Yeah hard disk was empty and initialised also first

Have moved the movie/recording folder and items over and the other folders apart from some will try the other command when I'm home

If it don't then will just swap it out as have most off it now anyways


Sent from my iPhone using Tapatalk

Weirskynet
Living in harmony with his ,
Vu+ Solo2 , 😜👍😛😁

weirskynet
13-04-14, 15:50
With the move command

It says


-sh: move: not found

Any ideas


Sent from my iPhone using Tapatalk

Weirskynet
Living in harmony with his ,
Vu+ Solo2 , 😜👍😛😁