2020年10月22日 星期四

多作業系統忘記win 10 administrator 密碼怎麼辦

 1. 進入其他作業系統,把登入畫面的輔助使用的銀幕小鍵盤替換為命令程式,把win10系統的system32下的osk.exe更名為 oak.exe.ori

然後把cmd.exe更名osk.exe

跳出trusted installer 權限錯誤看這篇https://www.google.com/amp/s/kknews.cc/tech/6kzx6op.amp

2. 進入win10,win鍵+r,輸入osk.exe打開之前被更名過的命令行建有管理員權限的新使用者

2.1用〔Net〕的命令增加一個使用者,

例:增加一個使用者名為test,
命令語法如下:
net user test /add


2.2 將新增使用者提升至Administrator的權力,

例:提升剛才增加使用者alanhkg888的權力,
命令語法如下
net localgroup administrators test /add


3. 完成上列步驟後重新開機電腦,

在啟動畫面上便增加了一個使用者test了,選test進入

4. win鍵+ pause break叫出電腦屬性視窗,選左上角控制台首頁,按使用者帳戶的變更帳戶類型,找到要改的帳戶進去改密碼,改完登出,再把test帳戶刪掉即可

圖片 https://jingyan.baidu.com/article/925f8cb8fd6f2fc0dde056c1.html

5. 最後把命令程式和銀幕小鍵盤的名字改回來即可

2020年10月15日 星期四

如何安裝機殼前面板USB

主機板上的插槽可能不是正的,必須把圖上下顛倒來對照

USB Front Panel Connection To Motherboard With Separate Shield Pin 

https://superuser.com/questions/200353/usb-front-panel-connection-to-motherboard-with-separate-shield-pin


