Apr 25, 2020

[SOLVED] CENTOS 7.X / RHEL 7.X STUCK IN BLACK SCREEN AFTER LOGIN

In my case, GUI was displayed before I logged in. But after logging in, I was stuck in black screen (GUI didn't load).

Actually this issue is very easy to fix. But for those who don't know, follow these steps below (Don't worry, you don't have to reinstall Linux):

1. Press Ctrl + Alt + F7 (In my laptop F7, but it can be F1 - F7) to open CLI mode.
2. Press Ctrl + Alt + F6 to display login prompt.
3. Enter 'root' user & password.
4. Type 'yum update'.
5. After update completed, type 'reboot'
6. Now you should see GUI after logging in.

Apr 23, 2020

HOW TO OPEN WINDOWS NTFS DRIVE ON LINUX

To open NTFS drive on Linux, we need to install the ntfs-3g package.
NTFS-3G is a stable Open Source NTFS driver that supports reading and writing to NTFS drives on Linux and other operating systems.
This package comes from EPEL if you’re using CentOS/RHEL.

Run the following command to install EPEL repository and ntfs-3g package:

[user@localhost ~]$ su

Password:

[root@localhost user]# yum install epel-release

[root@localhost user]# yum install ntfs-3g


The next step is identify the partition and create a mount point:

[root@localhost user]# blkid

It will show you all the current connected hard drive/partitions on the computer.
Example:
/dev/sda1: LABEL="System Reserved" UUID="104AFBC24AFBA2A0" TYPE="ntfs"
/dev/sda2: UUID="6E0802260801EE41" TYPE="ntfs"
/dev/sda3: UUID="3dd36e9c-e367-44b2-8ffc-b4ce5ffed287" TYPE="ext4"
/dev/sda4: UUID="1cf0210c-22c3-4e77-99c7-fccf74d3105e" TYPE="swap"
/dev/sdb1: LABEL="Data" UUID="7FC482015907F743" TYPE="ntfs"
/dev/sdc1: LABEL="MULTIBOOT" UUID="1613-316C" TYPE="vfat"

[root@localhost user]# mkdir /mnt/ntfs


Then mount the partition and open it with GUI:

[root@localhost user]# mount /dev/sdb1 -t ntfs-3g -o permissions /mnt/ntfs

[root@localhost user]# nautilus /mnt/ntfs


Note: This method is not permanent. After system restart, we have to run mount and nautilus command again.

THE BLIND GIRL STORY

There was a blind girl who hated herself just because she was blind. She hated everyone, except her loving boyfriend. He was always there fo...