#Compiling a custom Linux kernel
# Install required tools
sudo apt-get install ncurses-dev
# Download Linux source
sudo apt-get install linux-source
cd /usr/src/
# Extract Linux source
tar xf linux-source-*.tar.xz
cd linux-source-*/| #!/bin/bash | |
| # This script was initially based on the information documented on the following sites: | |
| # https://help.ubuntu.com/community/LiveCDCustomization (shared under a Creative Commons Attribution-ShareAlike 3.0 License available at https://help.ubuntu.com/community/License) | |
| # https://wiki.ubuntu.com/KernelTeam/GitKernelBuild (shared under a Creative Commons Attribution-ShareAlike 3.0 License available at https://help.ubuntu.com/community/License) | |
| # and then further developed by Linuxium (linuxium@linuxium.com.au). | |
| # Version 1: This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. | |
| # Version 2.01.050417: This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 License. | |
| # Version 3.01.120417: This work is licensed under GNU GPL version 3 under one-way compatibility with CC BY-SA 4.0. | |
| # Version 3.02.130417, 4.06.220417 to 4.09.280417, 5.01.020517 and 6.01.120517: This work is licensed under GNU GPL version 3. |
#Compiling a custom Linux kernel
# Install required tools
sudo apt-get install ncurses-dev
# Download Linux source
sudo apt-get install linux-source
cd /usr/src/
# Extract Linux source
tar xf linux-source-*.tar.xz
cd linux-source-*/| allintitle: "index of/admin" | |
| allintitle: "index of/root" | |
| allintitle: restricted filetype :mail | |
| allintitle: restricted filetype:doc site:gov | |
| allintitle: sensitive filetype:doc | |
| allintitle:"Network Camera NetworkCamera" | |
| allintitle:"Welcome to the Cyclades" | |
| allintitle:.."Test page for Apache Installation.." | |
| allintitle:\"Test page for Apache Installation\" | |
| allintitle:admin.php |
| ********.php?cid= | |
| ********.php?cid= | |
| ********.php?cid= | |
| ********.php?cid= | |
| ********s_in_area.php?area_id= | |
| ***zine/board.php?board= | |
| ?action= | |
| ?action= | |
| ?cat= | |
| ?cat= |
| Replace 'X' with the domain name of your choice | |
| # Back link | |
| link:X -site:X | |
| # Sub domain | |
| site:X -site:www.X | |
| # Url | |
| inurl:X -site:X |
| #!/bin/sh | |
| # Linuxium's installation script for booting from a 32-bit bootloader | |
| DEFAULT_GATEWAY=`ip r | grep default | cut -d ' ' -f 3` | |
| if ( ! ping -q -w 1 -c 1 "${DEFAULT_GATEWAY}" > /dev/null 2>&1 ); then | |
| echo "$0: Not connected to internet ... exiting." | |
| exit | |
| fi |