Bootrec /Fixboot mit „Zugriff verweigert in Windows 10“ reparieren


Schritt 1. Windows 10-Installations-CD / USB-Stick

Schritt 2.Computerreparaturoptionen-> Problembehandlung->Erweiterte Optionen-> Eingabeaufforderung.

Schritt 3.diskpart

Schritt 4. Befehle im Programm Diskpart

  • list disk
  • sel disk 0 (Wobei 0 für das Boot-Laufwerk steht)
  • list vol (Beachten Sie, welches Volumen die EFI-Partition ist, meine ist 4)
  • sel vol 4
  • assign letter=n:
  • exit

Schritt 5.N:

Schritt 6.format N: /FS:FAT32

Schritt 7.bcdboot C:\windows /s N: /f UEFI Befehl wird Ihren Bootloader reparieren.

Schritt 8. Befehl „bootrec /fixboot“ ausführen. Das Problem „Fixboot Zugriff verweigert in Windows 10 “ ist gelöst.

Rename RAID array in Ubuntu

The way to rename a RAID array and make Ubuntu persist the name change across boots is to rename the device and update your initramfs.

First rename the device:

sudo mdadm --stop /dev/md125
sudo mdadm --assemble /dev/md/alpha --name=alpha --update=name /dev/sd[fg]
sudo mdadm -Db /dev/md/alpha

The third command should return something like:

ARRAY /dev/md/alpha metadata=1.2 name=omicron:alpha UUID=5b024352:3a940335:233aa23f:5c6b2a1f

Paste the result into /etc/mdadm/mdadm.conf (replacing the old line). Or execute:

sudo mdadm -Db /dev/md/alpha >> /etc/mdadm/mdadm.conf

After updating your array name and mdadm.conf, you need to issue the following command:

sudo update-initramfs -u

Finally, reboot.

Samba Share into Library in Windows 7

  1. Create a folder on your hard drive for shares. i.e. ‚c:\share‘
  2. Create another folder in the above share. i.e. ‚c:\share\mydata‘
  3. Link the Library to this folder.
  4. Delete the folder. i.e. ‚mydata‘
  5. Use the mklink in an elevated command prompt to make a symbolic link. Name the link the same as the folder you created above.
    i.e ‚mklink /d c:\share\mydata \\server\mydata‘ (needs Administrator rights)
  6. Done. Now you have non-indexed UNC path as a library.