wiring column (pinout)走線圖

    P2-IFPCG
    PINSIGNAL NAMEDESCRIPTIONWIRING
    1VREG_FP_USBPWR0Front Panel USB Power (Ports 0,1)+5V connector 1
    2VREG_FP_USBPWR0Front Panel USB Power (Ports 0,1)+5V connector 2
    3USB_FP_P0-Front Panel USB Port 0 Negative Signal-D connector1
    4USB_FP_P1-Front Panel USB Port 1 Negative Signal-D connector 2
    5USB_FP_P0+Front Panel USB Port 0 Positive Signal+D connector1
    6USB_FP_P1+Front Panel USB Port 1 Positive Signal+D connector2
    7GroundGROUND connector 1
    8GroundGROUND connector 2
    9Keyn/a
    10USB_FP_OC0Front Panel USB Overcurrent signal (Ports 0,1)n/a

    https://www.pctechguide.com/how-to-upgrade-your-motherboard/motherboard-usb-ports


    2020年10月13日 星期二

    [list]RAID 1相關問題

    What happens if I disconnect both disks?

    https://superuser.com/questions/406021/raid-1-what-happens-if-i-disconnect-both-disks

     so if you're running RAID 1, then two things can happen:

    1. 1. Take both disks out at the same time (while the machine is off), and then put them both back at the same time (while it's off)

    2. 2. Take one disk while the machine is off, or, take the disks out one at a time while the system is running

    In situation #1, then the machine will just think that the array is no longer present and will skip it (it might also present an error message). When both of the disks are put back, the array will just come back online.

    In case #2, the 2nd disk will need to be re-built from the 1st when it is re-inserted because they're no longer in "lock step" (for lack of a better term).

    You have a comment stating you want to take them out of RAID. Normally, you can just destroy the array in the controller and the data will live on, but you've said that the array is going to delete your data.

    What I would do in that case, is just attach them to some non-RAID ports, or, unplug the disks, delete the array, and then just plug them back in. If it's a cheapo RAID controller (sounds like it is), it will just treat the two disks as normal disks.


    may i destory an raid 1 arrary without losing data

    Yes, you should be able to create a RAID 1 using an existing drive without losing data.

    https://ask.adaptec.com/app/answers/detail/a_id/14798/~/how-to-create-a-raid-1-on-a-hostraid-card-using-a-drive-with-existing-data%3F



    RAID 0 和 RAID 1 和 RAID 5 的差別

    https://dotblogs.com.tw/jiajhou/2011/12/22/63091

    RAID 0 跟 RAID 1 都是將二顆硬碟組合成一顆硬碟,但結果是不同的

    假設有a b硬碟都為20G
    RAID 0 的結果為 在系統內看到一顆硬碟容量為 20+20=40G
    RAID 0 可以將二個硬碟容量加總,資料寫入時是一部分寫入第一顆硬碟,一部份寫入第二顆硬碟,優點是寫入跟讀取速度增加,但缺點是沒有容錯功能.一旦其中一顆硬碟損壞,將造成資料的損壞.

    RAID 1 的結果為 在系統內看到一顆硬碟容量為 20+20=20G (Mirror鏡射)
    RAID 1 雖然也是將a b硬碟組合成一顆硬碟,但是它是將b硬碟作成a硬碟的鏡射碟.也就是說資料在寫入a硬碟時同時也寫入了一份複本在b硬碟,優點是資料在存取時同時有一份是備分檔,缺點是會浪費一顆硬碟,因為二顆硬碟是存放著相同的資料。

    RAID 5 的組成一定是3顆以上的硬碟,其容量的計算是(n-1)顆
    假設有a b c 三顆硬碟是20G
    組成 RAID 5 之後容量是 20+20+20=40G
    RAID 5 結合了 RAID 0 跟 RAID 1,它將硬碟的容量加總了,但是又保留了一顆的容量在作檔案的容錯,在寫入資料時會透過其演算法去寫入三顆硬碟之中,假設C硬碟掛掉了,只要將一顆新的 20G取代 C 硬碟,RAID 5 的容錯機制會由A B 二顆硬碟中留下的資料來還原 C 硬碟的資料,但前提是壞一顆硬碟,如果同時壞二顆,那資料亦是全毁.

    RAID 0 可以將硬碟容量加總,增加讀取速度,但是沒有容錯功能.
    RAID 1 可以將資料鏡射一份,但是讀取速度沒有增加.而且要浪費一顆硬碟.
    RAID 5 可以將硬碟容量加總,亦可以增加讀取速度,也有容錯功能.而且多顆組合起來只會浪費一顆硬碟.不像RAID 1每二顆硬碟會浪費一顆.

    由於RAID 5 只容許同時有一顆硬碟損壞.就有了RAID 0+1 或 RAID 1+0
    這是更安全的作法.但相對的也更浪費硬碟.
    假設有4個硬碟 A B C D 各20G
    RAID 0 A+B => 20+20=40(E)
    RAID 0 C+D => 20+20=40(F)

    在這裡由A B C D 組成了二顆RAID 0的硬碟.雖然容量加總了.但並沒有容錯功能
    所以
    RAID 1 E+F => 40+40=40(G)

    RAID 1+0 則是反過來運作
    RAID 1 A+B => 20+20=20(E)
    RAID 1 C+D => 20+20=20(F)

    RAID 0 E+F => 20+20=40(G)

    作RAID 最好是都用相同容量的硬碟,如果容量不同.則以當中容量最小的為基準
    如 A=20G B=30G C=40G
    RAID 0 A+B => 20+30=40
    RAID 1 A+B => 20+30=20
    RAID 5 A+B+C => 20+30+40 => 20+20=40 (n-1)

     

     

     

    各種RAID架構比較表

    RAID方案

    硬碟數

    可用容量

    效能

    安全性

    主要應用

    JBOD

    大於2

    全部

    不變

    幾乎等於0

    容量至上

    RAID 0 

    大於2

    全部

    最高

    危險

    追求效能的狂熱玩家

    RAID 1 

    2

    總容量的50%

    稍有提升

    最高

    完全不能出錯的資料備份

    RAID 0+1 

    4以上的偶數

    總容量的50%

    極高

    同時需要備份和效能,且預算無上限

    RAID 5 

    3以上

    N-1顆

    讀快寫慢

    同RAID 0+1但預算限制