Fixing bad sectors
Presuming you haven't yet lost any data, buy the new disk and clone across to it. Then you don't have to deal with setup again. You can connect the new disk and use dd from Ubuntu to clone it. There are multiple sites covering the process. As for recovering the sector, there are programs that claim they can, and some people claim to have good luck with them, I personally did not.
Your report is indicating you have one bad sector. This is not an emergency situation. Occasionally a disk can develope a bad sector for all sorts of reasons, and this is why disks come with a spare pool that automatically remaps the bad sector. This is what has happened with your disk.
Unfortunately the data on that sector is lost. To put this in perspective, depending on the sector size, in all liklihood you're talking about 4k of data, which could easily be some temp file that was created.
There are tools like spinrite that can sometimes retrieve data from drives that are failing by trying to read the sector repeatedly, but for one sector it's not worth the trouble unless you were to determine this was a vital data file.
The important thing is that you have backups of all of your important data files, and that you keep an eye on the drive. If you start to get additional problem sectors, then you should consider the advice provided by the other respondents, about getting a replacement.
If it is formatted as NTFS you can try using chkdsk /r
to repair the drive, but I'm not sure how much that will help you in the long run. If the drive is failing, this could be an early warning sign. Backup everything you want. I suggest using dd
to avoid having to manually copy everything over.