How does RSYNC do incremental Backups Come Celebrate our 10 Year Anniversary!RSync incremental backups, backing files that haven't changed. Does file access time cause a re-backup?ssh & tar to incrementally transfer (like rsync)How to easily store incremental backups of a linux server on a remote windows machine?How should I organize my backups?BackupPC - are full backups really full when using rsync?How can I incrementally backup a large amount of data [with rsync]?Merge incremental rsync backupsrsync to unmounted webdav shareincremental backup IMG files - LinuxRsync copy remote hardlinks not entire fileRemote incremental backups with rsync?

How does RSYNC do incremental Backups



Come Celebrate our 10 Year Anniversary!RSync incremental backups, backing files that haven't changed. Does file access time cause a re-backup?ssh & tar to incrementally transfer (like rsync)How to easily store incremental backups of a linux server on a remote windows machine?How should I organize my backups?BackupPC - are full backups really full when using rsync?How can I incrementally backup a large amount of data [with rsync]?Merge incremental rsync backupsrsync to unmounted webdav shareincremental backup IMG files - LinuxRsync copy remote hardlinks not entire fileRemote incremental backups with rsync?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








13















How does rsync know which files are changed and which are not? Does it log its data anywhere in the file?



Because I want to do incremental backups, but first it will transfer all files.



So my main question is: if I upload the initial files via FTP but not by rsync.
Will rsync still skips those existing files or it will upload everything on the first run.









