How to define Share URL in Social Buttons (and Why you Should)
Using Facebook LIKE button or other social media share buttons, it is useful to define the URL of the page you want to share. It is not requested (by default),…
Using Facebook LIKE button or other social media share buttons, it is useful to define the URL of the page you want to share. It is not requested (by default),…
You can search for a certain package in a Debian system using dpkg. dpkg --list "package_name" Example Give the command dpkg --list "apache2*" the result looks like: Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend…
RSS (Really Simple Syndication) is the use of an XML document in order to share content across the Internet. An RSS document, aka "feed" includes full or summarized text, plus…
To find out system CPU is 64-bit capable or not, use /proc/cpuinfo. cat /proc/cpuinfo | grep flags If result contains "lm" (Long Mode), system CPU is 64-bit capable. As an…
To find out if you are running a 64-bit or 32-bit kernel, uname command is enough: uname -m If the result is "x86_64", you are running an 64-bit kernel"i686" means…