Kian Joo
Reality and dream are so far apart.
Monday, December 05, 2022
Monday, May 16, 2022
Tuesday, May 04, 2021
Not alone...
"Sometimes, it's not even about getting the right advice, but it's just knowing that you're not going through something alone."
-Naomi Neo
Sunday, April 04, 2021
The lost words
“ The despair of the diagnosis. The labored breathing at the end that sounded like she was sucking up the last drops of a milkshake. The final rush by the ambulance to the hospital at the instruction of my father, who never resigned himself to the fact that nothing more could be done.
At the end, there was morphine, which my father, like so many others, believed sped her death. He beat himself up later about that, saying, "I should have read between the lines."
Now I know there were no lines to read between.”
-Elizabeth Simpson
www.pilotonline.com/news/health/article_2af23047-0732-5177-bc93-51e9ad058ed2.html%3foutputType=amp
Monday, October 14, 2019
Feeling like being dead is actually sounds better than alive.
While some are struggling to breathe....some are trying to disappear.
Thursday, December 27, 2018
VBOX: Shared Folder to Guest(linux)
1. Ready the Guest ISO
2. Mount the iso
mkdir /mnt/iso
mount -o loop redhat.iso /mnt/iso
3. Setup up yum to local ISO
https://access.redhat.com/solutions/1355683
4. Set Optical drive to Guest Addtitions
Menu-> Device -> Insert Guest Additions CD Image
5. mount the cdrom
mkdir -p /media/cdrom
mount /dev/sr0 /mnt/cdrom
6. try to install VBox Guest (requires gcc, kernel header)
cd /mnt/cdrom/
./VBoxLinuxAdditions.run
6a. Install any packages that is required when the installation failed
yum install gcc
yum install perl
yum install kernel-devel
7. In the menu, setup the sharing folder
8. Adding group vboxsf to root or any other users
usermod -G vboxsf root
9. Auto-mount
reboot guest
ls /media/sf_(sharename)
10. Manual mount the shared folder
mkdir -p /shared/sharename
mount -t vboxsf sharename /shared/sharename
11. Adding to /etc/fstab
sharename /shared/sharename vboxsf defaults 0 0
12. Adding to /etc/modules
vboxsf
13. Mount sharename
mount sharename