This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get the amount of data written so far to the SSD /dev/sda (assumes a sector size of 512 byteas) | |
# | |
sudo smartctl -a /dev/sda | grep Total_LBAs_Written | sed 's/.*[ \t]\([0-9]*\)$/\1 * 512/' | bc | numfmt --to=iec --suffix=B | |
# Proper turn off procedure for the HDD /dev/sdb | |
# | |
sudo udisksctl unmount -b /dev/sdb | |
sudo udisksctl power-off -b /dev/sdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dlls/msxml3/main.c b/dlls/msxml3/main.c | |
index 66e23114bfa..80283d3c69c 100644 | |
--- a/dlls/msxml3/main.c | |
+++ b/dlls/msxml3/main.c | |
@@ -311,6 +311,7 @@ static void init_char_encoders(void) | |
} encoder[] = | |
{ | |
{ "gbk", gbk_to_utf8, utf8_to_gbk }, | |
+ { "gb2312", gbk_to_utf8, utf8_to_gbk }, | |
{ "windows-1250", win1250_to_utf8, utf8_to_win1250 }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dlls/msxml3/main.c b/dlls/msxml3/main.c | |
index 66e23114bfa..80283d3c69c 100644 | |
--- a/dlls/msxml3/main.c | |
+++ b/dlls/msxml3/main.c | |
@@ -311,6 +311,7 @@ static void init_char_encoders(void) | |
} encoder[] = | |
{ | |
{ "gbk", gbk_to_utf8, utf8_to_gbk }, | |
+ { "gb2312", gbk_to_utf8, utf8_to_gbk }, | |
{ "windows-1250", win1250_to_utf8, utf8_to_win1250 }, |