share






























    13















    How does rsync know which files are changed and which are not? Does it log its data anywhere in the file?



    Because I want to do incremental backups, but first it will transfer all files.



    So my main question is: if I upload the initial files via FTP but not by rsync.
    Will rsync still skips those existing files or it will upload everything on the first run.









    share


























      13












      13








      13


      3






      How does rsync know which files are changed and which are not? Does it log its data anywhere in the file?



      Because I want to do incremental backups, but first it will transfer all files.



      So my main question is: if I upload the initial files via FTP but not by rsync.
      Will rsync still skips those existing files or it will upload everything on the first run.









      share
















      How does rsync know which files are changed and which are not? Does it log its data anywhere in the file?



      Because I want to do incremental backups, but first it will transfer all files.



      So my main question is: if I upload the initial files via FTP but not by rsync.
      Will rsync still skips those existing files or it will upload everything on the first run.







      backup rsync sftp





      share














      share












      share



      share








      edited Nov 29 '16 at 17:10









      umläute

      292320




      292320










      asked May 4 '10 at 6:57







      John



























          5 Answers
          5






          active

          oldest

          votes


















          11














          Rsync has a number of flags which control what it will look at and what it will copy over to the destination. Most often the "-a" flag is used which is the "Archive" flag, this is probably what you want. run rsync with the "-av" flags and have it do a first run against the data you want backed up. The next time it runs it'll do a block checksum of the file, and only copy over the parts which have been modified on existing files, copy new files over, and remove files which are no longer there. Check the "-a" options section on:



          http://linux.die.net/man/1/rsync



          The first run will be BandWidth intensive, the following runs will most likely be processor intensive but use little Bandwidth compared to the initial run. Unless you have a lot of churn over your data set.



          Rsync doen't care how you got the files in the source, or the destination directories, it's only going to copy the changes between the two, unless you add flags to do something different.



          If you want to log what was changed you can use the "--log-file" option. All in all something like this sounds like what you want:



          rsync -av --log-file=/var/log/rsync.log -e "ssh -l backup-user" backup-user@source-machine::module /nas01/backups




          share






























            7














            rsync doesn't do 'incremental', it's more like 'differential'. it doesn't transfer changes (which assume some knowledge of a prior run), it transfers differences (by comparing the source with the target files)



            a simplification of the process:



            • first checks file size, creation/modification dates, flags... if it's all identical, skip the file.

            • if there's no file with that name on the target, simply copies the whole file.

            • if there's a file on the target, it calculates checksums for each 2KB of the file and transfers to the sender.

            • the sender compares the content of the origin file and compares with the target, and transfers any data not already there, together with references to any matched data. with that, the target can reconstruct the whole file using pieces of the old target and new blocks.




            share






























              5














              rsync does not log any data, it checks file modification timestamps and then content. if you upload by ftp first it'll be fine - rsync will not re-transmit all data but probably will go through all the content and fix timestamps. but there will be no huge transfer again.





              share






























                5














                Maybe I being pedantic but incremental backups mean you have a full backup first. Then you have backup of files changed since that backup. Then you have another backup of the backups changed since the previous one, etc. So you need the full backup, and all incremental backups since that one.



                So, just using archive mode is not a incremental backup. I think the difference is important because it means you can't go back in time to get files before they changed.



                If you want to do a true incremental backup, you use options such as --backup-dir. There is an example here.





                share




















                • 1





                  +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                  – sleske
                  May 4 '10 at 14:51











                • Ah yes! Mirroring was the word I was grasping for, good call :-)

                  – Kyle Brandt
                  May 4 '10 at 15:18


















                0














                If the real question is "I want to do incremental backups over rsync", there are a few options available. I use Dirvish:



                http://www.dirvish.org/



                Restoring is easy because it gives you snapshots: it uses hardlinks to give you complete snapshots while saving space where a file is identical. Internally, it uses rsync's --link-dest option:



                --link-dest=DIR hardlink to files in DIR when unchanged


                Since it uses rsync it also saves network bandwidth (and hence time) where the changes are very small. It also works if you tar and sneakernet a locally created dirvish image first, if you have lots of files and a slow link.





                share






















                  protected by Community Apr 17 at 9:12



                  Thank you for your interest in this question.
                  Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                  Would you like to answer one of these unanswered questions instead?













                  5 Answers
                  5






                  active

                  oldest

                  votes








                  5 Answers
                  5






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  11














                  Rsync has a number of flags which control what it will look at and what it will copy over to the destination. Most often the "-a" flag is used which is the "Archive" flag, this is probably what you want. run rsync with the "-av" flags and have it do a first run against the data you want backed up. The next time it runs it'll do a block checksum of the file, and only copy over the parts which have been modified on existing files, copy new files over, and remove files which are no longer there. Check the "-a" options section on:



                  http://linux.die.net/man/1/rsync



                  The first run will be BandWidth intensive, the following runs will most likely be processor intensive but use little Bandwidth compared to the initial run. Unless you have a lot of churn over your data set.



                  Rsync doen't care how you got the files in the source, or the destination directories, it's only going to copy the changes between the two, unless you add flags to do something different.



                  If you want to log what was changed you can use the "--log-file" option. All in all something like this sounds like what you want:



                  rsync -av --log-file=/var/log/rsync.log -e "ssh -l backup-user" backup-user@source-machine::module /nas01/backups




                  share



























                    11














                    Rsync has a number of flags which control what it will look at and what it will copy over to the destination. Most often the "-a" flag is used which is the "Archive" flag, this is probably what you want. run rsync with the "-av" flags and have it do a first run against the data you want backed up. The next time it runs it'll do a block checksum of the file, and only copy over the parts which have been modified on existing files, copy new files over, and remove files which are no longer there. Check the "-a" options section on:



                    http://linux.die.net/man/1/rsync



                    The first run will be BandWidth intensive, the following runs will most likely be processor intensive but use little Bandwidth compared to the initial run. Unless you have a lot of churn over your data set.



                    Rsync doen't care how you got the files in the source, or the destination directories, it's only going to copy the changes between the two, unless you add flags to do something different.



                    If you want to log what was changed you can use the "--log-file" option. All in all something like this sounds like what you want:



                    rsync -av --log-file=/var/log/rsync.log -e "ssh -l backup-user" backup-user@source-machine::module /nas01/backups




                    share

























                      11












                      11








                      11







                      Rsync has a number of flags which control what it will look at and what it will copy over to the destination. Most often the "-a" flag is used which is the "Archive" flag, this is probably what you want. run rsync with the "-av" flags and have it do a first run against the data you want backed up. The next time it runs it'll do a block checksum of the file, and only copy over the parts which have been modified on existing files, copy new files over, and remove files which are no longer there. Check the "-a" options section on:



                      http://linux.die.net/man/1/rsync



                      The first run will be BandWidth intensive, the following runs will most likely be processor intensive but use little Bandwidth compared to the initial run. Unless you have a lot of churn over your data set.



                      Rsync doen't care how you got the files in the source, or the destination directories, it's only going to copy the changes between the two, unless you add flags to do something different.



                      If you want to log what was changed you can use the "--log-file" option. All in all something like this sounds like what you want:



                      rsync -av --log-file=/var/log/rsync.log -e "ssh -l backup-user" backup-user@source-machine::module /nas01/backups




                      share













                      Rsync has a number of flags which control what it will look at and what it will copy over to the destination. Most often the "-a" flag is used which is the "Archive" flag, this is probably what you want. run rsync with the "-av" flags and have it do a first run against the data you want backed up. The next time it runs it'll do a block checksum of the file, and only copy over the parts which have been modified on existing files, copy new files over, and remove files which are no longer there. Check the "-a" options section on:



                      http://linux.die.net/man/1/rsync



                      The first run will be BandWidth intensive, the following runs will most likely be processor intensive but use little Bandwidth compared to the initial run. Unless you have a lot of churn over your data set.



                      Rsync doen't care how you got the files in the source, or the destination directories, it's only going to copy the changes between the two, unless you add flags to do something different.



                      If you want to log what was changed you can use the "--log-file" option. All in all something like this sounds like what you want:



                      rsync -av --log-file=/var/log/rsync.log -e "ssh -l backup-user" backup-user@source-machine::module /nas01/backups





                      share











                      share


                      share










                      answered May 4 '10 at 7:15









                      Ali ChehabAli Chehab

                      42125




                      42125























                          7














                          rsync doesn't do 'incremental', it's more like 'differential'. it doesn't transfer changes (which assume some knowledge of a prior run), it transfers differences (by comparing the source with the target files)



                          a simplification of the process:



                          • first checks file size, creation/modification dates, flags... if it's all identical, skip the file.

                          • if there's no file with that name on the target, simply copies the whole file.

                          • if there's a file on the target, it calculates checksums for each 2KB of the file and transfers to the sender.

                          • the sender compares the content of the origin file and compares with the target, and transfers any data not already there, together with references to any matched data. with that, the target can reconstruct the whole file using pieces of the old target and new blocks.




                          share



























                            7














                            rsync doesn't do 'incremental', it's more like 'differential'. it doesn't transfer changes (which assume some knowledge of a prior run), it transfers differences (by comparing the source with the target files)



                            a simplification of the process:



                            • first checks file size, creation/modification dates, flags... if it's all identical, skip the file.

                            • if there's no file with that name on the target, simply copies the whole file.

                            • if there's a file on the target, it calculates checksums for each 2KB of the file and transfers to the sender.

                            • the sender compares the content of the origin file and compares with the target, and transfers any data not already there, together with references to any matched data. with that, the target can reconstruct the whole file using pieces of the old target and new blocks.




                            share

























                              7












                              7








                              7







                              rsync doesn't do 'incremental', it's more like 'differential'. it doesn't transfer changes (which assume some knowledge of a prior run), it transfers differences (by comparing the source with the target files)



                              a simplification of the process:



                              • first checks file size, creation/modification dates, flags... if it's all identical, skip the file.

                              • if there's no file with that name on the target, simply copies the whole file.

                              • if there's a file on the target, it calculates checksums for each 2KB of the file and transfers to the sender.

                              • the sender compares the content of the origin file and compares with the target, and transfers any data not already there, together with references to any matched data. with that, the target can reconstruct the whole file using pieces of the old target and new blocks.




                              share













                              rsync doesn't do 'incremental', it's more like 'differential'. it doesn't transfer changes (which assume some knowledge of a prior run), it transfers differences (by comparing the source with the target files)



                              a simplification of the process:



                              • first checks file size, creation/modification dates, flags... if it's all identical, skip the file.

                              • if there's no file with that name on the target, simply copies the whole file.

                              • if there's a file on the target, it calculates checksums for each 2KB of the file and transfers to the sender.

                              • the sender compares the content of the origin file and compares with the target, and transfers any data not already there, together with references to any matched data. with that, the target can reconstruct the whole file using pieces of the old target and new blocks.





                              share











                              share


                              share










                              answered May 4 '10 at 15:00









                              JavierJavier

                              7,92221923




                              7,92221923





















                                  5














                                  rsync does not log any data, it checks file modification timestamps and then content. if you upload by ftp first it'll be fine - rsync will not re-transmit all data but probably will go through all the content and fix timestamps. but there will be no huge transfer again.





                                  share



























                                    5














                                    rsync does not log any data, it checks file modification timestamps and then content. if you upload by ftp first it'll be fine - rsync will not re-transmit all data but probably will go through all the content and fix timestamps. but there will be no huge transfer again.





                                    share

























                                      5












                                      5








                                      5







                                      rsync does not log any data, it checks file modification timestamps and then content. if you upload by ftp first it'll be fine - rsync will not re-transmit all data but probably will go through all the content and fix timestamps. but there will be no huge transfer again.





                                      share













                                      rsync does not log any data, it checks file modification timestamps and then content. if you upload by ftp first it'll be fine - rsync will not re-transmit all data but probably will go through all the content and fix timestamps. but there will be no huge transfer again.






                                      share











                                      share


                                      share










                                      answered May 4 '10 at 7:01









                                      pQdpQd

                                      25.6k35494




                                      25.6k35494





















                                          5














                                          Maybe I being pedantic but incremental backups mean you have a full backup first. Then you have backup of files changed since that backup. Then you have another backup of the backups changed since the previous one, etc. So you need the full backup, and all incremental backups since that one.



                                          So, just using archive mode is not a incremental backup. I think the difference is important because it means you can't go back in time to get files before they changed.



                                          If you want to do a true incremental backup, you use options such as --backup-dir. There is an example here.





                                          share




















                                          • 1





                                            +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                                            – sleske
                                            May 4 '10 at 14:51











                                          • Ah yes! Mirroring was the word I was grasping for, good call :-)

                                            – Kyle Brandt
                                            May 4 '10 at 15:18















                                          5














                                          Maybe I being pedantic but incremental backups mean you have a full backup first. Then you have backup of files changed since that backup. Then you have another backup of the backups changed since the previous one, etc. So you need the full backup, and all incremental backups since that one.



                                          So, just using archive mode is not a incremental backup. I think the difference is important because it means you can't go back in time to get files before they changed.



                                          If you want to do a true incremental backup, you use options such as --backup-dir. There is an example here.





                                          share




















                                          • 1





                                            +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                                            – sleske
                                            May 4 '10 at 14:51











                                          • Ah yes! Mirroring was the word I was grasping for, good call :-)

                                            – Kyle Brandt
                                            May 4 '10 at 15:18













                                          5












                                          5








                                          5







                                          Maybe I being pedantic but incremental backups mean you have a full backup first. Then you have backup of files changed since that backup. Then you have another backup of the backups changed since the previous one, etc. So you need the full backup, and all incremental backups since that one.



                                          So, just using archive mode is not a incremental backup. I think the difference is important because it means you can't go back in time to get files before they changed.



                                          If you want to do a true incremental backup, you use options such as --backup-dir. There is an example here.





                                          share















                                          Maybe I being pedantic but incremental backups mean you have a full backup first. Then you have backup of files changed since that backup. Then you have another backup of the backups changed since the previous one, etc. So you need the full backup, and all incremental backups since that one.



                                          So, just using archive mode is not a incremental backup. I think the difference is important because it means you can't go back in time to get files before they changed.



                                          If you want to do a true incremental backup, you use options such as --backup-dir. There is an example here.






                                          share













                                          share


                                          share








                                          edited May 4 '10 at 13:40

























                                          answered May 4 '10 at 13:28









                                          Kyle BrandtKyle Brandt

                                          66.5k61263414




                                          66.5k61263414







                                          • 1





                                            +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                                            – sleske
                                            May 4 '10 at 14:51











                                          • Ah yes! Mirroring was the word I was grasping for, good call :-)

                                            – Kyle Brandt
                                            May 4 '10 at 15:18












                                          • 1





                                            +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                                            – sleske
                                            May 4 '10 at 14:51











                                          • Ah yes! Mirroring was the word I was grasping for, good call :-)

                                            – Kyle Brandt
                                            May 4 '10 at 15:18







                                          1




                                          1





                                          +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                                          – sleske
                                          May 4 '10 at 14:51





                                          +1 for the distinction between incremental backups and mirroring (which is what rsync does by default).

                                          – sleske
                                          May 4 '10 at 14:51













                                          Ah yes! Mirroring was the word I was grasping for, good call :-)

                                          – Kyle Brandt
                                          May 4 '10 at 15:18





                                          Ah yes! Mirroring was the word I was grasping for, good call :-)

                                          – Kyle Brandt
                                          May 4 '10 at 15:18











                                          0














                                          If the real question is "I want to do incremental backups over rsync", there are a few options available. I use Dirvish:



                                          http://www.dirvish.org/



                                          Restoring is easy because it gives you snapshots: it uses hardlinks to give you complete snapshots while saving space where a file is identical. Internally, it uses rsync's --link-dest option:



                                          --link-dest=DIR hardlink to files in DIR when unchanged


                                          Since it uses rsync it also saves network bandwidth (and hence time) where the changes are very small. It also works if you tar and sneakernet a locally created dirvish image first, if you have lots of files and a slow link.





                                          share



























                                            0














                                            If the real question is "I want to do incremental backups over rsync", there are a few options available. I use Dirvish:



                                            http://www.dirvish.org/



                                            Restoring is easy because it gives you snapshots: it uses hardlinks to give you complete snapshots while saving space where a file is identical. Internally, it uses rsync's --link-dest option:



                                            --link-dest=DIR hardlink to files in DIR when unchanged


                                            Since it uses rsync it also saves network bandwidth (and hence time) where the changes are very small. It also works if you tar and sneakernet a locally created dirvish image first, if you have lots of files and a slow link.





                                            share

























                                              0












                                              0








                                              0







                                              If the real question is "I want to do incremental backups over rsync", there are a few options available. I use Dirvish:



                                              http://www.dirvish.org/



                                              Restoring is easy because it gives you snapshots: it uses hardlinks to give you complete snapshots while saving space where a file is identical. Internally, it uses rsync's --link-dest option:



                                              --link-dest=DIR hardlink to files in DIR when unchanged


                                              Since it uses rsync it also saves network bandwidth (and hence time) where the changes are very small. It also works if you tar and sneakernet a locally created dirvish image first, if you have lots of files and a slow link.





                                              share













                                              If the real question is "I want to do incremental backups over rsync", there are a few options available. I use Dirvish:



                                              http://www.dirvish.org/



                                              Restoring is easy because it gives you snapshots: it uses hardlinks to give you complete snapshots while saving space where a file is identical. Internally, it uses rsync's --link-dest option:



                                              --link-dest=DIR hardlink to files in DIR when unchanged


                                              Since it uses rsync it also saves network bandwidth (and hence time) where the changes are very small. It also works if you tar and sneakernet a locally created dirvish image first, if you have lots of files and a slow link.






                                              share











                                              share


                                              share










                                              answered May 5 '10 at 10:54









                                              AlphaxAlphax

                                              293




                                              293















                                                  protected by Community Apr 17 at 9:12



                                                  Thank you for your interest in this question.
                                                  Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                                  Would you like to answer one of these unanswered questions instead?



                                                  Popular posts from this blog

                                                  Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                                                  Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                                                  Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020