1Again the LORD said to me: Go, love a woman who is loved by her spouse but commits adultery; Just as the LORD loves the Israelites, though they turn to other gods and love raisin cakes.*2* So I acquired her for myself for fifteen pieces of silver and a homer and a lethech of barley. …
Author Archives: jeffrin
acpi_video_flags flags
[text] it allows mode of video boot to be set during run time. [/text] SHELL SESSION [bash] $pwd /proc/sys/kernel $sudo cat ac acct acpi_video_flags $sudo cat acpi_video_flags 0 $ [/bash] LINKS https://www.kernel.org/doc/Documentation/power/video.txt https://www.kernel.org/doc/Documentation/sysctl/kernel.txt
acct for process accounting
ABOUT process accounting Process accounting is a security method in which an administrator may keep track of system resources used and their allocation among users, provide for system monitoring, and minimally track a user’s commands. Process accounting has both positive and negative points. SPECIFIC EXPLANATION [text] acct: highwater lowwater frequency If BSD-style process accounting is …
ar – create, modify, and extract from archives
ABOUT ar The archiver, also known simply as ar, is a Unix utility that maintains groups of files as a single archive file. Today, ar is generally used only to create and update static library files that the link editor or linker uses and for generating .deb packages for the Debian family; it can be …
Continue reading “ar – create, modify, and extract from archives”
prayer against depression – by saint ignatius of loyola
O Christ Jesus, when all is darkness and we feel our weakness and helplessness, give us the sense of Your presence, Your love, and Your strength. Help us to have perfect trust in Your protecting love and strengthening power, so that nothing may frighten or worry us, for, living close to You, we shall see …
Continue reading “prayer against depression – by saint ignatius of loyola”
Colossians 3:23-24
23 Whatever you do, do from the heart, as for the Lord and not for others, 24 knowing that you will receive from the Lord the due payment of the inheritance; be slaves of the Lord Christ.
1 PETER 4:8
8 Above all, let your love for one another be intense, because love covers a multitude of sins.
PROVERBS 18:16
16 Gifts clear the way for people, winning access to the great.
HEBREW 5:8-9
8 Son though he was, he learned obedience from what he suffered; 9 and when he was made perfect, he became the source of eternal salvation for all who obey him,
Fundamental related of a bash builtin command named “if”
ABOUT if Conditionals have many forms. The most basic form is: if expression then statement where ‘statement’ is only executed if ‘expression’ evaluates to true. ’21’ evaluates to true.xs TYPICAL SHELL EXPOSURE [bash] $if true; then echo "works" ; fi works $if false; then echo "works" ; fi $ [/bash] LINK https://stackoverflow.com/questions/16034749/if-elif-else-statement-issues-in-bash http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-6.html