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

Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company