Hardware

What Are Computer Memory Units?

What Are Computer Memory Units?

Fadıl

Computer Units

We usually hear that the memory capacities of computers, mobile phones, televisions, and many other electronic devices in our lives are this. In this article, we will see what these memory values are.
The smallest unit of capacity used on the computer is a bit. One bit; It consists of 0 (zero) or 1 (one). When 8 bits come together, 1 byte (read as a byte) is formed. Each character occupies one byte on the computer. So 1 character = 1 byte. Now let’s see what the next byte values are.

How to Enable or Disable USB Ports in Windows 10?

How to Enable or Disable USB Ports in Windows 10?

Fadıl

There are several ways to protect your data on a Windows 10 computer. One of them is to disable the USB ports on your computer because a desired virus or information can be stolen from your PC with a flash memory connected to the USB ports. If you want how to block USB drives to check which devices are connected to your PC, you are at the right place right now.

What are the Differences Between Intel Core i3, i5, i7 and X Processors?

What are the Differences Between Intel Core i3, i5, i7 and X Processors?

Fadıl

AMD works for more performance processors, while Intel is the leader in computer processors. Core processors are good processors in a desktop or laptop computer, but what are the differences or similarities between Core i3, i5, i7, i9, and X?

What is the Core Processor?

Intel Core processors first replaced their desktops in mid-2006 with Pentium processors that were previously used on the desktop.

The letter “i” in the processors is used to indicate the generation difference between the processors. A given Core “i” name does not give us the number of cores the processor has, nor does it guarantee our features such as Hyper-Threading that enable the processor to execute its commands faster.

Installing a New Hard Disk and Copying the Files

Installing a New Hard Disk and Copying the Files

Fadıl

Formatting the new disk

Use the following command to format Linux partitions using ext2fs on the new disk:

mkfs.ext2 /dev/hdb1

To check the disk for bad blocks (physical defects), add the -c option just before /dev/hdb1.

If the new disk will have more than one Linux partition, format the other partitions with mkfs.ext2 /dev/hdb2, mkfs.ext2 /dev/hdb3, and so on. Add the -c option if desired.

Note: With older distributions, the command mkfs -t ext2 -c /dev/hdb1 didn’t check for bad blocks under any of Red Hat, Debian or Slackware, contrary to what the man page stated. This has now been fixed.

How to Add an Extra Hard Drive in Linux

How to Add an Extra Hard Drive in Linux

Fadıl

This isn’t hard but seems to vex the newbies so here goes.

1. Do the physical install.  If you don’t know how to do this then I suggest buying a Mac, or perhaps even an etch-e-sketch.
2. Boot the machine
3.  Now, the hard part.  The drive will be recognized by the OS as /dev/XdY, where X is either “h” (if the drive is IDE) or “s” (if the drive is SCSI), and Y is the letter of the alphabet that corresponds with the drive number.
(Obviously not “a”, if you already had a previous drive installed.)
So, if this is the third IDE drive, it will be /dev/hdc. If it’s your
fifth SCSI drive, it will be /dev/sde.
4.  You want to run fdisk on that drive. Just plain
# fdisk
will automatically default to your first drive, so you want to use
# fdisk /dev/sde
(or whatever the proper device name is). The fdisk utility (used to partition and format “fixed disks” — hence the name) will start interactively. It will prompt you to use “m” for help; by all means, do so. The major commands you’ll want to use are:
l  list known partition types
m  print this menu
n  add a new partition
p   print the partition table
q  quit without saving changes
v   verify the partition table
w   write table to disk and exit
If you make a mistake, you may also want:
d   delete a partition
Use the “n” command to add partitions, sizing them however you want. For the most part, you will want to leave them on the default partition typesetting of 83, or Linux ext2 filesystem. When you have created all your desired partitions, it’s useful to use “v” to verify it. (There will be a little wasted space. If it’s not much, don’t worry about it; that’s normal.)
Don’t forget to write the partition table to disk! Then exit fdisk.
5.  Now you need to mount the new partitions in your directory structure. As long as the partitions use the ext2 filesystem (the Linux standard), you can simply use the command:
# mount
The partitions have the same name as the drive itself, with a number after each one, matching their order on the drive. So the first
partition on /dev/hdb is /dev/hdb1, the next is /dev/hdb2, and so on. The fdisk utility will probably have given you the names of all those
partitions while you were creating them.
When you mount a partition onto a directory, any files that are already in that directory become inaccessible while the partition is mounted.
This can be a sneaky way to hide files if you know what you’re doing, but more likely, you’ll want to create one or more empty directories to
mount your new partition(s) on.
5.  If you want to make your system automatically mount these new partitions at boot time (99% of the time, you do), you should edit the file/etc/fstab. Keep in mind to use tabs and not spaces.  Linux does not like spaces.  It will have a few lines something like this: