Phone: iPhone SE Operating System: Linux Mint 18.1 (should work in Ubuntu as well) It is done by compiling most of the sources yourself. Onl…
Read moreInstall phpmyadmin sudo apt-get install phpmyadmin Configure phpmyadmin sudo dpkg-reconfigure -plow phpmyadmin Then select Apache 2 for the we…
Read moreNB: http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes #include "stdio.h" #include "string.h" #include "stdlib.h" #…
Read moreThe HTTP server sends the files requested by the client, if it is available at the server. The HTTP client uses GET method for requesting files from …
Read moretcpserver.c #include"stdio.h" #include"stdlib.h" #include"sys/types.h" #include"sys/socket.h" #include&quo…
Read moretcpserver.c #include"stdio.h" #include"stdlib.h" #include"sys/types.h" #include"sys/socket.h" #include&quo…
Read moretcpserver.c #include"stdio.h" #include"stdlib.h" #include"sys/types.h" #include"sys/socket.h" #include&quo…
Read moretcpserver.c #include"stdio.h" #include"stdlib.h" #include"sys/types.h" #include"sys/socket.h" #include&q…
Read more1. Write a program to print details of currently logged in users, print date and calendar? #/bin/bash echo "Current login us…
Read moreTo show the full path of shell commands found in your path which <command name> eg: which grep //output like: /bi…
Read moreTo find the type of a file file <file name> To create a file cat > filename.txt //type the contents and press Ctrl+D to …
Read moreTo print working directory pwd To change directory To return to home directory cd To change into specified directory name cd <direc…
Read moreTo get help on commands help <command name> eg: help cat <command name> --help eg: grep --help <com…
Read moreDirectory Description The nameless base of the file system. All other directories, files, drives, and devices are …
Read moreCharacter Description \ Escape character. If you want to reference a special character, you must “escape” it with a bac…
Read more