Showing posts with label got. Show all posts
Showing posts with label got. Show all posts

Saturday, September 9, 2017

Two men got Killed in Enugu State

Two men got Killed in Enugu State



                                                                                   


Two young men got themselves killed in Enugu State as a result of strong argument, an Igbo man together with a Fulani man died in Enugu state after a strong argument

 As people were celebrating their Christmas festival, some people think that they can make much money by still hanging on to their business while others were away. They were busy doing their business in order to make extra money during this season.

Among the people in this category are these two young men who engaged in a serious arguments that cost them their lives. These young men were seen doing their normal duties early hours of  that day until  the evening time when the argument started. It was said that the two able bodied men engaged in a strong arguments, That resulted to them calling themselves terrible names. they continued this strong arguments for a long duration of time, people around them tried to persuade them to stop the unnecessary argument, but they reused to listen.

Long after, the arguments continued to get stronger and stronger that it began to draw the interest of the people passing by. Their friends and also the passers - by tried to stop them but rather they increased the argument, this continued to go on until one of them brought out a knife and heeded to his opponent, the young man who didnt see that coming on time tried to hold him by his hand but his enemys strength was stronger than him. The man over powered him and struck the knife in his belly leaving him dead at the spot.

As this happened, people around began to shout. One of the Mob who was observing his duty around that place saw this and he became angry, he stated beating this young man who had done this. He gave him all kind of punishment until he had no strength in him. The young man was beaten to stupor until he became unconscious. He was later rushed to the hospital,and later gave up on Thursday morning.

The News Agency of Nigeria (NAN) reports that the police command in Enugu confirmed the deaths on Thursday, December 29.

NAN also reports that while what led to the argument was yet to be ascertained, both dead men were believed to be either traders or transporters working in the markets park.

download file now

Read more »

Friday, September 1, 2017

Ubuntu Got 2 Windows 7 loader entries in Grub2

Ubuntu Got 2 Windows 7 loader entries in Grub2


What was the cause of the problem:

Grub2 looks for the Windows boot files for detecting Windows entries. Though you removed Windows 7, the Windows 7 boot files arent removed (which are "Boot" folder and "bootmgr" file). And as Windows 7 boot files are there, grub2 simply assumes that, there are Windows 7 installation also. Hence the dual entry.






You should find what youre looking for inside of /boot/grub/grub.cfg. This file is dynamically generated by update-grub2. I am dual booting Ubuntu 32bit and 64bit. If I wanted to remove one, I would simply delete its section from this file.


menuentry Ubuntu, with Linux 3.2.0-23-generic --class ubuntu --class gnu-linux --class gnu --class os {
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows 7 (loader) (on /dev/sda1)" --class windows --class os {
    insmod part_msdos
    insmod ntfs
    set root=(hd0,msdos2)
    search --no-floppy --fs-uuid --set=root C08C7F598C7F4944
    chainloader +1
}
menuentry "Windows 7 (loader) (on /dev/sda2)" --class windows --class os {
    insmod part_msdos
    insmod ntfs
    set root=(hd0,msdos2)
    search --no-floppy --fs-uuid --set=root C08C7F598C7F4944
    chainloader +1
}
menuentry "Windows Recovery Environment (loader) (on /dev/sda4)" --class windows --class os {
    insmod part_msdos
    insmod ntfs
    set root=(hd0,msdos4)
    search --no-floppy --fs-uuid --set=root C22A7EEA2A7EDB3D
    drivemap -s (hd0) ${root}
    chainloader +1


Changes should take effect immediately, so make a backup and be careful. Also, anything you change in this file will be completely over written if you run update-grub2 again.

make sure youre delete the right one or youll be sorry...

OR


Mount the /dev/sda1 drive. Then in that drive look for a folder named Boot and a file named bootmgr. Remove both the folder and file. Then run update-grub2 command again.
You might want to install grub2 again. As I see your Ubuntu installation is at /dev/sdb, the commands will be

sudo grub-install /dev/sdb
sudo update-grub


Bye..

download file now

Read more »