Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
#!/bin/sh ### linuxc script by fanthom <http://www.porteus.org> ### edited by Michele13 export PATH=/bin:/usr/bin:./ # Enable pivot_root in initramfs to let it behave like initrd: if [ -d /m ]; then mount -nt tmpfs tmpfs -o mode=0755 /m cp -a ??* /m 2>/dev/null exec switch_root /m linuxrc "$@" fi mount -nt proc proc /proc mount -nt sysfs sysfs /sys echo 0 >/proc/sys/kernel/printk clear echo "[1m""Starting init script""[0m" # Functions: param() { egrep -qo " $1( |\$)" /proc/cmdline; } value() { egrep -o " $1=[^ ]+" /proc/cmdline | cut -d= -f2; } debug() { param debug && { echo -e "\n=====\n: Debugging started. Here is the shell for you.\n: Type your desired commands, hit Ctrl+D to continue booting\n: or press Ctrl+Alt+Del to reboot."; sh; echo -e "\n\n"; }; } # Variables: i=`echo "[1;33m""^ ""[0m"` m=`echo "[1;33m""->""[0m"` arch=`uname -m`; [ $arch = x86_64 ] || arch=i486 DELAY=`value delay`; [ $DELAY ] && { echo $i"delaying $DELAY sec (waiting for slow devices to settle up)"; sleep $DELAY; } SGN=`value sgnfile`; [ $SGN ] || SGN=jessie-$arch.sgn FROM=`value from`; ISO=`echo $FROM | egrep ".*\.iso( |\$)"` IP=`value ip | cut -d: -f2` MOPT=`value mopt`; [ $MOPT ] || MOPT="noatime,nodiratime,suid,dev,exec,async" CHANGES=`value changes` RAMSIZE=`value ramsize`; [ $RAMSIZE ] || RAMSIZE=60% LOAD=`value load | sed 's/;/|/g'`; [ $LOAD ] || LOAD=._null NOLOAD=`value noload | sed 's/;/|/g'`; [ $NOLOAD ] || NOLOAD=._null EXTRAMOD=`value extramod | sed 's/;/ /g'` RAMMOD=`value rammod | sed 's/;/|/g'` ROOTCOPY=`value rootcopy` FOLDER=debian livedbg=/var/log/livedbg # Device Functions: fstab() { rm -f /tmp/devices param nocd || for x in /dev/sr*; do blkid $x >>/tmp/devices; done param nohd || blkid | egrep -v '/dev/sr|/dev/loop|/dev/mapper' >>/tmp/devices dev=`egrep -v 'TYPE="sw|TYPE="LVM|TYPE=".*_raid_member"' /tmp/devices 2>/dev/null | cut -d: -f1 | cut -d/ -f3 | sort | uniq` cat > /etc/fstab << EOF # Do not edit this file as fstab is recreated automatically during every boot. # Please use /etc/rc.d/rc.local or sysvinit scripts if you want to mount/unmount # drive, filesystem or network share. # System mounts: aufs / aufs defaults 0 0 proc /proc proc defaults 0 0 sysfs /sys sysfs defaults 0 0 devtmpfs /dev devtmpfs defaults 0 0 devpts /dev/pts devpts rw,mode=0620,gid=5 0 0 # Device partitions: EOF for x in $dev; do fs=`grep -w /dev/$x /tmp/devices | egrep -o ' TYPE=[^ ]+' | cut -d'"' -f2` [ $fs = vfat ] && echo "/dev/$x /mnt/$x vfat $MOPT,umask=0,check=s,utf8 0 0" >>/etc/fstab || echo "/dev/$x /mnt/$x $fs $MOPT 0 0" >>/etc/fstab if [ ! -d /mnt/$x ]; then mkdir /mnt/$x if [ $fs = ntfs ]; then ntfs-3g /dev/$x /mnt/$x -o $MOPT 2>/dev/null || { sed -i "/$x /d" /etc/fstab; rmdir /mnt/$x; } else mount -n /mnt/$x 2>/dev/null || { modprobe $fs 2>/dev/null && mount -n /mnt/$x 2>/dev/null || { sed -i "/$x /d" /etc/fstab; rmdir /mnt/$x; }; } fi fi done if [ -z "`egrep -o " noswap( |\$)" /proc/cmdline`" -a -e /tmp/devices ]; then echo -e "\n# Swap partitions:" >>/etc/fstab for x in `grep 'TYPE="swap"' /tmp/devices | cut -d: -f1`; do echo "$x none swap sw,pri=1 0 0" >>/etc/fstab; done fi } mount_device() { fs=`blkid /dev/$1 | egrep -o ' TYPE=[^ ]+' | cut -d'"' -f2` if [ "$fs" ]; then mkdir /mnt/$1 if [ $fs = vfat ]; then mount -n /dev/$1 /mnt/$1 -o $MOPT,umask=0,check=s,utf8 2>/dev/null || rmdir /mnt/$1 elif [ $fs = ntfs ]; then ntfs-3g /dev/$1 /mnt/$1 -o $MOPT 2>/dev/null || rmdir /mnt/$1 else mount -n /dev/$1 /mnt/$1 -o $MOPT 2>/dev/null || { modprobe $fs 2>/dev/null && mount -n /dev/$1 /mnt/$1 -o $MOPT || rmdir /mnt/$1; } fi fi } # Search functions: search() { FND=none; for x in `ls /mnt | tac`; do [ $1 /mnt/$x/$2 ] && { DEV=$x; FND=y; break; }; done [ $FND = y ]; } lazy() { SLEEP=6; while [ $SLEEP -gt 0 -a $FND = none ]; do nap; let SLEEP=SLEEP-1; fstab; search $*; done } locate() { LPATH=`echo $2 | cut -b-5 | sed s@/dev@/mnt@` if [ $LPATH = /mnt/ ]; then DEV=`echo $2 | cut -d/ -f3`; LPTH=`echo $2 | cut -d/ -f4-`; SLEEP=6 while [ $SLEEP -gt 0 -a ! -b /dev/$DEV ]; do nap; let SLEEP=SLEEP-1; fstab; done [ -d /mnt/$DEV ] || mount_device $DEV [ $1 /mnt/$DEV/$LPTH ] elif [ $LPATH = UUID: -o $LPATH = LABEL ]; then ID=`echo $2 | cut -d: -f2 | cut -d/ -f1`; LPTH=`echo $2 | cut -d/ -f2-`; DEV=`blkid | grep $ID | cut -d: -f1 | cut -d/ -f3`; SLEEP=6 while [ $SLEEP -gt 0 -a "$DEV" = "" ]; do nap; let SLEEP=SLEEP-1; fstab; DEV=`blkid | grep $ID | cut -d: -f1 | cut -d/ -f3`; done [ -d /mnt/$DEV ] || mount_device $DEV [ $1 /mnt/$DEV/$LPTH ] else LPTH=$2; search $* || lazy $* fi } # Other functions: nap() { echo -en $i"device not ready yet? delaying [1;33m$SLEEP[0m seconds \r"; sleep 1; } fail() { echo -e $i"couldn't find $1. Correct your cheatcodes if needed.\n Press 'enter' to continue booting."; read -s; } fail_chn() { mount -nt tmpfs -o size=$RAMSIZE tmpfs /memory/changes; CHANGES=memory; CHNDEV=memory; } draw() { echo "[1;33m""---------------------------------------------------------""[0m"; } fsck_dat() { echo $i"checking $1 for errors" fs=`blkid $1 | egrep -o ' TYPE=[^ ]+' | cut -b8-10` if [ $fs = xfs ]; then echo $i"detected xfs - performing fsck at mount time" elif [ $fs = ext ]; then draw; e2fsck -C 0 -p $1; wait; draw elif [ $fs = rei ]; then draw; reiserfsck -p $1; wait; draw else echo $i"detected unsupported fs - skipping fsck" fi } cpmod() { NUM=`grep -c '.' $1` for x in `cat $1`; do echo -en "[1;33m"" ($NUM modules left) \r""[0m"; let NUM=NUM-1; NAME=`basename $x` cp $x /memory/copy2ram 2>/dev/null if [ $? -eq 0 ]; then sed -i s@^.*/$NAME@/memory/copy2ram/$NAME@ /tmp/modules else rm /memory/copy2ram/$NAME; echo -e $i"[1;36m""Not enough memory to copy $NAME""[0m"; echo -e $i"[1;36m""Other modules will be skipped.""[0m" find /memory/copy2ram -name "*.xzm" | sort >/tmp/modules break fi done echo -en " \r"; } ## Let's start! mount -nt devtmpfs none /dev # Perform filesystem check: if param fsck; then echo $i"performing linux filesystem check on all available devices:" draw for x in `blkid | grep 'TYPE="ext' | cut -d: -f1`; do e2fsck -C 0 -p $x; wait; done for x in `blkid | grep 'TYPE="reiserfs"' | cut -d: -f1`; do reiserfsck -p $x; wait; done draw fi # Create /etc/fstab and mount devices: fstab debug # Find *.sgn file: echo $i"searching for $SGN file" if [ $IP ]; then BOOTDEV=network; SGNDEV=/mnt/nfs for x in `lspci | grep 0200: | cut -d: -f3-4 | sed s/:/.*/g | tr a-z A-Z`; do modprobe `grep $x /lib/modules/$(uname -r)/modules.alias | tail -n1 | rev | cut -d" " -f1 | rev` 2>/dev/null; done ls /sys/class/net | grep -q eth || { for x in `find /lib/modules/$(uname -r)/kernel/drivers/net -name "*.ko" | sed 's/.ko//g'`; do modprobe `basename $x` 2>/dev/null; ls /sys/class/net | grep -q eth && break || modprobe -r `basename $x` 2>/dev/null; done; } mkdir -p /mnt/nfs/porteus /mnt/nfs/storage; udhcpc; modprobe nfsv4; mount -t nfs4 $IP:/srv/pxe/porteus /mnt/nfs/porteus -o ro,nolock 2>/dev/null || { modprobe nfsv3; mount -t nfs $IP:/srv/pxe/porteus /mnt/nfs/porteus -o ro,nolock 2>/dev/null; } MAC=`ifconfig | grep eth0 | cut -d: -f5-7 | sed s/://g | cut -d" " -f1` if [ "$CHANGES" = /srv/pxe/storage ]; then if lsmod | grep -q nfsv3; then mount -t nfs $IP:/srv/pxe/storage /mnt/nfs/storage -o rw,nolock 2>/dev/null && { mkdir -p /mnt/nfs/storage/client-$MAC/changes/home; CHANGES="/storage/client-$MAC"; } else mount -t nfs4 $IP:/srv/pxe/storage /mnt/nfs/storage -o rw,nolock 2>/dev/null && { mkdir -p /mnt/nfs/storage/client-$MAC/changes/home; CHANGES="/storage/client-$MAC"; } fi fi elif [ $ISO ]; then SGNDEV=/mnt/isoloop locate -e $FROM && { BOOTDEV=/mnt/$DEV; mkdir /mnt/isoloop; mount -o loop /mnt/$DEV/$LPTH /mnt/isoloop; } else if [ $FROM ]; then locate -e $FROM/debian/$SGN if [ $? -eq 0 ]; then DIR=`echo $LPTH | rev | cut -d/ -f3- | rev`; [ $DIR ] && FOLDER=$DIR/debian else echo $i"from= cheatcode is incorrect, press enter to search through all devices" read -s; search -e debian/$SGN fi else search -e debian/$SGN || lazy -e debian/$SGN fi SGNDEV=/mnt/$DEV fi [ -e $SGNDEV/$FOLDER/$SGN ] && PTH=$SGNDEV/$FOLDER || . fatal echo $i"using Debian data from $PTH" # Make all drivers available: mount -o loop $PTH/base/000-kernel.xzm /opt/000-kernel 2>/dev/null mount -o bind /opt/000-kernel/lib/modules /lib/modules 2>/dev/null # Create symlinks used often by porteus scripts: if [ $SGNDEV = /mnt/nfs -o $SGNDEV = /mnt/isoloop ];then ln -sf /mnt/live$PTH/modules /porteus/modules ln -sf /mnt/live$PTH/optional /porteus/optional else ln -sf $PTH/modules /porteus/modules ln -sf $PTH/optional /porteus/optional fi debug # Setup changes: if [ $CHANGES ]; then echo $i"setting up directory for changes" CHNEXIT=`echo $CHANGES | cut -d: -f1`; [ $CHNEXIT = EXIT ] && CHANGES=`echo $CHANGES | cut -d: -f2-` #[ `echo $CHANGES | sed s@/@@g` = porteus ] && { DEV=`echo $SGNDEV | sed s@/mnt/@@`; LPTH=$FOLDER; } || locate -r $CHANGES [ -r $SGNDEV/$CHANGES ] && { DEV=`echo $SGNDEV | sed s@/mnt/@@`; LPTH=$CHANGES; } || locate -r $CHANGES if [ $? -eq 0 ]; then if [ -d /mnt/$DEV/$LPTH ]; then mkdir -p /mnt/$DEV/$LPTH/changes 2>/dev/null && \ mount -o bind /mnt/$DEV/$LPTH/changes /memory/changes && touch /memory/changes/._test1 2>/dev/null else if blkid /mnt/$DEV/$LPTH 2>/dev/null | cut -d" " -f3- | grep -q _LUKS; then for x in dm_crypt cryptd cbc sha256_generic aes_generic aes_x86_64; do modprobe $x 2>/dev/null; done losetup /dev/loop2 /mnt/$DEV/$LPTH echo $i"found encrypted .dat container" /opt/000-kernel/sbin/cryptsetup luksOpen /dev/loop2 crypt fsck_dat /dev/mapper/crypt mount /dev/mapper/crypt /memory/changes 2>/dev/null && touch /memory/changes/._test1 2>/dev/null else fsck_dat /mnt/$DEV/$LPTH mount -o loop /mnt/$DEV/$LPTH /memory/changes 2>/dev/null && touch /memory/changes/._test1 2>/dev/null fi fi if [ $? -eq 0 ]; then echo $i"testing filesystem on "$CHANGES" for posix compatibility" ln -s /memory/changes/._test1 /memory/changes/._test2 2>/dev/null && chmod +x /memory/changes/._test1 2>/dev/null && [ -x /memory/changes/._test1 ] && chmod -x /memory/changes/._test1 2>/dev/null && [ ! -x /memory/changes/._test1 ] && rm -f /memory/changes/._test1 /memory/changes/._test2 if [ $? -ne 0 ]; then rm -f /memory/changes/._test1 /memory/changes/._test2; umount /memory/changes echo && echo -e "[1;33m""A Windows filesystem (FAT, NTFS) or other non-posix compatible filesystem\nhas been detected on $CHANGES.\nYour changes cannot be saved directly to the specified storage media with this\nsetup. Please use the '[1;36mPorteus save file manager[1;33m' to create a .dat container\nand use it for saving your changes after your next reboot.""[0m" echo "press enter to continue in '[1;36mAlways Fresh[0m' mode for this session" read; rmdir /mnt/$DEV/$LPTH/changes; fail_chn else echo $i"filesystem is posix compatible"; CHNDEV=/mnt/$DEV rmdir /memory/changes/mnt/* 2>/dev/null rm -rf /memory/changes/var/lock/* /var/run/laptop-mode-tools/* /var/spool/cron/cron.?????? for x in `find /memory/changes/var/run -name "*pid" 2>/dev/null`; do rm $x; done if [ $CHNEXIT = EXIT -o "`egrep -o " changes-ro( |\$)" /proc/cmdline`" ]; then CHNEXIT=$CHNDEV/$LPTH; echo $CHNEXIT >/tmp/changes-exit param changes-ro && echo $i"[1;36m""changes will not be saved for this session""[0m" || echo $i"[1;36m""changes will be saved only during reboot/shutdown""[0m" for x in `find /memory/changes -name ".wh.*" | grep -v '.wh..wh..opq'`; do cp -a --parents $x /var; done umount /memory/changes; mount -nt tmpfs -o size=$RAMSIZE tmpfs /memory/changes # need to fix busybox bug on 'cp -a' as it does not preserve perms on dirs: chown -R 1000:1000 /var/memory/changes/home/guest 2>/dev/null mv /var/memory/changes/* /memory/changes 2>/dev/null; CHANGES=memory fi fi else echo $i"changes not writable, using memory instead"; umount /memory/changes 2>/dev/null; fail_chn fi else fail $CHANGES; fail_chn fi else echo $i"changes cheatcode not found, using memory only"; fail_chn fi mkdir -p /memory/changes/mnt/live debug # Setup aufs: echo $i"creating live filesystem and inserting modules" mount -t aufs -o nowarn_perm,xino=/memory/xino/.aufs.xino,br:/memory/changes=rw aufs /union if [ $? -ne 0 ]; then echo -e "[31m""cant setup union (aufs) - read only filesystem?\nWhen you finish debugging press Ctrl+Alt+Del to reboot.""[0m"; sh; fi # Find modules: find $PTH/base $PTH/modules -name "*.xzm" 2>/dev/null | egrep -v "$NOLOAD" | sort >/tmp/modules find $PTH/optional -name "*.xzm" 2>/dev/null | egrep "$LOAD" | sort >>/tmp/modules if param vga_detect; then echo $i"detecting GPU" lspci >/tmp/lspci; nv=`grep "0300: 10de:" /tmp/lspci | cut -d":" -f4`; amd=`grep "0300: 1002:" /tmp/lspci | cut -d":" -f4` if [ $nv ]; then echo $i"$nv chipset found, checking which nVidia driver supports it" cd /usr/share/pciids/nVidia; NV=`grep $nv * | cut -d: -f1`; cd / if [ $NV ]; then echo $i"nVidia-$NV.xx driver will be activated -" echo $i"if present in $PTH/optional folder" find $PTH/optional -name "nVidia-$NV*" 2>/dev/null >>/tmp/modules else echo $i"latest nVidia driver will be activated -" echo $i"if present in $PTH/optional folder" find $PTH/optional -name "nVidia-*" 2>/dev/null | egrep -v '96.43.|173.14.|304.' >>/tmp/modules fi elif [ $amd ]; then echo $i"checking if $amd GPU belongs to 'Radeon HD' series" cd /usr/share/pciids/AMD; HD=`grep $amd * | cut -d: -f1`; cd / if [ $HD ]; then echo $i"$HD-xx driver will be activated -" echo $i"if present in $PTH/optional folder" find $PTH/optional -name "$HD-*" 2>/dev/null >>/tmp/modules else echo $i"$amd GPU is not supported by amd-catalyst driver - refusing activation" fi else echo $i"could not find any nVidia/AMD GPU on this PC" fi fi if param base_only; then grep base/0 /tmp/modules > /tmp/mod mv /tmp/mod /tmp/modules else if [ "$EXTRAMOD" ]; then for folder in $EXTRAMOD; do echo $i"searching for additional modules in $folder" locate -d $folder && { find /mnt/$DEV/$LPTH -name "*.xzm" 2>/dev/null | egrep -v "$NOLOAD" | sort >>/tmp/modules; } || fail $folder done fi fi # Copy data to RAM: if param copy2ram; then echo $i"copying Porteus data to RAM, this may take some time..." [ $RAMMOD ] && { egrep "$RAMMOD" /tmp/modules > /tmp/rammod; cpmod /tmp/rammod; } || cpmod /tmp/modules fi # Populate aufs with modules: umount /lib/modules /opt/000-kernel 2>/dev/null for x in `cat /tmp/modules`; do NAME=`basename $x`; mkdir /memory/images/$NAME; mount -o loop $x /memory/images/$NAME 2>/dev/null if [ $? -eq 0 ]; then echo " $m $NAME"; mount -no remount,add:1:/memory/images/$NAME=rr aufs /union else echo $i"[1;36m""Cannot read $NAME - corrupted module?""[0m"; rmdir /memory/images/$NAME fi done mount -no bind /union/lib/modules /lib/modules 2>/dev/null # Add "changes on exit" device/file/folder: if [ -e /tmp/changes-exit ]; then mkdir /memory/images/changes if [ -d $CHNEXIT ]; then mount -o bind $CHNEXIT/changes /memory/images/changes elif [ -b /dev/mapper/crypt ]; then mount /dev/mapper/crypt /memory/images/changes else mount -o loop $CHNEXIT /memory/images/changes fi echo " $m changes"; mount -no remount,add:1:/memory/images/changes=ro aufs /union echo $CHNEXIT/changes >>/tmp/modules param changes-ro && rm /tmp/changes-exit fi debug # Copy /rootcopy folder: if param norootcopy; then ROOTCOPY=none echo $i"skipping /rootcopy directory" else if [ $ROOTCOPY ]; then locate -d $ROOTCOPY if [ $? -eq 0 ]; then echo $i"copying content of $ROOTCOPY directory"; cp -af /mnt/$DEV/$LPTH/. /union/. 2>/dev/null; else fail $ROOTCOPY; ROOTCOPY=none; fi else ROOTCOPY=none echo $i"copying content of $PTH/rootcopy directory" cp -af $PTH/rootcopy/. /union/. 2>/dev/null fi fi ## Finish: # Create 7 free loop devices for truecrypt, etc... x=`losetup | tail -n1 | cut -d: -f1 | sed 's@/dev/loop@@'`; let y=x+7 while [ $x -le $y ]; do [ -b /dev/loop$y ] && break || mknod /dev/loop$y b 7 $y; let y=y-1; done if param nonetwork; then echo $i"disabling dhcpcd and NetworkManager services" chmod -x /union/etc/rc.d/rc.inet1 /union/etc/rc.d/rc.networkmanager 2>/dev/null nma=/union/etc/xdg/autostart/nm-applet.desktop test -e $nma && ! grep -q "Hidden=true" $nma && echo "Hidden=true" >> $nma fi if [ "$IP" -a -x /union/etc/rc.d/rc.networkmanager ]; then if [ -z "`egrep -o " copy2ram( |\$)" /proc/cmdline`" -o -d /mnt/nfs/storage/client-$MAC ]; then echo "nameserver $IP" > /union/etc/resolv.conf nmc=/union/etc/NetworkManager/NetworkManager.conf; HW=`ifconfig | grep eth0 | cut -dW -f2 | cut -d" " -f2` ! grep -q "unmanaged-devices=mac:$HW" $nmc && sed -i '/\[keyfile\]/ a\unmanaged-devices=mac:'$HW'' $nmc fi fi cp -af /dev/console /union/dev cat > /union/etc/mtab << EOF aufs / aufs rw 0 0 proc /proc proc rw 0 0 sysfs /sys sysfs rw 0 0 devtmpfs /dev devtmpfs rw 0 0 devpts /dev/pts devpts rw,mode=0620,gid=5 0 0 EOF fstab debug if param copy2ram; then [ $SGNDEV = /mnt/isoloop -o $SGNDEV = /mnt/nfs ] && { umount `grep $SGNDEV /etc/mtab | sed -n 1p | cut -d" " -f2`; SGNDEV=$BOOTDEV; } CHNDISK=`echo $CHNDEV | cut -b6-8`; SGNDISK=`echo $SGNDEV | cut -b6-8`; REMOVABLE=`cat /sys/block/$SGNDISK*/removable 2>/dev/null` if [ -z "`egrep -o " noeject( |\$)" /proc/cmdline`" -a "$CHNDISK" != "$SGNDISK" ]; then if [ "$REMOVABLE" = 1 ]; then for rdisk in `ls /mnt | grep $SGNDISK`; do umount -n /mnt/$rdisk 2>/dev/null && rmdir /mnt/$rdisk if [ $? -eq 0 ]; then ! grep -qw "/dev/$rdisk.*iso9660" /etc/fstab && echo $rdisk >> /tmp/ejected || /union/usr/bin/eject /dev/$rdisk sed -i "/$rdisk/d" /etc/fstab fi done [ `ls /mnt | grep $SGNDISK` ] || echo $i"[1;36m""finished copying to RAM - booting media can be removed safely""[0m" else if param nohd; then umount $SGNDEV 2>/dev/null; rmdir $SGNDEV 2>/dev/null; fi fi fi fi # Create debug file: [ -e /tmp/devices ] && { echo "# Recognized devices:" >$livedbg; cat /tmp/devices >>$livedbg; } [ $BOOTDEV ] && SGNDEV=$BOOTDEV echo -e "\n# Booting device:\n$SGNDEV\n\n# Debian data found in:\n$PTH\n\n# Changes are stored in:\n$CHANGES\n\n# Non standard /rootcopy dir:\n$ROOTCOPY\n\n# Modules activated during boot time:" >>$livedbg; cat /tmp/modules >>$livedbg cp -af $livedbg /union/var/log/porteus-livedbg echo $i"changing root directory" if param noauto; then for x in `grep /mnt/ /etc/fstab | cut -d/ -f3`; do mkdir -p /union/mnt/$x; umount -n /mnt/$x 2>/dev/null && rmdir /mnt/$x; done else grep /mnt/ /etc/fstab >> /union/etc/mtab for x in `grep /mnt/ /etc/fstab | cut -d/ -f3`; do mkdir -p /union/mnt/$x; mount -n --move /mnt/$x /union/mnt/$x; rmdir /mnt/$x; done fi sed -i 's/ ntfs / ntfs-3g /g' /etc/fstab cp -f /etc/fstab /union/etc 2>/dev/null umount -n /lib/modules 2>/dev/null rm -r /lib/* /usr/* debug echo "[1m""live system is ready now - starting Debian""[0m" cp -f /union/sbin/init /bin if [ $? -eq 0 ]; then pivot_root /union /union/mnt/live exec bin/chroot . /mnt/live/bin/init "$@" <dev/console >dev/console 2>&1 else echo -e "[31m""!!ERROR!!\nSomething went wrong and I cannot continue.\nPress Ctrl+Alt+Del to reboot.""[0m" sh fi
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Crypto Money Attack
CSS | 22 min ago | 0.21 KB
API Glitch (Up to 1 BTC)
CSS | 22 min ago | 0.21 KB
This summer smells like money
CSS | 22 min ago | 0.21 KB
redteam-deface
HTML | 5 hours ago | 3.15 KB
Untitled
8 hours ago | 0.04 KB
Sparkle Animation Review Template
17 hours ago | 1.20 KB
more sc
17 hours ago | 0.15 KB
EM Operational: Client wants to see a list of...
17 hours ago | 1.46 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!