How to create a full backup of a remote ubuntu 16.04 server?Tips to backup ubuntu serverBackup data to remote dedicated serverHow to backup a full Centos Server?MSSQL Remote BackupIncremental backup up from a remote ftp box to a Windows serverHow to make a full backup of an ubuntu root server with tar?Full server backup solution (to remote windows share)backup plan on ubuntu server (filesystem/mysql)Backup files with backup-manager are emptyHow can I backup an SQL Server database using Windows Server Backup?

Are there any important biographies of nobodies?

Medieval flying castle propulsion

1980s live-action movie where individually-coloured nations on clouds fight

How Often Do Health Insurance Providers Drop Coverage?

How do governments keep track of their issued currency?

Is it a problem if <h4>, <h5> and <h6> are smaller than regular text?

Should I avoid hard-packed crusher dust trails with my hybrid?

Soft question: Examples where lack of mathematical rigour cause security breaches?

How does an ordinary object become radioactive?

What is the `some` keyword in SwiftUI?

Where Mongol herds graze

Why did the Herschel Space Telescope need helium coolant?

Motivation - or how can I get myself to do the work I know I need to?

Thread Pool C++ Implementation

How can "научись" mean "take it and keep trying"?

Should I give professor gift at the beginning of my PhD?

Is it possible to have a wealthy country without middle class?

Trapping Rain Water

How to hide an urban landmark?

Why would future John risk sending back a T-800 to save his younger self?

Arriving at the same result with the opposite hypotheses

What language is software running on the ISS written in?

Overlapping String-Blocks

Logarithm of exponential



How to create a full backup of a remote ubuntu 16.04 server?


Tips to backup ubuntu serverBackup data to remote dedicated serverHow to backup a full Centos Server?MSSQL Remote BackupIncremental backup up from a remote ftp box to a Windows serverHow to make a full backup of an ubuntu root server with tar?Full server backup solution (to remote windows share)backup plan on ubuntu server (filesystem/mysql)Backup files with backup-manager are emptyHow can I backup an SQL Server database using Windows Server Backup?






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








0















I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.



The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD



Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?



root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1


// MBR



dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"


// SSDs



dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"


// partition table



sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"


The backup files look OK:



ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz









share|improve this question






















  • I would make the backup from the md1 device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.

    – Tero Kilkanen
    Feb 11 '17 at 1:26

















0















I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.



The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD



Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?



root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1


// MBR



dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"


// SSDs



dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"


// partition table



sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"


The backup files look OK:



ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz









share|improve this question






















  • I would make the backup from the md1 device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.

    – Tero Kilkanen
    Feb 11 '17 at 1:26













0












0








0








I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.



The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD



Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?



root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1


// MBR



dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"


// SSDs



dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"


// partition table



sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"


The backup files look OK:



ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz









share|improve this question














I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.



The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD



Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?



root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1


// MBR



dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"


// SSDs



dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"


// partition table



sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"


The backup files look OK:



ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz






ubuntu backup dd






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 10 '17 at 16:13









merlinmerlin

1,00962351




1,00962351












  • I would make the backup from the md1 device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.

    – Tero Kilkanen
    Feb 11 '17 at 1:26

















  • I would make the backup from the md1 device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.

    – Tero Kilkanen
    Feb 11 '17 at 1:26
















I would make the backup from the md1 device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.

– Tero Kilkanen
Feb 11 '17 at 1:26





I would make the backup from the md1 device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.

– Tero Kilkanen
Feb 11 '17 at 1:26










1 Answer
1






active

oldest

votes


















0














You can't create dd backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd it must not be mounted or mounted read-only.



Use one of the myriad other tools to do a proper backup.



If you dd from a rescue system instead of a live system, you could as well backup the whole of sda (or sdb) at once. Currently, you appear to be missing /dev/sda1, which quite likely is raided to be mounted as /boot, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).






share|improve this answer























  • I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

    – merlin
    Feb 10 '17 at 16:34











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f831854%2fhow-to-create-a-full-backup-of-a-remote-ubuntu-16-04-server%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You can't create dd backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd it must not be mounted or mounted read-only.



Use one of the myriad other tools to do a proper backup.



If you dd from a rescue system instead of a live system, you could as well backup the whole of sda (or sdb) at once. Currently, you appear to be missing /dev/sda1, which quite likely is raided to be mounted as /boot, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).






share|improve this answer























  • I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

    – merlin
    Feb 10 '17 at 16:34















0














You can't create dd backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd it must not be mounted or mounted read-only.



Use one of the myriad other tools to do a proper backup.



If you dd from a rescue system instead of a live system, you could as well backup the whole of sda (or sdb) at once. Currently, you appear to be missing /dev/sda1, which quite likely is raided to be mounted as /boot, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).






share|improve this answer























  • I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

    – merlin
    Feb 10 '17 at 16:34













0












0








0







You can't create dd backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd it must not be mounted or mounted read-only.



Use one of the myriad other tools to do a proper backup.



If you dd from a rescue system instead of a live system, you could as well backup the whole of sda (or sdb) at once. Currently, you appear to be missing /dev/sda1, which quite likely is raided to be mounted as /boot, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).






share|improve this answer













You can't create dd backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd it must not be mounted or mounted read-only.



Use one of the myriad other tools to do a proper backup.



If you dd from a rescue system instead of a live system, you could as well backup the whole of sda (or sdb) at once. Currently, you appear to be missing /dev/sda1, which quite likely is raided to be mounted as /boot, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).







share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 10 '17 at 16:24









SvenSven

88.5k10150202




88.5k10150202












  • I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

    – merlin
    Feb 10 '17 at 16:34

















  • I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

    – merlin
    Feb 10 '17 at 16:34
















I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

– merlin
Feb 10 '17 at 16:34





I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?

– merlin
Feb 10 '17 at 16:34

















draft saved

draft discarded
















































Thanks for contributing an answer to Server Fault!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f831854%2fhow-to-create-a-full-backup-of-a-remote-ubuntu-16-04-server%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







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