summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaul Buetow (europa) <paul@buetow.org>2015-06-18 21:21:14 +0100
committerPaul Buetow (europa) <paul@buetow.org>2015-06-18 21:21:14 +0100
commit624f6ea40c1d8ff5c269ff73ab3dc31464d7adde (patch)
tree3f14196c131c84324417ca3a16c841f5e48d3024 /README.md
parent7094416005a430a250f1b781116fc297706b3b0d (diff)
The new "I Love You" virus is not the work of some snot-nosed acne-laced
teenager working from a basement in the Phillipines. It's actually part of a conspiracy concocted by the unholy alliance of Microsoft and several well-known and well-despised spammers. You'll notice that the ILOVEYOU, Melissa, and Tuxissa strains all extract email addresses from the victim's system. This is a gold mine for spammers, who are able to use these viruses to harvest active email addresses for them. Everytime ILOVEYOU, for instance, propogates, it keeps track of all the email addresses it has been sent to, so that when it finally boomerangs back to a spammer, they have a nice convenient list of addresses to send "laser printer toner" and "get rich quick!" advertisements to. -- Bob Smith (not his real code-name), in a speech given at the First Annual Connecticut Conspiracy Convention (ConConCon), "the largest ever gathering of conspiracy theorists east of the Mississippi."
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 7 insertions, 15 deletions
diff --git a/README.md b/README.md
index 9e2b240..fe657ae 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ sudo debootstrap --foreign --variant=minibase \
sudo umount jessie
```
-Initial (manual) setup on external SD card on the Phone via Android Debugger
+Initial (manual) setup on external SD card on the Phone via Android Debugger:
```
adb root
@@ -66,8 +66,12 @@ exit
Last setup steps
```
-export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
- >> $(pwd)/jessie/root/.bashrc
+cat <<END >~/.bashrc
+export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$PATH
+export EDITOR=vim
+hostname $(cat /etc/hostname)
+# Example how to start single services
+# service uptimed status &>/dev/null || service uptimed start
# Fixing an error messages while loading the profile
sed -i s#id#/usr/bin/id# /etc/profile
@@ -85,18 +89,6 @@ END
apt-get update
```
-Bashrc
-
-```
-cat <<END >~/.bashrc
-export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$PATH
-export EDITOR=vim
-hostname $(cat /etc/hostname)
-# Example how to start single services
-# service uptimed status &>/dev/null || service uptimed start
-```
-
-
Enter chroot script (as root):
```