I have a hard disk which has some bad sectors on it. And it said when I booted in Linux mint that I already need to replace the hard disk. But I don't have yet the money. I'm just a student. How do I do a low level format? What do I need to do before trying to do it?Is there a particular time span until all of the hard disk breaks down and lose all of my data wen it has already bad sectors on it? How long will a low-level format take, for a laptop with 2Ghz core 2 duo processor and 2Gb ram.
I am trying to sent a specific hexadecimal value across a serial COM port using PuTTY. Specifically, I want to send the hex codes 9C, B6, FC, and 8B. I have looked up the Alt codes for these and they are 156, 182, 252, and 139 respectively. However, whenever I input the Alt codes, a preceding hex value of C2 is sent before 9C, B6, and 8B so the values that are sent are C2 9C, C2 B6, and C2 8B. The value for FC is changed to C3 FC. Why are these values being placed before the hex value and why is FC being changed altogether? To me, it seems like there is a problem internally converting the Alt code to hex. Is there a way to directly input hex values without using Alt codes in PuTTY? Answer What you're seeing is just ordinary text character set conversion. As far as PuTTY is concerned, you are typing (and reading) text , not raw binary data, therefore it has to convert the text to bytes in whatever configured character set before sending it over the wire. In other words, when y...
Comments
Post a Comment