Depanare

How to Calibrate A Touch-Enabled Display in Windows

If your touchscreen isn’t working correctly, it might just need calibration.

Windows 10 is designed to work very well with touch-enabled displays, but things can still go wrong. When you tap the screen, and it behaves as if you’ve tapped a completely different place, that usually indicates that there is some kind of calibration issue. Touch screen calibration usually takes care of that type of problem.

[mai mult...]

Factory reset Xbox One

Restaurați consola la valorile implicite din fabrică

Avertisment!  Resetarea consolei la valorile implicite din fabrică șterge toate conturile, jocurile, setările și asociațiile Xbox de acasă. Orice lucru care nu este sincronizat cu Xbox Live va fi pierdut. Ar trebui să utilizați această opțiune doar ca ultimă soluție.

[mai mult...]

Cum putem monitoriza parametrii anumitor componente hardware cu ajutorul aplicatiei Sidebar Diagnostics?

Aplicatia Sidebar Diagnostics este o aplicatie free pe care o puteti descarca de pe internet si puteti monitoriza paramaterii de la 5 componente de baza ale calculatorului dumneavoastra: CPU, RAM, GPU, Driver si Network.

Pentru ca acest program sa functioneze trebuie sa aveti instalat pe dispozitivul pe care il folositi Microsoft .NET Framework 4.7.1.

[mai mult...]

Inlocuire cartus XEROX

Cartusul din imaginile de mai jos este componenta principala a unei imprimante cu laser, respectiv al aparatului dvs de tip xerox. Unii producatori numesc cartusul de imagine si OPC, unitate de imagine, toba/tambur sau unitate de imagine. Un cartus murdarit sau uzat reduce in mod vizibil calitatea imaginilor imprimate.

[mai mult...]

Reset Your Ubuntu Password Easily from the Live CD

Our last article on how to reset your Ubuntu password easily through the grub menu was quite popular, so I’ve decided to make a series on all the different ways to reset your password on either Linux or Windows… today’s lesson is how to use the Live CD to reset the password.

Note that we’ll also cover how to protect yourself against somebody else resetting your password, so stay tuned!

image

Of course, this method will also work if you’ve installed your Ubuntu Live CD to a thumb drive.

Resetting the Password

You’ll want to boot from your Ubuntu Live CD, choosing “Try Ubuntu without any change to your computer” from the boot menu.

image

Once the system boots, open up a new Terminal window from Applications \ Accessories and then type in the following command:

sudo fdisk -l

This command is used to tell what device name the hard drive is using, which in most cases should be /dev/sda1, but could be different on your system.

image

Now you’ll need to create a directory to mount the hard drive on. Since we’re actually booting off the live cd, the directory doesn’t really get created anywhere.

sudo mkdir /media/sda1

The next command will mount the hard drive in the /media/sda1 folder.

sudo mount /dev/sda1 /media/sda1

Now it’s time for the command that actually does the magic: chroot. This command is used to open up a shell with a different root directory than the current shell is using, and we’ll pass in the folder where we mounted the hard drive.

sudo chroot /media/sda1

Now you should be able to use the passwd command to change your user account’s password, and it will be applied to the hard drive since we are using chroot.

passwd geek

Note that you’ll have to type your username after the passwd command in order to change the right password.

image

Now you should be able to reboot your system and log yourself in with your new password.

[mai mult...]