February 4, 2023 at 05:42
· Filed under pribados
cahaya matahari yg kita terima “sekarang” adalah cahaya yg dipancarkan matahari 8 menit 20 detik lalu
cahaya dari proxima centauri yg kita terima “sekarang” adalah cahaya yg dipancarkan/dipantulkan proxima centauri 4.3 tahun yg lalu
mungkin di ujung sana, sebenarnya sesuatu sudah terjadi bahkan sudah selesai, misal surga dan neraka, atau bahkan ketidakadaan semesta
kayaknya, yang kita alami sekarang adalah sisa cahaya hasil penciptaan dan pengakhiran semesta
jadi, whuuuffuit (baca sambil monyong)
wh.. adalah proses yg disebut bigbang
uuuffu.. adalah yg kita alami sekarang
it adalah akhir cerita yg sebenernya sudah terjadi
nabi muhammad isra mi’raj dan sudah melihat surga dan neraka yg sudah/sedang terjadi, gimana caranya? sedang kita/nabi muhammad pun saat itu sedang menjalani hidup ini
di isra mi’raj dikabarkan nabi muhammad mengalami itu dalam satu malam, bahkan dari posisi masjidil haram (mekah) ke masjidil aqsa (palestina) lalu ke sidratul muntaha (langit), itu jaraknya jauh banget, paling mungkin dilalui se kecepatan cahaya atau bahkan lebih, mengenai menggunakan apa, kita belum atau bahkan bisa jadi ngga akan pernah tahu
karena jumlah ilmu yg kita dapat dibanding ilmu Allah adalah ibarat satu jari dicelupkan ke lautan, nah sisa air diujung jari itu ilmu yg diijinkan Allah utk manusia ,dan lautan adalah ilmu Allah
karena ketika kita bisa bergerak = atau bahkan > kecepatan cahaya maka kita bisa “menyusul” proses whuuuffuit tadi
hanya ide
Permalink
February 1, 2023 at 17:51
· Filed under pribados
Occasionally as a Linux administrator you will be in the situation where working on a remote server and you are left with no option but to force a reboot the system. This may be for a number of reasons, but where I have found it most frequent is when working on Linux clusters in a remote location.
When the “reboot” or “shutdown” commands are executed daemons are gracefully stopped and storage volumes unmounted.
This is usually accomplished via scripts in the /etc/init.d directory which will wait for each daemon to shut down gracefully before proceeding on to the next one. This is where a situation can develop where your Linux server fails to shutdown cleanly leaving you unable to administer the system until it is inspected locally. This is obviously not ideal so the answer is to force a reboot on the system where you can guarantee that the system will power cycle and come back up. The method will not unmount file systems nor sync delayed disk writes, so use this at your own discretion.
To force the kernel to reboot the system we will be making use of the magic SysRq key.
The magic_SysRq_key provides a means to send low level instructions directly to the kernel via the /proc virtual file system.
To enable the use of the magic SysRq option type the following at the command prompt:
echo 1 > /proc/sys/kernel/sysrq
Then to reboot the machine simply enter the following:
echo b > /proc/sysrq-trigger
VoilĂ ! Your system will instantly reboot.
Permalink