Installation from scratch

Re: Installation from scratch

Postby fvdw » Wed Mar 14, 2012 8:58 pm

@jocko
:-D I know, you will go to the bottom of this and not rest until having the best possible solution :punk
But there it is no real issue to have 8 cylinders space between the partitions. The user will not notice it.
fvdw
Site Admin - expert
 
Posts: 13239
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Installation from scratch

Postby paros » Thu Mar 15, 2012 2:25 pm

Thanks for all help, its so much better than previous OS!
If you guys don't have anyone that make translation to Swedish, I gladly help.
paros
 
Posts: 54
Joined: Mon Mar 12, 2012 6:28 am

Re: Installation from scratch

Postby Jocko » Thu Mar 15, 2012 2:40 pm

In version (12.x or 13.0), we plan to make more translation. So, there will be some topics about it after release fvdw-sl 12.0
Jocko
Site Admin - expert
 
Posts: 11366
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: Installation from scratch

Postby fvdw » Thu Mar 15, 2012 7:34 pm

paros wrote:Thanks for all help, its so much better than previous OS!
If you guys don't have anyone that make translation to Swedish, I gladly help.


thanks for your positive feedback Paros, much appreciated, as Jocko said we will take this up after release of 12-0 and will gladly make use of your offer
fvdw
Site Admin - expert
 
Posts: 13239
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Installation from scratch

Postby dundee » Mon Jul 30, 2012 10:06 am

Hi,

I have the same problem installing a new 1,5TB Hard Drive - "Partition 1 does not start on physical sector boundary".
Even with gpated "auto" alignment it does not work.

I solve it with using: > fdisk -cu -H224 -S56 /dev/sdx

The Partion Table looks like this:
[ img ]
http://img9.imageshack.us/img9/8996/fdiskfinal.png

Congratulations to the author(s) for this firmware!!
dundee
 

Re: Installation from scratch

Postby Jocko » Mon Jul 30, 2012 11:54 am

Thanks dundee for your congratulations.

This keeps our motivation to develop the firmware. ;)

Indeed, you have an AF disk. So you must use a non standard partitions table.

First, you used an old partition table. Now, more space is attributed for the system partitions (twice enlarged):
Code: Select all
    Command (m for help): p

    Disk /dev/sda: 2000.3 GB, 2000398934016 bytes
    255 heads, 63 sectors/track, 243201 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

       Device Boot      Start         End      Blocks  Id System
    /dev/sda1               1          64      514048+ 83 Linux
    /dev/sda2              65         128      514080  83 Linux
    /dev/sda3             129         192      514080  82 Linux swap
    /dev/sda4             193      243201  1951969792+  5 Extended
    /dev/sda5             193         292      803218+ 83 Linux
    /dev/sda6             293         293        8001  83 Linux
    /dev/sda7             294         357      514048+ 83 Linux
    /dev/sda8             358      243201  1950644398+ 83 Linux



No need to use the trick
I solve it with using: > fdisk -cu -H224 -S56 /dev/sdx


With this new partition table and with an AF disk, the following partition table must be used :

Partition 1 start 9 end 72
partition 2 start 73 end 136
partition 3 start 137 en 200
partition 4 start 201 end xxxxxxxx
Partition 5 start 209 end 312
Partition 6 start 321 end 328
Partition 7 start 337 end 400
Partition 8 start 409 end xxxxxxxx

Note the sda4 and sda8 size must be divisable by 8. So, with a 1,5TB disk, the end cylinder is :
xxxxxxx= (disknbmaxcylinders-y - 200) , choose y between 0 and 7 where xxxxxx will be divisable by 8

So if your disk has :
255 heads, 63 sectors/track, 182401 cylinders, xxxxxx is equal to 182400 :
(182400-200)/8=22775 => ok!
Jocko
Site Admin - expert
 
Posts: 11366
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: Installation from scratch

Postby dundee » Tue Jul 31, 2012 2:29 am

Thanks for the tip!

I tried to use the info that is refered in your tutorial, that is great, but I had some issues with the space in system partions when in used the dd command, so I put, for example, one more cylinder in each partition.

I tried the partion table for the 2TB disk and in some partions the error persists "Partition 1 does not start on physical sector boundary", so I used the command > fdisk -cu -H224 -S56 /dev/sdx to bypass it.


Is there any increment in speed with doubling the space in the partitions (sdx1 to sdx7?
dundee
 

Re: Installation from scratch

Postby fvdw » Tue Jul 31, 2012 3:13 pm

dundee wrote:
....
Is there any increment in speed with doubling the space in the partitions (sdx1 to sdx7?


No, it is only meant to be able to install in future bigger firmware disk images on the nwsp2
fvdw
Site Admin - expert
 
Posts: 13239
Joined: Tue Apr 12, 2011 2:30 pm
Location: Netherlands

Re: Installation from scratch

Postby Jocko » Tue Jul 31, 2012 5:18 pm

dundee wrote:I tried the partion table for the 2TB disk and in some partions the error persists "Partition 1 does not start on physical sector boundary", so I used the command > fdisk -cu -H224 -S56 /dev/sdx to bypass it.


What partition did you used ?
This one ?
Code: Select all
/dev/sda1               1          64      514048+ 83 Linux
    /dev/sda2              65         128      514080  83 Linux
    /dev/sda3             129         192      514080  82 Linux swap
    /dev/sda4             193      243201  1951969792+  5 Extended
....

or that one
Code: Select all
Partition 1 start 9 end 72
partition 2 start 73 end 136
partition 3 start 137 en 200
partition 4 start 201 end xxxxxxxx
...


Note 1: To use this table you must before restore the number of heads and cylinders .
Code: Select all
fdisk -cu -H255 -S63 /dev/sdx

Note 2 : if you add one cylinder with the second table, the partitions can be never aligned !
Jocko
Site Admin - expert
 
Posts: 11366
Joined: Tue Apr 12, 2011 4:48 pm
Location: Orleans, France

Re: Installation from scratch

Postby dundee » Wed Aug 01, 2012 11:55 pm

It tried the first one, without setting the head and sector to 224 and 56.
Code: Select all
    /dev/sda1               1          64      514048+ 83 Linux
    /dev/sda2              65         128      514080  83 Linux
    /dev/sda3             129         192      514080  82 Linux swap
    /dev/sda4             193      243201  1951969792+  5 Extended
....


I will change to the second one. Thanks!
dundee
 

Previous

Return to Lacie Network Space vs2 and max version

Who is online

Users browsing this forum: No registered users and 1 guest

cron