Bonsai Seed Kit
http://www.evesgardengifts.com/
Information to grow bonsai trees.
AOC e1649FWU Monitor
This is a usb powered monitor. You can pull the driver down locally DisplayLink_7.4_M2. This driver has been used on windows 8.1 with great success.
http://us.aoc.com/monitor_displays/e1649fwu
The Xen Adventure
Learning xen.
Compiled from http://wiki.xenproject.org/wiki/Xen_Beginners_Guide#Enable_virtualization_support_in_BIOS
Things to install
apt-get -y install htop
Create a bridge for the virtual machines:
brctl addbr vlan0
brctl addif vlan0 wlan0
iw dev wlan0 set 4addr on (for wireless card)
DMS Food Vending Machine
gpl11 – http://www.dsvendinginc.com/pdf-manuals/gpl11.pdf
http://www.monstervending.com/manualspdf/food/FoodKing-Setup-4290001.pdf
What does the serial port do, and what can it be made to do?
http://en.wikipedia.org/wiki/Multidrop_bus
http://www.google.com/patents/US20030149827
High voltage, have to figure that out.
Injection Molding Machine
http://www.ebay.com/itm/Reed-Prentice-100TD-Injection-Molding-Machine-100-Ton-/140798428515
proftpd – setting up a quick ftp server
This was created off of:
yum -y install proftpd.x86_64
echo “/bin/false” >> /etc/shells
cd /home sudo mkdir FTP-shared
sudo useradd userftp -p your_password -d /home/FTP-shared -s /bin/false sudo passwd userftp
cd /home/FTP-shared/ sudo mkdir download sudo mkdir upload
cd /home sudo chmod 755 FTP-shared cd FTP-shared sudo chmod 755 download sudo chmod 777 upload
cp /etc/proftpd.conf /etc/proftpd.conf.orig
vi /etc/proftpd.conf
-
# To really apply changes reload proftpd after modifications. AllowOverwrite on AuthAliasOnly on # Choose here the user alias you want !!!! UserAlias sauron userftp ServerName "ChezFrodon" ServerType standalone DeferWelcome on MultilineRFC2228 on DefaultServer on ShowSymlinks off TimeoutNoTransfer 600 TimeoutStalled 100 TimeoutIdle 2200 DisplayChdir .message ListOptions "-l" RequireValidShell off TimeoutLogin 20 RootLogin off # It's better for debug to create log files ;-) ExtendedLog /var/log/ftp.log TransferLog /var/log/xferlog SystemLog /var/log/syslog.log #DenyFilter \*.*/ # I don't choose to use /etc/ftpusers file (set inside the users you want to ban, not useful for me) UseFtpUsers off # Allow to restart a download AllowStoreRestart on # Port 21 is the standard FTP port, so you may prefer to use another port for security reasons (choose here the port you want) Port 1980 # To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 8 # Set the user and group that the server normally runs at. User nobody Group nobody # Umask 022 is a good standard umask to prevent new files and dirs # (second parm) from being group and world writable. Umask 022 022 PersistentPasswd off MaxClients 8 MaxClientsPerHost 8 MaxClientsPerUser 8 MaxHostsPerUser 8 # Display a message after a successful login AccessGrantMsg "welcome !!!" # This message is displayed for each access good or not ServerIdent on "you're at home" # Lock all the users in home directory, ***** really important ***** DefaultRoot ~ MaxLoginAttempts 5 #VALID LOGINS <Limit LOGIN> AllowUser userftp DenyALL </Limit> <Directory /home/FTP-shared> Umask 022 022 AllowOverwrite off <Limit MKD STOR DELE XMKD RNRF RNTO RMD XRMD> DenyAll </Limit> </Directory> <Directory /home/FTP-shared/download/*> Umask 022 022 AllowOverwrite off <Limit MKD STOR DELE XMKD RNEF RNTO RMD XRMD> DenyAll </Limit> </Directory> <Directory /home/FTP-shared/upload/> Umask 022 022 AllowOverwrite on <Limit READ RMD DELE> DenyAll </Limit> <Limit STOR CWD MKD> AllowAll </Limit> </Directory>
You can do a syntax check with the following:
proftpd -td5
Linux Wifi Debugging
inxi -Fx
rfkill list
iwconfig
lsmod
Pdf Manipulation and Hints
Reference: http://www.pdflabs.com/docs/pdftk-cli-examples/
Collate scanned pages
pdftk A=even.pdf B=odd.pdf shuffle A B output collated.pdf
or if odd.pdf is in reverse order:
pdftk A=even.pdf B=odd.pdf shuffle A Bend-1 output collated.pdf
Decrypt a PDF
pdftk secured.pdf input_pw foopass output unsecured.pdf
Encrypt a PDF using 128-bit strength (the default), withhold all permissions (the default)
pdftk 1.pdf output 1.128.pdf owner_pw foopass
Same as above, except password baz must also be used to open output PDF
pdftk 1.pdf output 1.128.pdf owner_pw foo user_pw baz
Same as above, except printing is allowed (once the PDF is open)
pdftk 1.pdf output 1.128.pdf owner_pw foo user_pw baz allow printing
Join in1.pdf and in2.pdf into a new PDF, out1.pdf
pdftk in1.pdf in2.pdf cat output out1.pdf
or (using handles):
pdftk A=in1.pdf B=in2.pdf cat A B output out1.pdf
or (using wildcards):
pdftk *.pdf cat output combined.pdf
Remove page 13 from in1.pdf to create out1.pdf
pdftk in.pdf cat 1-12 14-end output out1.pdf
or:
pdftk A=in1.pdf cat A1-12 A14-end output out1.pdf
Apply 40-bit encryption to output, revoking all permissions (the default). Set the owner PW to foopass.
pdftk 1.pdf 2.pdf cat output 3.pdf encrypt_40bit owner_pw foopass
Join two files, one of which requires the password foopass. The output is not encrypted.
pdftk A=secured.pdf 2.pdf input_pw A=foopass cat output 3.pdf
Uncompress PDF page streams for editing the PDF in a text editor (e.g., vim, emacs)
pdftk doc.pdf output doc.unc.pdf uncompress
Repair a PDF’s corrupted XREF table and stream lengths, if possible
pdftk broken.pdf output fixed.pdf
Burst a single PDF document into pages and dump its data to doc_data.txt
pdftk in.pdf burst
Burst a single PDF document into encrypted pages. Allow low-quality printing
pdftk in.pdf burst owner_pw foopass allow DegradedPrinting
Write a report on PDF document metadata and bookmarks to report.txt
pdftk in.pdf dump_data output report.txt
Rotate the first PDF page to 90 degrees clockwise
pdftk in.pdf cat 1east 2-end output out.pdf
Rotate an entire PDF document to 180 degrees
pdftk in.pdf cat 1-endsouth output out.pdf
Mikrotik Resources
Buy from here: http://www.balticnetworks.com/mikrotik-rb-rb-951-2n-indoor-ap-complete-with-enclosure-and-power-supply.html
Some sites with some good information on it
- http://mikrotik.romelsan.com/
- http://blog.linitx.com/
- http://www.kmirza.com/
- http://aacable.wordpress.com/
- http://strongvpn.com/setup_mikrotik_pptp.shtml
- http://www.wispforum.net/blog.php?3-Where-the-waves-go-sweeping-down-the-plains&s=5862fa5efcc831645568b6f3467ef400
- http://www.mtin.net/blog/category/technology/mikrotik/
- http://www.3dbwireless.com/boyd/?cat=7
- http://www.youtube.com/linuxsrvdallas
- http://mtroadshow.blogspot.com/
- http://blog.butchevans.com/category/mikrotik/
- http://gregsowell.com/
- http://www.mikrotik-routeros.com/