you know what day is today?
Winter.
you know what that means?
Winter collection!
✧◝( ᅌᴗᅌ* )◜✧˖
(art for series "The Iacon Prophecy" by @ntldr-writes)

seen from Austria
seen from Belgium
seen from United States

seen from United States
seen from Mauritania
seen from China
seen from United Kingdom
seen from China
seen from Maldives
seen from India
seen from United States
seen from Sweden

seen from Belgium
seen from China
seen from United States

seen from Canada
seen from Netherlands
seen from China
seen from United States
seen from United States
you know what day is today?
Winter.
you know what that means?
Winter collection!
✧◝( ᅌᴗᅌ* )◜✧˖
(art for series "The Iacon Prophecy" by @ntldr-writes)
Commisions to pay for my car’s insurance!
Wondering what I’ve been doing for the past several months? I’ve been dancing around the hurdles of being without a car...until now!
So check out my new car. Ain’t it great? I’m finally mobile again!
One giant problem.
This is my first time financing a car. My insurance tripled. I was expecting to make monthly payments on a car loan, I wasn’t expecting to pay so much to insure it as well.
I need this car. Getting to work every day without it was expensive and burdensome, and was chipping away at my mental health. And if I am to get a better full-time job in the immediate future, I need reliable transportation, not Lyft, not bumming rides from my friends, something reliable.
So, for the first time, I am opening up writing commissions!
Contact:
My screen handle on A03 is ‘NTLDR,’ and for samples of my writing, check this out. I am most well known for writing “The Iacon Prophecy.”
My best point of contact is Discord: NTLDRBackburn I can also be contacted via this tumblr or my writing tumblr.
Fandoms:
Currently I am focusing on the Transformers fandom, and the universes I am familiar with include:
Transformers: Generation One (1984) Beast Wars Beast Machines Robots In Disguise (2001) Transfomers: Armada Transformers: Energon Transformers: Cybertron Transformers: Animated Transformers: Prime Transformers: Robots In Disguise (2015) Rescue Bots Bay-Formers Transformers: Exodus War For Cybertron Fall of Cybertron Dreamwave comics IDW comics (especially MTMTE)
Price List: 100-500 words - $10.00 500-2000 words - $20.00 2000-4000 words - $40.00 4000-6000 words - $60.00 6000-8000 words - $80.00 8000-10,000 words - $100.00 I will accept payment via Paypal and Venmo. Payment must be posted up-front before I will begin the commission.
Content: To see what is acceptable, ASK! I will tell you what I feel comfortable writing and what I do not. I reserve the right to refuse any commission, for any reason. Please be clear about what universe/timeline/arc the story should exist in, and what characters should be involved. If the universe is allowed to be more fluid (for example, a G1 universe happening somewhere on Earth at some point with the war not having a heavy effect), let me know and I’ll happily use the room available to play. Be prepared for me to ask a plethora of questions regarding original characters and/or universes if they are to be included. I will not write an original character or universe belonging to someone who is not the client, except my own.
If you’re not sure exactly what you want, contact me anyway! I will try to work with you to help craft the story that you’re looking for!
I will keep the client’s identity and contact private unless otherwise noted. The story produced is mine and may not be reposted anywhere except on accounts that I manage. Please note if you do not want the story posted publically, and I will send it by email instead.
And on that note...PLEASE REBLOG!!
'NTLDR is missing' ketika menambahkan Harddisk
‘NTLDR is missing’ ketika menambahkan Harddisk
Kasus ini bermula ketika seorang client menghubungi saya untuk memeriksakan harddisk nya (tipe IDE/PATA) yang diduga tidak bisa dibaca dan bervirus. Info yang diberikan :
Terdapat 2 HDD pada PC nya, HDD yang pertama ber-tipe SATA berisi partisi Windows, yang kedua (yang diperiksa) hanya berisi data
Ketika dipasang bersamaan, muncul pesan kesalahan di awal boot : ‘NTLDR is missing’
Ketika hanya…
View On WordPress
UH-OH.
NTLDR is missing. Press any key to restart.
NTLDR is missing. Press any key to restart.
NTLDR IS MISSING. PRESS ANY KEY TO RESTART.
NTLDR IS MISSING. PRESS ANY KEY TO RESTART.
NUUUUUUUUUUUUU
New Post has been published on iyiblogcu.com | Mehmet KAYA
New Post has been published on http://www.iyiblogcu.com/program-tanitimlari/usb-ve-iso/
USB ve ISO
USB ISO USB sürücüler doğrudan ISO görüntü dosyası yanmak küçük bir yazılımdır.
Bu USB sürücüler aynı zamanda Windows işletim sistemleri ile bir önyüklenebilir USB disk oluşturmak için destekler, USB flash sürücüler, bellek çubukları ve diğer USB depolama aygıtlarını içerir.
Bu yazılım kolayca bir USB flash diske bu ISO dosyalarını yakmak, taşımak ve kullanımı kolay hale getirir. Programın arayüzü çok basit, sadece ISO dosyasını seçin ve hedef USB sürücü seçin daha sonra “Bootable, only supports Windows bootable ISO image” tıklayın. “Burn” botonuna basarak yazma işlemini başlatın.
Bu yazılım şu anda sadece Windows önyükleme disketi destek BOOTMGR ve NTLDR önyükleme moduda çalışabilir, FAT, FAT32, exFAT veya NTFS dosya sistemi ile USB disk oluşturabilirsiniz.
indir USB ISO v1
Google+
How to copy Windows XP in a virtual machine for Qemu-KVM
# create sparse file for the virtual disk image 6 GB dd if=/dev/zero of=winXpTest bs=1 count=0 seek=6G # check of sparse file: du -hs winXpTest ls -lh winXpTest # copy the master boot record into the # first 512 byte of the virtual disk dd if=mbr.bin of=winXpTest bs=512 count=1 conv=notrunc # To get the MBR from an existing XP installation use: # dd if=/dev/sda of=mbr.bin bs=512 count=1 # make the first partition available # in the file system at /dev/mapper/loop0p1 kpartx -a -v winXpTest # create NTFS file system # in the first partition with new MFTs # MFT is the master file table mkfs.ntfs -p 63 -s 512 -H 255 -S 63 -f /dev/mapper/loop0p1 # Note: mkfs.ntfs writes the BOOTMGR into these sectors # we need NTLDR, the NT loader, see below # MFT is master file table and starts with "FILE0" # copy the VBR and the bootstrap code to the # first 7 sectors of the partition to load NTLDR dd if=vbr+bootstrap.bin of=/dev/mapper/loop0p1 bs=1 count=4544 seek=64 conv=notrunc # Get the VBR and NTLDR bootstrap code # from an existing Windows XP disk. # dd if=/dev/sda1 of=vbr+bootstrap.bin bs=1 count=4544 skip=64 # now copy the Windows files to the virtual disk image: mount /dev/mapper/loop0p1 /windows/ cd /windows/ cp -a /mnt/windowsBackup/* . # unmount everything cd - umount /windows/ kpartx -d -v winXpTest # and we are done
You can read more at: http://thestarman.pcministry.com/asm/mbr/NTFSBR.htm and http://srinikoganti.files.wordpress.com/2011/01/windows_boot_flow.pdf The program ntfsclone can be an alternative.
# to create checksums of the installed files run as root: find -type f | sort | grep -v pagefile.sys | xargs -i sha1sum '{}' > windowsXpChecksums.txt # compare checksum files with diff or kdiff3
“NTLDR is missing” issue solve in windows XP
What is NTLDR?
NTLDR (abbreviation of NT loader) is a boot loader for the all releases of Windows NT operating system including Windows XP. typically it run from primary hard disk drive to load the OS selected from the startup menu with the help of boot sector in a file.
Requirement for NTLDR:
NTLDR requires, at the minimum, the following two files to be on the system volume:
NTDLR-> the main boot loader itself.
NTDETECT.COM-> required for booting an NT-based OS, detects basic hardware information needed for successful boot.
boot.ini-> systems file which stores list of Operating Systems to be shown at start up.
ntoskrnl.exe/ntkrnlpa.exe-> stores kernal image of Windows NT systems & responsible for various system services such as hardware virtualisation process and memory management, etc.
How to get back to your Windows XP:
Insert the Windows XP bootable CD into the CD Drive.
When prompted to press any key to boot from the CD, press any key.
Once it is in the Windows XP setup menu press the R key to repair Windows.
Log into your Windows installation by pressing the 1 key and then enter key.
Then it will ask for the Administrator password, enter yours if you have set your self otherwise enter password(by default it is the password for administrator account).
Copy the below two files to the root directory of the primary hard disk from CD Drive by using the following command one by one
copy f:\i386\ntldr c:\
then copy f:\i386\ntdetect.com c:\
Here f is my CD-ROM drive letter, use yours.
Once both of these files have been successfully copied, remove the CD and reboot your system.
Windows XP bricht Bootvorgang mit Fehlermeldung ab
Anfrage: Windows XP bleibt beim Booten mit der Fehlermeldung "NTLDR fehlt" stehen und startet nicht mehr.
Lösung: Windows versucht beim Starten herauszufinden, auf welcher Festplatte bzw. Partition das zu startende Betriebssystem installiert ist. Sind diese Informationen nicht korrekt, kann Windows (bzw. jedes andere Betriebssystem ebenso) nicht booten.
Starten Sie zur Problembehebung den Rechner von der Windows XP CD. Nach kurzer Zeit erscheint folgender Bildschirm:
Nun drücken Sie die Taste "R", um die Wiederherstellungskonsole zu starten und geben Sie das Administratorkennwort ein. Anschließend kann mit dem Befehl
fixmbr
der Bootsektor repariert werden. Sollte beim nächsten Startversuch Windows immer noch nicht booten, führt folgender Befehl dazu, dass der Bootsektor komplett neu geschrieben wird.
fixboot c:
Tip: Um die Wiederherstellungskonsole ohne die Windows Installations CD aufzurufen, kann diese über den Befehl "<CD-Laufwerk>:\i386\winnt32.exe /cmdcons" installiert werden.