2022-04-01-Install-thttpd-on-32-or-64-bit-OS.txt It would probably be a good idea to read through this install before one sits down and starts building their web site, just to get an idea of what one will be copying and what the computer will be sending back. "thttpd" will start when the computer loads and if something causes it to stop, it will restart in 10 seconds. "thttpd" is designed to be a 24/7/365 web server. When the OS needs to "reboot", thttpd will be running by the time the desktop appears. It is totally AWSOME!!! Since the Raspberry Pi has wireless capabilities, using a wireless router (even one not connected to the internet), in a classroom situation, more than 200 students can be connected to the same "C" class network (192.168.xxx.0/24) and can each connect to each other's web servers, where xxx is the same for all, and the 0 position can very from 2 - 254, with 0 representing the network, 255 is reserved for the broadcast address, and 1 reserved for the router address. With the router set up as a “DHCP Server” all of the computers would receive dynamic IP addresses and all of their http websites would be available in the addresses they were assigned. The http port number (80) is assigned by thttpd and the IP addresses are assigned from the router. I have tried to make this install simple enough even a third of fourth grader souuld be able to get through it. Since I have had trouble missing some commands I will mark them with "###" and "### sudo", as a comment, for commands that need to be exicuted as "sudo". This way a person should be able to find all of the command lines with just "###". There will be times one has to make their own changes to a command so be careful. It is almost all "copy and paste" but there are a few times one will have to use their own words, like file names for their site. This file is long but I did not strip any of the computer generated lines out of it and added blank lines so one will be able to better see the next item that needs to be copyied, pasted, and entered on the terminal. The thttpd man page gives a good idea what this program can do. As well, the Acme.com web site has more information. I have also included the: "ACME Labs HTML Sampler -- HTML is really pretty easy to learn." If you've ever used any sort of text formatting language, such as nroff or Scribe, this is the same idea. Even if you haven't, you should be able to pick this up pretty quick; it's just text with interspersed to specify the formatting. This page gives examples of all the basic HTML formatting codes. Read through it as a tutorial; refer back to it as a reference; use the index at the end. To start with one can even use just regular files and thttpd will actually serve them. My site: http://162.250.19.7/ is built mostly that way. But there are some of my old sites that are under "ac0xl/" and then "www/" which I built around 2004 or so. One just has to click on the directory and it will open. To get back up one level just click on the (../) two periods and a slash. On a 32-bit OS "thttpd" is limited to displaying files less than 2 GB (2**31 = 2,147,483,647 or 7fff ffff) Bytes. While a 64-bit OS is limited to displaying (2**63 = 9.223372031^18 or 7fff ffff ffff ffff) Bytes. I have tried a 5 GB (5,368,709,120 Bytes) file with no problems! This is with no changes being made in "thttpd". Out of the box, thttpd is bullet proof since it's web site is read-only but capable of doing CGI, as well as several other things, and is safe to run on the "World Wide Web"! My web site: http://162.250.19.7/, has been up and running on the WWW since August 01, 2019 without any problems with hackers doing any damage to my site! The config file is simple and short! The thttpd binary file I created using Raspberry Pi 64-bit OS on a Raspberry Pi 400, Mar 16 21:27, is only 121,272 bytes long and I have been using this config file since the beginning: -r-xr-xr-x 1 bin bin 121272 Mar 16 21:27 thttpd pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ cat thttpd_config # /home/local/www/thttpd_config dir=/home/local/www chroot #chroot jail data_dir=users #vhost # if you use a domain name you will have to uncomment (remove the # at the beginning) and then make a "user" directory using your external IPv4 address (xxx.xxx.xxx.xxx) and inside this directory make symbolic links back up to your other files in "users" (../"user-name"). cgipat=**.cgi logfile=/home/local/www/logs/thttpd_log pidfile=/var/run/thttpd.pid # pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ When I looked at Apache, which out of the box is only safe as an internal web server, I could not make it through the config file and found "thttpd - tiny/turbo/throttling web server." from Acme.com which used to be the number seven (7) most popular web server. I recommend "Geany - A fast and lightweight IDE using GTK+" since that is what came up when I was doing an install on a Raspberry Pi 32 bit OS. It has a split screen. The text install file was on top and should be made read-only with the lower screen as a terminal window. I just slid the separator line up so I would have more room on the terminal. Then it was just: copy the command, and paste it on the terminal and hit enter. What an awesome tool! It took around two hours to go through the install file. The only time I had to start a new terminal is during the "test." When one does the first test, the terminal will lock up because thttpd is still running in it. At this point, on the "Geany" terminal, one will have to enter: "ps -e" to print out all of the PID numbers and then find the numbers that go to thttpd so one can do: "sudo kill xxxx xxxx". The first run will be "sudo" and "thttpd" that one will need to kill. The second time will be "thttpd_wrapper" and "thttpd" that one needs to kill, since we are doing a progressive test to see that everything is working. After "thttpd" is killed, (usually 2 numbers), the terminal will come back. I usually enter the "sudo kill" command twice to show that the PID's are actually gone. I have since found "ps p xxxx xxxx" with the "xxxx" being the PID numbers will print out what the PID number goes to so one does not wipe out something one should not! Be Safe!!! ***************************** Adding "whois" will let you lookup IP Addresses of visitors to your "World Wide Website"! pi@raspberrypi:~ $ pi@raspberrypi:~ $ whois 162.250.19.7 ### bash: whois: command not found pi@raspberrypi:~ $ sudo apt install whois ### Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: whois 0 upgraded, 1 newly installed, 0 to remove and 3 not upgraded. Need to get 79.3 kB of archives. After this operation, 369 kB of additional disk space will be used. Get:1 http://deb.debian.org/debian bullseye/main arm64 whois arm64 5.5.10 [79.3 kB] Fetched 79.3 kB in 1s (142 kB/s) Selecting previously unselected package whois. (Reading database ... 106278 files and directories currently installed.) Preparing to unpack .../whois_5.5.10_arm64.deb ... Unpacking whois (5.5.10) ... Setting up whois (5.5.10) ... Processing triggers for man-db (2.9.4-2) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ whois 162.250.19.7 ### # # ARIN WHOIS data and services are subject to the Terms of Use # available at: https://www.arin.net/resources/registry/whois/tou/ # # If you see inaccuracies in the results, please report at # https://www.arin.net/resources/registry/whois/inaccuracy_reporting/ # # Copyright 1997-2022, American Registry for Internet Numbers, Ltd. # NetRange: 162.250.16.0 - 162.250.23.255 CIDR: 162.250.16.0/21 NetName: RCW NetHandle: NET-162-250-16-0-1 Parent: NET162 (NET-162-0-0-0-0) NetType: Direct Allocation OriginAS: AS39938 Organization: River Canyon Wireless (RE-27) RegDate: 2013-12-12 Updated: 2013-12-12 Ref: https://rdap.arin.net/registry/ip/162.250.16.0 OrgName: River Canyon Wireless OrgId: RE-27 Address: 611 S. Main City: Moab StateProv: UT PostalCode: 84532 Country: US RegDate: 2012-02-06 Updated: 2019-06-26 Ref: https://rdap.arin.net/registry/entity/RE-27 OrgNOCHandle: HICKM57-ARIN OrgNOCName: Hickman, Ryan OrgNOCPhone: +1-435-259-6763 OrgNOCEmail: Ryan@Royceselectronics.com OrgNOCRef: https://rdap.arin.net/registry/entity/HICKM57-ARIN OrgTechHandle: HICKM57-ARIN OrgTechName: Hickman, Ryan OrgTechPhone: +1-435-259-6763 OrgTechEmail: Ryan@Royceselectronics.com OrgTechRef: https://rdap.arin.net/registry/entity/HICKM57-ARIN OrgAbuseHandle: COLCO8-ARIN OrgAbuseName: Colcord, Bill OrgAbusePhone: +1-435-259-6763 OrgAbuseEmail: bill.c@rivercanyonwireless.com OrgAbuseRef: https://rdap.arin.net/registry/entity/COLCO8-ARIN # # ARIN WHOIS data and services are subject to the Terms of Use # available at: https://www.arin.net/resources/registry/whois/tou/ # # If you see inaccuracies in the results, please report at # https://www.arin.net/resources/registry/whois/inaccuracy_reporting/ # # Copyright 1997-2022, American Registry for Internet Numbers, Ltd. # pi@raspberrypi:~ $ pi@raspberrypi:~ $ The Raspberry Pi OS has all of the programs needed to compile "thttpd" already installed since their mission is computer programming. However Ubuntu is designed for normal computer use and does not have the files already installed to compile computer programs. Programs that need to be added to Ubuntu for "thttpd" to compile: Geany - A fast and lightweight IDE using GTK+ - Developer Tools → IDEs - ubuntu-hirsute-universe, download size: 1 MB. (" sudo apt install geany " # two 1 MB files, icon looks like a little round tea pot.) frank@frank-desktop:~$ frank@frank-desktop:~$ sudo apt install gcc make make-doc autoconf automake libtool flex bison gcc-doc gcc-10-doc gcc-10-locales glibc-doc whois ### frank@frank-desktop:~$ "freedom.zip" should be installed in the users "home" directory, and unzipped there to give the directory "freedom". It will probably be a good idea to change: "Firefox, Settings, General, Files and Applications, Downloads" to: "Always ask you where to save files", since we are going to be saving several different files to places besides "Downloads". In Ubuntu, I will be using (frank) to reference my "home directory" which you will have to use your own name without the "()"s. Now it is time to change the "$PATH" so the computer can find the "thttpd" program. ***************************** If you are using Ubuntu, or the path is found in /etc/environment: This took me a long time to find but I finally found where to permanently change this in Ubuntu. It is hiding in "/etc" in the file "environment", one could just add: "/home/local/sbin:/home/local/bin:" to the beginning of the line of text. I ran into a lot of new bugs in Ubuntu so have quit using it! frank@frank-desktop:~$ frank@frank-desktop:~$ $PATH ### bash: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin: No such file or directory frank@frank-desktop:~$ frank@frank-desktop:~$ cat /etc/environment ### frank@frank-desktop:~$ If the PATH is in /etc/environment, then use sudo nano to add the following to the beginning of the "path" (inside the quote) /home/local/sbin:/home/local/bin: so the line will begin like: "/home/local/sbin:/home/local/bin:/usr/local/sbin:/usr/local/bin:/...." frank@frank-desktop:~$ frank@frank-desktop:~$ sudo nano /etc/environment ### sudo Make your changes and then "control o" to write and "control x" to exit. frank@frank-desktop:~$ frank@frank-desktop:~$ cat /etc/environment ### frank@frank-desktop:~$ Make sure the "path" begins like: "/home/local/sbin:/home/local/bin:/usr/local/sbin:/usr/local/bin:/...." The computer has to be restarted for the new "path" to take effect. Make sure everything you want to save is saved and then you can: *****REBOOT***** frank@frank-desktop:~$ frank@frank-desktop:~$ sudo reboot ### sudo ***************************** When the computer comes back up, go to a terminal and enter: frank@frank-desktop:~$ frank@frank-desktop:~$ $PATH ### frank@frank-desktop:~$ Make sure the "path" begins with: "/home/local/sbin:/home/local/bin:/usr/local/sbin:/usr/local/bin:/...." ***************************** Now back on the Raspberry Pi OS. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ $PATH ### bash: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games: No such file or directory pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # On the Raspberry Pi OS the built in "PATH" is stored in "/etc/profile" on two different lines. One will have to add "/home/local/sbin:/home/local/bin:" to the beginning of the quote. PATH="/usr/local/sbin:/usr/local/bin: ...", to: PATH="/home/local/sbin:/home/local/bin:/usr/local/sbin: ..." pi@raspberrypi:~ $ pi@raspberrypi:~ $ # Make sure the path is right, one will need to reboot to make it active. pi@raspberrypi:~ $ pi@raspberrypi:~ $ reboot ### pi@raspberrypi:~ $ $PATH ### bash: /home/local/sbin:/home/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games: No such file or directory pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ***************************** Another thing I do is: sudo mkdir /fd /hd /sd ### This makes for handy mount points for: floppy drives (USB), hard drives (1 TB, etc.) and sd cards. When one adds a drive to Ubuntu, the bell rings and nothing shows up because it is not mounted. Doing: sudo fdisk -l ### this will show the drives and their partitions. Then it is just: sudo mount /dev/sda2 /hd ### This mounts the second partition of drive "sda". Then one can read the files by: cd /hd/(path or file name) ...### and then where you want to go. This gives a really short path to that drive, instead of "/media/(user-name)/(drive-name)/(file-name)". I think you get the point! ***************************** "thttpd" can actually be installed on almost any "Linux" machine since we compile it for the machine it will be running on. (The actual install is: #1 make clean #2 ./configure #3 make #4 sudo make install .) Since "gcc" is running on the machine, the proper machine code will be generated. ARM processors are not in the program so will complain, but work without any processor optimizations, while most of the older processors should show up OK. These directions should work for almost any processor as long as there is a "gcc" available for that processor. I have included the "thttpd" pages from "Acme.com" for all of the documentation. The last benchmarks were "Web Server Comparisons" Last updated 12jul98. The maximum file size is limited to 2 GB on 32-bit OS's, (2**31 = 2,147,483,647 or 7fff ffff Bytes) so long videos would need to be split into sizes less than 2 GB. On a 64-bit OS (2**63 = 9.223,372,031^18 or 7fff ffff ffff ffff or 9,223,372,031,000,000 Bytes with the trailing zeros being numbers) is the limit. I have actually tested a 5 GigaByte file (5,368,709,120 Bytes) without any problems! "thttpd" used to be the seventh most popular web server. Out of the box, it is read only, but can run CGI programs, which makes it safe to run on the "World Wide Web"! I moved the install from "/usr/local" to "/home/local" since "/home" is the only directory one can keep when installing a new version OS. That way all of your web site will still be intact! The original files go into directories under "/home", and the actual web pages that are served are under "/home/local/www/users/(the original directory name)" so if something happens to that page the original is still safe. This also makes it possible to make changes and then just copy them to the "public_html" link and the new page is active immediately! This is installing thttpd on a Raspberry Pi 400 running 2022-01-28-raspios-bullseye-arm64.zip. Most of the commands can be copied from the install file and pasted to a terminal. A few things will need to be changed but most will be: copy, paste, enter. WWW pages for EVERYONE!!! To reduce the amount of work needed to install thttpd, I have copied the files from Acme.com and made some modifications. These files have been changed in thttpd-2.29, and these are the changes that were made! *****If you expand "thttpd-2.29.tar.gz" these changes will be missing!***** *****These files are in: cd ~/freedom/Acme.com/thttpd-2.29/ #***** The first change in "thttpd-2.29" is in "Makefile.in" by adding the directory "man1", without this a fresh install will fail! In "Makefile.in" copy line 116 and paste it before, and change man8 to man1, and save the file. The result will be: (This file is: "Makefile.in".) 114 115 install-man: 116 -mkdir -p $(DESTDIR)$(MANDIR)/man1 117 -mkdir -p $(DESTDIR)$(MANDIR)/man8 118 $(INSTALL) -m 444 -o bin -g bin thttpd.8 $(DESTDIR)$(MANDIR)/man8 119 The second change in "thttpd-2.29" is in "config.h" where we want to be able to use the "makeweb" program. Here it is making "users" active by copying line 127, adding some extra lines at 130 and pasting the "users" line on line 131, then saving the file. The result will be: (This file is: "config.h".) 126 #ifdef notdef 127 #define TILDE_MAP_1 "users" 128 #define TILDE_MAP_2 "public_html" 129 #endif 130 131 #define TILDE_MAP_1 "users" 132 The third change in "thttpd-2.29" is in "configure" and is to change where all of the data is written from: "/usr/local" to "/home/local" since the only directory that can be saved when changing operating systems (OS's) is the "/home/" directory, all of the others get over written! This change is in "configure" where line 12 is changed from "/usr/local" to "/home/local", giving the following result, then save the file. (This file is: "configure".) 9 10 # Defaults: 11 ac_help= 12 ac_default_prefix=/home/local 13 # Any additions from configure.in: 14 This is the end of the changes in "thttpd-2.29" ***************************** The "manpage path" is different from "$PATH" so that will be taken care of by just: sudo cp -iav /home/local/man/ /usr/local/man/ which will be done after "thttpd" is up and running, also if one is changing OS's. It seems that Raspberry Pi OS does not have a problem here, but Ubuntu still has a problem! If one does an OS change, the other files that need to be changed in "/etc/" are: sudo cp -iav /home/local/sbin/thttpd-extras/thttpd-rotate /etc/cron.daily/thttpd-rotate # or if you are using the os-debug version, sudo cp -iav /home/local/sbin/os-debug/thttpd-rotate /etc/cron.daily/thttpd-rotate # this file needs other programs found in "os-debug" see: "readme.txt" in "os-debug". sudo cp -iav /home/local/sbin/thttpd-extras/rc.local /etc/rc.local # Make sure you don't wipe out a file that might already be there! sudo cp -iav /home/local/sbin/thttpd-extras/thttpd.sh /etc/thttpd.sh # This file pulls in the "thttpd_wrapper" which restarts "thttpd" in 10 seconds. I think that covers all of the changes, and the ones that one would have to make if changing OS's. ***************************** Making Ubuntu OS's on the Raspberry Pi. I usually go to RaspberryPi.org and download the latest version of "Ubuntu 64 bit Desktop" to the directory "Ubuntu", so I have the code available and all ready downloaded. I got the "rpi-imager" program using: frank@frank-desktop:~$ frank@frank-desktop:~$ snap install rpi-imager ### frank@frank-desktop:~$ # or it is in "Ubuntu Software" under "Devices and IoT" as "Raspberry Pi Imager". ***************************** Formatting media for the Raspberry Pi. Anything greater than 32GB needs to be erased so it can have a FAT32 partition on the drive media, using the rpi-imager program. Then installing the OS to the drive. MicroSDHC U1 Cards have a rating of (100 MB/s Read speed, and 10 MB/s Write speed), while microSDXC U3 Cards have a rating of (100MB/s Read speed, and 50MB/s Write speed), 5 times faster on the writes. My 128GB microSDXC U3 Card was rapidly reaching max, and I had several "Seagate, Backup Plus Slim 1TB USB 3.0 drives, (~ 4 3/8" x 3" x 1/2"), of course the erase program failed! But I found an easy solution! The simple solution was using "fdisk" to set the drive up so "rpi-imager" could use it. For formatting drives greater than 512 GB, see: "2021-09-07-Formatting-Drives-Greater-Than-512GB.txt". ***************************** Some packages that I added: First run "sudo apt update" to make sure everrything is uo to date. pi@raspberrypi:~ $ sudo apt update ### Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease Reading package lists... Done Building dependency tree... Done Reading state information... Done 1 package can be upgraded. Run 'apt list --upgradable' to see it. pi@raspberrypi:~ $ sudo apt list --upgradable Listing... Done libtiff5/stable 4.2.0-1+deb11u1 armhf [upgradable from: 4.2.0-1] N: There is 1 additional version. Please use the '-a' switch to see it pi@raspberrypi:~ $ sudo apt list --upgradable -a ### Listing... Done libtiff5/stable 4.2.0-1+deb11u1 armhf [upgradable from: 4.2.0-1] libtiff5/now 4.2.0-1 armhf [installed,upgradable to: 4.2.0-1+deb11u1] pi@raspberrypi:~ $ sudo apt install whois ### Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: whois 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 71.4 kB of archives. After this operation, 267 kB of additional disk space will be used. Get:1 http://raspbian.phirephly.design/raspbian bullseye/main armhf whois armhf 5.5.10 [71.4 kB] Fetched 71.4 kB in 2s (38.7 kB/s) Selecting previously unselected package whois. (Reading database ... 176650 files and directories currently installed.) Preparing to unpack .../whois_5.5.10_armhf.deb ... Unpacking whois (5.5.10) ... Setting up whois (5.5.10) ... Processing triggers for man-db (2.9.4-2) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ I did not know if all of "Geany" was installed so I added this: pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo apt install geany geany-common libvte9 doc-base libuuid-perl libvte-common libyaml-tiny-perl ### Reading package lists... Done Building dependency tree... Done Reading state information... Done geany is already the newest version (1.37.1-2+rpt1). geany-common is already the newest version (1.37.1-2+rpt1). geany-common set to manually installed. Suggested packages: dhelp | dwww | dochelp | doc-central | yelp | khelpcenter The following NEW packages will be installed: doc-base libuuid-perl libvte-common libvte9 libyaml-tiny-perl 0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded. Need to get 1,110 kB of archives. After this operation, 2,209 kB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libuuid-perl armhf 0.28-1+b2 [18.3 kB] Get:2 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libyaml-tiny-perl all 1.73-1 [32.3 kB] Get:3 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf doc-base all 0.11.1 [102 kB] Get:4 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libvte-common all 1:0.28.2-6 [401 kB] Get:5 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libvte9 armhf 1:0.28.2-6+b1 [556 kB] Fetched 1,110 kB in 8s (137 kB/s) Selecting previously unselected package libuuid-perl. (Reading database ... 176673 files and directories currently installed.) Preparing to unpack .../libuuid-perl_0.28-1+b2_armhf.deb ... Unpacking libuuid-perl (0.28-1+b2) ... Selecting previously unselected package libyaml-tiny-perl. Preparing to unpack .../libyaml-tiny-perl_1.73-1_all.deb ... Unpacking libyaml-tiny-perl (1.73-1) ... Selecting previously unselected package doc-base. Preparing to unpack .../doc-base_0.11.1_all.deb ... Unpacking doc-base (0.11.1) ... Selecting previously unselected package libvte-common. Preparing to unpack .../libvte-common_1%3a0.28.2-6_all.deb ... Unpacking libvte-common (1:0.28.2-6) ... Selecting previously unselected package libvte9. Preparing to unpack .../libvte9_1%3a0.28.2-6+b1_armhf.deb ... Unpacking libvte9 (1:0.28.2-6+b1) ... Setting up libvte-common (1:0.28.2-6) ... Setting up libuuid-perl (0.28-1+b2) ... Setting up libvte9 (1:0.28.2-6+b1) ... Setting up libyaml-tiny-perl (1.73-1) ... Setting up doc-base (0.11.1) ... Registering 30 doc-base files... Processing triggers for man-db (2.9.4-2) ... Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u2) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo apt install dochelp ### Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: dochelp 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 552 kB of archives. After this operation, 1,838 kB of additional disk space will be used. Get:1 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf dochelp armhf 0.1.8 [552 kB] Fetched 552 kB in 4s (131 kB/s) Selecting previously unselected package dochelp. (Reading database ... 176846 files and directories currently installed.) Preparing to unpack .../dochelp_0.1.8_armhf.deb ... Unpacking dochelp (0.1.8) ... Setting up dochelp (0.1.8) ... Processing triggers for hicolor-icon-theme (0.17-2) ... Processing triggers for gnome-menus (3.36.0-1) ... Processing triggers for man-db (2.9.4-2) ... Processing triggers for mailcap (3.69) ... Processing triggers for desktop-file-utils (0.26-1) ... pi@raspberrypi:~ $ The "Mousepad" text editor does not have a spell checker, so I added "Pluma" which seems to be about the same thing but with a spell checker! pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo apt install pluma ### Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: gir1.2-gtksource-3.0 gir1.2-peas-1.0 gir1.2-pluma-1.0 libpeas-1.0-0 libpeas-common libpython3.8 libpython3.8-minimal libpython3.8-stdlib mate-desktop-common pluma-common The following NEW packages will be installed: gir1.2-gtksource-3.0 gir1.2-peas-1.0 gir1.2-pluma-1.0 libpeas-1.0-0 libpeas-common libpython3.8 libpython3.8-minimal libpython3.8-stdlib mate-desktop-common pluma pluma-common 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. Need to get 6,740 kB of archives. After this operation, 48.6 MB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf gir1.2-gtksource-3.0 armhf 3.24.11-2 [28.3 kB] Get:2 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpeas-common all 1.28.0-2 [53.2 kB] Get:3 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpython3.8-minimal armhf 3.8.7-1 [753 kB] Get:4 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpython3.8-stdlib armhf 3.8.7-1 [1,647 kB] Get:5 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpython3.8 armhf 3.8.7-1 [1,344 kB] Get:6 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpeas-1.0-0 armhf 1.28.0-2 [56.6 kB] Get:7 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf gir1.2-peas-1.0 armhf 1.28.0-2 [12.4 kB] Get:8 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf gir1.2-pluma-1.0 armhf 1.24.1-1 [29.8 kB] Get:9 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf mate-desktop-common all 1.24.1-2 [495 kB] Get:10 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf pluma-common all 1.24.1-1 [1,938 kB] Get:11 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf pluma armhf 1.24.1-1 [383 kB] Fetched 6,740 kB in 38s (178 kB/s) Selecting previously unselected package gir1.2-gtksource-3.0:armhf. (Reading database ... 176861 files and directories currently installed.) Preparing to unpack .../00-gir1.2-gtksource-3.0_3.24.11-2_armhf.deb ... Unpacking gir1.2-gtksource-3.0:armhf (3.24.11-2) ... Selecting previously unselected package libpeas-common. Preparing to unpack .../01-libpeas-common_1.28.0-2_all.deb ... Unpacking libpeas-common (1.28.0-2) ... Selecting previously unselected package libpython3.8-minimal:armhf. Preparing to unpack .../02-libpython3.8-minimal_3.8.7-1_armhf.deb ... Unpacking libpython3.8-minimal:armhf (3.8.7-1) ... Selecting previously unselected package libpython3.8-stdlib:armhf. Preparing to unpack .../03-libpython3.8-stdlib_3.8.7-1_armhf.deb ... Unpacking libpython3.8-stdlib:armhf (3.8.7-1) ... Selecting previously unselected package libpython3.8:armhf. Preparing to unpack .../04-libpython3.8_3.8.7-1_armhf.deb ... Unpacking libpython3.8:armhf (3.8.7-1) ... Selecting previously unselected package libpeas-1.0-0:armhf. Preparing to unpack .../05-libpeas-1.0-0_1.28.0-2_armhf.deb ... Unpacking libpeas-1.0-0:armhf (1.28.0-2) ... Selecting previously unselected package gir1.2-peas-1.0:armhf. Preparing to unpack .../06-gir1.2-peas-1.0_1.28.0-2_armhf.deb ... Unpacking gir1.2-peas-1.0:armhf (1.28.0-2) ... Selecting previously unselected package gir1.2-pluma-1.0. Preparing to unpack .../07-gir1.2-pluma-1.0_1.24.1-1_armhf.deb ... Unpacking gir1.2-pluma-1.0 (1.24.1-1) ... Selecting previously unselected package mate-desktop-common. Preparing to unpack .../08-mate-desktop-common_1.24.1-2_all.deb ... Unpacking mate-desktop-common (1.24.1-2) ... Selecting previously unselected package pluma-common. Preparing to unpack .../09-pluma-common_1.24.1-1_all.deb ... Unpacking pluma-common (1.24.1-1) ... Selecting previously unselected package pluma. Preparing to unpack .../10-pluma_1.24.1-1_armhf.deb ... Unpacking pluma (1.24.1-1) ... Setting up libpython3.8-minimal:armhf (3.8.7-1) ... Setting up libpeas-common (1.28.0-2) ... Setting up mate-desktop-common (1.24.1-2) ... Setting up gir1.2-gtksource-3.0:armhf (3.24.11-2) ... Setting up pluma-common (1.24.1-1) ... Setting up libpython3.8-stdlib:armhf (3.8.7-1) ... Setting up gir1.2-pluma-1.0 (1.24.1-1) ... Setting up libpython3.8:armhf (3.8.7-1) ... Setting up libpeas-1.0-0:armhf (1.28.0-2) ... Setting up gir1.2-peas-1.0:armhf (1.28.0-2) ... Processing triggers for man-db (2.9.4-2) ... Processing triggers for mailcap (3.69) ... Processing triggers for desktop-file-utils (0.26-1) ... Processing triggers for hicolor-icon-theme (0.17-2) ... Processing triggers for gnome-menus (3.36.0-1) ... Processing triggers for libglib2.0-0:armhf (2.66.8-1) ... Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u2) ... Setting up pluma (1.24.1-1) ... pi@raspberrypi:~ $ At this point one can do: "df -h" to see how much disk space is being used, and "date" to see how long it takes to do the process of installing "thttpd" pi@raspberrypi:~ $ pi@raspberrypi:~ $ df -h ### Filesystem Size Used Avail Use% Mounted on /dev/root 29G 8.1G 20G 30% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 0 215M 0% /dev/shm tmpfs 86M 1.1M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 32K 43M 1% /run/user/1000 pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ date ### Sat 02 Apr 2022 04:30:42 PM MDT pi@raspberrypi:~ $ pi@raspberrypi:~ $ ***************************** Users and groups that need to be added for "thttpd" to compile. In Ubuntu, open a "terminal" full screen, (click on the 9 dots icon in the left "Favorites" column, scroll to the terminal icon, right click and "Add to Favorites" to put it in the left "Favorites" column). ***************************** ***************************** ***************************** ### This is the beginning of the "cut and paste" process! pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### The "~" shows that we are in the "home directory of 'pi'", from the beginning of the line, (/home/pi/). pi@raspberrypi:~ $ pi@raspberrypi:~ $ $PATH ### bash: /home/local/sbin:/home/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games: No such file or directory pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /etc ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cat group ### (we are looking for a group "www") root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi fax:x:21: voice:x:22: cdrom:x:24:pi floppy:x:25: tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi sasl:x:45: plugdev:x:46:pi staff:x:50: games:x:60:pi users:x:100:pi nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: systemd-coredump:x:996: pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Since there is no group "www" with the user "(pi)" we will need to add this, getting the directions by using "addgroup --help" to see our options. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ addgroup --help ### adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a normal user adduser --system [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--gecos GECOS] [--group | --ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a system user adduser --group [--gid ID] GROUP addgroup [--gid ID] GROUP Add a user group addgroup --system [--gid ID] GROUP Add a system group adduser USER GROUP Add an existing user to an existing group general options: --quiet | -q don't give process information to stdout --force-badname allow usernames which do not match the NAME_REGEX configuration variable --help | -h usage message --version | -v version number and copyright --conf | -c FILE use FILE as configuration file pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # From this we get the commands we need to add a system group "www" and make "(pi)" a member of this group. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ********* pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Add a system group pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ********* pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # adduser USER GROUP pi@raspberrypi:/etc $ # Add an existing user to an existing group pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ********* pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # We need to add a system group "www" and make "(pi)" a member of this group. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo addgroup --system www ### sudo Adding group `www' (GID 124) ... Done. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ********* pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo adduser pi www ### sudo Adding user `pi' to group `www' ... Adding user pi to group www Done. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cat group ### root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi fax:x:21: voice:x:22: cdrom:x:24:pi floppy:x:25: tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi sasl:x:45: plugdev:x:46:pi staff:x:50: games:x:60:pi users:x:100:pi nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: systemd-coredump:x:996: www:x:124:pi pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Success, Group "www" has a user "(pi)" and is also less than 1000, (the number will probably be different than 124). pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # The idea is to use the "users" accounts as if they were the header choices that are normally at the top of a web page. For my site, I have: ac0xl, delinquent-accounts, documents, downloads, freedom, memes, music, notices, pictures, rome, searles-sav-on-propane, va, and videos. The files: favicon.ico, readme.txt, and robots.txt and sitemap.xml (if you are using the IP Address option) are web site files that get added later. The idea is to make a list of the things you want on your web site and type them up so you can select the name and then copy and paste it later when all of the users get added. This will save a lot of typing and typing mistakes! pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd ~/freedom/Acme.com/thttpd-2.29 ### pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # Now that your list of ideas for your web site is growing, it is time to start the process of installing "thttpd". The first thing to do is make sure the above files in "thttpd-2.29" have all been changed. If not, make the changes and check again. All of these commands will be made in the terminal window under: "/home/(pi)/freedom/Acme.come/thttpd-2.29" pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # This equates to "~/freedom/Acme.com/thttpd-2.29" pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ ls ### aclocal.m4 config.log extras INSTALL Makefile.in mime_types.h scripts thttpd.8 TODO cgi-bin config.status fdwatch.c install-sh match.c mime_types.txt strerror.c thttpd.c version.h cgi-src config.sub fdwatch.h libhttpd.c match.h mmc.c tdate_parse.c thttpd.o config.cache configure fdwatch.o libhttpd.h match.o mmc.h tdate_parse.h timers.c config.guess configure.in FILES libhttpd.o mime_encodings.h mmc.o tdate_parse.o timers.h config.h contrib index.html Makefile mime_encodings.txt README thttpd timers.o pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # at which point you should see the above files and one called "INSTALL", which begins with: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 1 To build: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 2 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 3 % ./configure pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 4 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 5 Edit config.h to change the configuration options if necessary. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 6 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 7 % make pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 8 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 9 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 10 To install: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 11 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 12 % make install pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 13 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 14 Edit one of your system rc files to run thttpd at boot time. Do NOT pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 15 run it from inetd, that setup is inefficient so thttpd doesn't support it. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # 16 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ***** Since this program has been run before, the first command needs to be: "make clean", to clear all of the old data.***** pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # If you have run the program before, or have had errors, at the terminal prompt, type in: "make clean" without the quotes, to clean the old files. (DO IT!). pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # The "%" is the computer prompt: type in: ./configure # and then a return. This should generate a few pages of text. The end should look something like: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ***** Starting the compile. ***** pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # make clean pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # make: *** No rule to make target 'clean'. Stop. # Or a short list of files and directories that have been removed. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # *************** pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ make clean ### Step one. for i in cgi-src extras ; do ( \ cd $i ; \ pwd ; \ make clean \ ) ; done /home/pi/freedom/Acme.com/thttpd-2.29/cgi-src make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' rm -f *.o redirect ssi phf make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' /home/pi/freedom/Acme.com/thttpd-2.29/extras make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' rm -f *.o makeweb htpasswd make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' rm -f thttpd thttpd.o libhttpd.o fdwatch.o mmc.o timers.o match.o tdate_parse.o mime_encodings.h mime_types.h pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ ./configure ### Step two. loading cache ./config.cache checking host system type... Invalid configuration `aarch64-pc-linux-gnuoldld': machine `aarch64-pc' not recognized checking target system type... Invalid configuration `aarch64-pc-linux-gnuoldld': machine `aarch64-pc' not recognized checking build system type... Invalid configuration `aarch64-pc-linux-gnuoldld': machine `aarch64-pc' not recognized checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking gcc version... (cached) 10 checking how to link static binaries... (cached) unknown checking for __progname... (cached) yes checking how to run the C preprocessor... (cached) gcc -E checking for fcntl.h... (cached) yes checking for grp.h... (cached) yes checking for memory.h... (cached) yes checking for paths.h... (cached) yes checking for poll.h... (cached) yes checking for sys/poll.h... (cached) yes checking for sys/devpoll.h... (cached) no checking for sys/event.h... (cached) no checking for osreldate.h... (cached) no checking whether time.h and sys/time.h may both be included... (cached) yes checking for dirent.h that defines DIR... (cached) yes checking for opendir in -ldir... (cached) no checking for /usr/local/v6/lib... no checking for gethostbyname... (cached) yes checking for socket... (cached) yes checking for main in -linet6... (cached) no checking for crypt... (cached) no checking for crypt in -lcrypt... (cached) yes checking for hstrerror... (cached) yes checking for strerror... (cached) yes checking for waitpid... (cached) yes checking for vsnprintf... (cached) yes checking for daemon... (cached) yes checking for setsid... (cached) yes checking for setlogin... (cached) no checking for getaddrinfo... (cached) yes checking for getnameinfo... (cached) yes checking for gai_strerror... (cached) yes checking for kqueue... (cached) no checking for sigset... (cached) yes checking for atoll... (cached) yes checking for unistd.h... (cached) yes checking for getpagesize... (cached) yes checking for working mmap... (cached) yes checking for select... (cached) yes checking for poll... (cached) yes checking if struct tm has tm_gmtoff member... (cached) yes checking if int64_t exists... (cached) yes checking if socklen_t exists... (cached) yes checking whether make sets ${MAKE}... (cached) yes checking for a BSD compatible install... (cached) /usr/bin/install -c creating ./config.status creating Makefile creating cgi-src/Makefile creating extras/Makefile pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ******************* ### Step three. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # The next step: make # will generate more pages and should end with something like this: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ make ### Step three. gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c thttpd.c thttpd.c: In function ‘main’: thttpd.c:611:12: warning: implicit declaration of function ‘sigset’; did you mean ‘isset’? [-Wimplicit-function-declaration] 611 | (void) sigset( SIGTERM, handle_term ); | ^~~~~~ | isset rm -f mime_encodings.h sed < mime_encodings.txt > mime_encodings.h \ -e 's/#.*//' -e 's/[ ]*$//' -e '/^$/d' \ -e 's/[ ][ ]*/", 0, "/' -e 's/^/{ "/' -e 's/$/", 0 },/' rm -f mime_types.h sed < mime_types.txt > mime_types.h \ -e 's/#.*//' -e 's/[ ]*$//' -e '/^$/d' \ -e 's/[ ][ ]*/", 0, "/' -e 's/^/{ "/' -e 's/$/", 0 },/' gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c libhttpd.c libhttpd.c: In function ‘cgi_child’: libhttpd.c:3557:12: warning: implicit declaration of function ‘sigset’; did you mean ‘isset’? [-Wimplicit-function-declaration] 3557 | (void) sigset( SIGPIPE, SIG_DFL ); | ^~~~~~ | isset libhttpd.c: In function ‘ls’: libhttpd.c:2846:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] 2846 | (void) strncpy( nameptrs[nnames], de->d_name, namlen ); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ libhttpd.c:64:25: note: length computed here 64 | # define NAMLEN(dirent) strlen((dirent)->d_name) | ^~~~~~~~~~~~~~~~~~~~~~~~ libhttpd.c:2845:12: note: in expansion of macro ‘NAMLEN’ 2845 | namlen = NAMLEN(de); | ^~~~~~ gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c fdwatch.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c mmc.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c timers.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c match.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c tdate_parse.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -o thttpd thttpd.o libhttpd.o fdwatch.o mmc.o timers.o match.o tdate_parse.o -lcrypt for i in cgi-src extras ; do ( \ cd $i ; \ pwd ; \ make \ WEBDIR=/home/local/www \ CGIBINDIR=/home/local/www/cgi-bin \ MANDIR=/home/local/man \ WEBGROUP=www \ ) ; done /home/pi/freedom/Acme.com/thttpd-2.29/cgi-src make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -c redirect.c gcc redirect.o -lcrypt -o redirect gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -c ssi.c ssi.c: In function ‘get_filename.constprop’: ssi.c:183:9: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] 183 | (void) strncpy( fn, filename, fl - vl ); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ssi.c:169:10: note: length computed here 169 | fl = strlen( filename ); | ^~~~~~~~~~~~~~~~~~ gcc ssi.o ../match.o -lcrypt -o ssi gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -c phf.c gcc phf.o -lcrypt -o phf make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' /home/pi/freedom/Acme.com/thttpd-2.29/extras make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -DWEBDIR=\"/home/local/www\" -c makeweb.c gcc makeweb.o -o makeweb -lcrypt gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -DWEBDIR=\"/home/local/www\" -c htpasswd.c gcc htpasswd.o -o htpasswd -lcrypt make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ******************* ### Step four. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # The last step demands being "root" so it is: sudo make install # which should end with something like this: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ sudo make install ### sudo Step four. mkdir -p /home/local/sbin /usr/bin/install -c -m 555 -o bin -g bin thttpd /home/local/sbin mkdir -p /home/local/man/man1 mkdir -p /home/local/man/man8 /usr/bin/install -c -m 444 -o bin -g bin thttpd.8 /home/local/man/man8 for i in cgi-src extras ; do ( \ cd $i ; \ pwd ; \ make \ WEBDIR=/home/local/www \ CGIBINDIR=/home/local/www/cgi-bin \ MANDIR=/home/local/man \ WEBGROUP=www \ install \ ) ; done /home/pi/freedom/Acme.com/thttpd-2.29/cgi-src make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' mkdir -p /home/local/www/cgi-bin rm -f /home/local/www/cgi-bin/redirect cp redirect /home/local/www/cgi-bin/redirect rm -f /home/local/man/man8/redirect.8 cp redirect.8 /home/local/man/man8/redirect.8 rm -f /home/local/www/cgi-bin/ssi cp ssi /home/local/www/cgi-bin/ssi rm -f /home/local/man/man8/ssi.8 cp ssi.8 /home/local/man/man8/ssi.8 rm -f /home/local/www/cgi-bin/phf cp phf /home/local/www/cgi-bin/phf make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' /home/pi/freedom/Acme.com/thttpd-2.29/extras make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' rm -f /home/local/sbin/makeweb /home/local/sbin/htpasswd /home/local/sbin/syslogtocern cp makeweb /home/local/sbin/makeweb chgrp www /home/local/sbin/makeweb chmod 2755 /home/local/sbin/makeweb cp htpasswd /home/local/sbin/htpasswd cp syslogtocern /home/local/sbin/syslogtocern rm -f /home/local/man/man1/makeweb.1 cp makeweb.1 /home/local/man/man1/makeweb.1 rm -f /home/local/man/man1/htpasswd.1 cp htpasswd.1 /home/local/man/man1/htpasswd.1 rm -f /home/local/man/man8/syslogtocern.8 cp syslogtocern.8 /home/local/man/man8/syslogtocern.8 make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # Some errors will be reported since the ARM names are not in its database and will not be optimized for the processor, but don't worry. If the file ends with an error report, look back up a few lines and it will probably say what the problem was that created the error. The easy way is to just set up this page along with a terminal screen and then copy the command and paste it onto the terminal command line. This is how I will be testing the install file, and making a copy of it if you need it. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ***************************** pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ ### "thttpd" is now installed. raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ ### The next thing is to add directories "logs" and "users" to the "www" directory. raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ cd /home/local/www ### pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ls -al ### total 12 drwxr-xr-x 3 root root 4096 Mar 16 23:27 . drwxr-xr-x 5 root root 4096 Mar 16 23:27 .. drwxr-xr-x 2 root root 4096 Mar 16 23:27 cgi-bin ### pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ sudo mkdir -v logs users ### sudo mkdir: created directory 'logs' mkdir: created directory 'users' pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ls -al ### total 20 drwxr-xr-x 5 root root 4096 Mar 16 23:33 . drwxr-xr-x 5 root root 4096 Mar 16 23:27 .. drwxr-xr-x 2 root root 4096 Mar 16 23:27 cgi-bin drwxr-xr-x 2 root root 4096 Mar 16 23:33 logs drwxr-xr-x 2 root root 4096 Mar 16 23:33 users pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ # ********* We need this! pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ### ***** Now we need to change the permissions on "users" so those in the "www" group can write to this directory!***** pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ sudo chmod -v 775 users ### sudo mode of 'users' changed from 0755 (rwxr-xr-x) to 0775 (rwxrwxr-x) pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ls -al ### total 20 drwxr-xr-x 5 root www 4096 Mar 16 23:33 . drwxr-xr-x 5 root root 4096 Mar 16 23:27 .. drwxr-xr-x 2 root www 4096 Mar 16 23:27 cgi-bin drwxr-xr-x 2 root www 4096 Mar 16 23:33 logs drwxrwxr-x 2 root www 4096 Mar 16 23:33 users ### Make sure users is now 0775 (drwxrwxr-x). pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ # ******************* pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ### Now we go back one level so we can change the owner and group on everything in the "www" directory from "root:root" to "root:www". pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ cd ../ ### pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ sudo chown -vR root:www www ### sudo changed ownership of 'www/cgi-bin/ssi' from root:root to root:www changed ownership of 'www/cgi-bin/phf' from root:root to root:www changed ownership of 'www/cgi-bin/redirect' from root:root to root:www changed ownership of 'www/cgi-bin' from root:root to root:www changed ownership of 'www/logs' from root:root to root:www changed ownership of 'www/users' from root:root to root:www changed ownership of 'www' from root:root to root:www pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ ls -al ### total 20 drwxr-xr-x 5 root root 4096 Mar 16 23:27 . drwxr-xr-x 4 root root 4096 Mar 16 23:27 .. drwxr-xr-x 4 root root 4096 Mar 16 23:27 man drwxr-xr-x 2 root root 4096 Mar 16 23:27 sbin drwxr-xr-x 5 root www 4096 Mar 16 23:33 www pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ # ********* pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ ### We now change back to the "(pi)" home directory and are going to add a "user" that belongs in the "www" group, from the help on "adduser" we see what we have to type. pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ cd ### pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ addgroup --help ### adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a normal user adduser --system [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--gecos GECOS] [--group | --ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a system user adduser --group [--gid ID] GROUP addgroup [--gid ID] GROUP Add a user group addgroup --system [--gid ID] GROUP Add a system group adduser USER GROUP Add an existing user to an existing group general options: --quiet | -q don't give process information to stdout --force-badname allow usernames which do not match the NAME_REGEX configuration variable --help | -h usage message --version | -v version number and copyright --conf | -c FILE use FILE as configuration file pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### For an example, I will add "ac0xl", my ham radio call sign, as a user for my website. One can think of these as different tabs or categories on your website. Use a different password for these "users" than the one you use for "(pi)" for more security. The information it asks for was for the "finger" program which most computers don't run for security reasons. I usually just use the "user" for the name and leave the rest blank. (This time I will use my real data.) pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --add_extra_groups ac0xl ### sudo Adding user `ac0xl' ... Adding new group `ac0xl' (1001) ... Adding new user `ac0xl' (1001) with group `ac0xl' ... Creating home directory `/home/ac0xl' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for ac0xl Enter the new value, or press ENTER for the default Full Name []: Frank Anderson Room Number []: 651 N Broadway Work Phone []: 435-210-0710 Home Phone []: 970-424-1451 Other []: Green River UTah 84525-0615 Is the information correct? [Y/n] y Adding new user `ac0xl' to extra groups ... Adding user `ac0xl' to group `dialout' ... Adding user `ac0xl' to group `cdrom' ... Adding user `ac0xl' to group `floppy' ... Adding user `ac0xl' to group `audio' ... Adding user `ac0xl' to group `video' ... Adding user `ac0xl' to group `plugdev' ... Adding user `ac0xl' to group `users' ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cat /etc/group ### root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: systemd-coredump:x:996: www:x:124:pi ac0xl:x:1001: pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### adduser USER GROUP pi@raspberrypi:~ $ # Add an existing user to an existing group pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser ac0xl www ### sudo adduser XXXX to group yyy. Adding user `ac0xl' to group `www' ... Adding user ac0xl to group www Done. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cat /etc/group ### root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: systemd-coredump:x:996: www:x:124:pi,ac0xl ac0xl:x:1001: pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # ************** pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home ### pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ ls -al ### total 20 drwxr-xr-x 5 root root 4096 Mar 16 23:44 . drwxr-xr-x 18 root root 4096 Jan 27 22:21 .. drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 16 23:44 ac0xl drwxr-xr-x 5 root root 4096 Mar 16 23:27 local drwxr-xr-x 18 pi pi 4096 Mar 16 22:34 pi pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ # ***** pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su ac0xl ### we have to change to user "(ac0xl)" Password: ac0xl@raspberrypi:/home $ ac0xl@raspberrypi:/home $ # here we are still in "/home", and the user is now "ac0xl". ac0xl@raspberrypi:/home $ ac0xl@raspberrypi:/home $ cd ### ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ # we are now in "(ac0xl)" ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 16 23:44 . drwxr-xr-x 5 root root 4096 Mar 16 23:44 .. -rw-r--r-- 1 ac0xl ac0xl 220 Mar 16 23:44 .bash_logout -rw-r--r-- 1 ac0xl ac0xl 3523 Mar 16 23:44 .bashrc -rw-r--r-- 1 ac0xl ac0xl 1670 Mar 16 23:44 .mkshrc -rw-r--r-- 1 ac0xl ac0xl 807 Mar 16 23:44 .profile ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ touch .1001 ### Since the computer uses numbers instead of names this is one way to know what number a user is. The period before the number will keep it from copying to the web page since it makes the file hidden. ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ # if makeweb does not work (no permission) did you?: sudo chmod -v 0775 /home/local/www/users #? and it actually changed the permissions to (drwxrwxr-x)? ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/ac0xl Created symbolic link /home/ac0xl/public_html ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ls -al ### total 28 drwxr-xr-x 2 ac0xl www 4096 Mar 17 01:48 . drwxr-xr-x 5 root root 4096 Mar 16 23:44 .. -rw-r--r-- 1 ac0xl www 0 Mar 16 23:57 .1001 -rw------- 1 ac0xl www 410 Mar 17 00:04 .bash_history -rw-r--r-- 1 ac0xl www 220 Mar 16 23:44 .bash_logout -rw-r--r-- 1 ac0xl www 3523 Mar 16 23:44 .bashrc -rw-r--r-- 1 ac0xl www 1670 Mar 16 23:44 .mkshrc -rw-r--r-- 1 ac0xl www 807 Mar 16 23:44 .profile lrwxrwxrwx 1 ac0xl www 27 Mar 17 01:48 public_html -> /home/local/www/users/ac0xl ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ exit ### changing back to (pi) and where we were. exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ cd /home/local/www/users ### pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ls -al ### total 12 drwxrwxr-x 3 root www 4096 Mar 16 23:48 . drwxr-xr-x 5 root www 4096 Mar 16 21:33 .. drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 16 23:48 ac0xl pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ### Since I want to be able to access "ac0xl" from "pi" I will change the group on "ac0xl" to "www". pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # ***** pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ sudo chown -v ac0xl:www ac0xl ### sudo changed ownership of 'ac0xl' from ac0xl:ac0xl to ac0xl:www pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # ***** pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ls -al ### total 12 drwxrwxr-x 3 root www 4096 Mar 16 23:48 . drwxr-xr-x 5 root www 4096 Mar 16 21:33 .. drwxr-xr-x 2 ac0xl www 4096 Mar 16 23:48 ac0xl pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # So far so good! We now have a main www user installed. pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # ***************************** pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ### I liked the "anvil_thttpd.gif" on the Acme.com website and chose it as my favicon.ico by renaming a copy to favicon.ico. An "anvil" is built to be hammered on without failing, and "thttpd" is built to take a hammering without failing. It is bullet proof! When you look at your logs you will see how "thttpd" will block all sorts of attempts to break your website! You will also get an idea of things to avoid on your website. pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # ***** pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ cd /home/local/sbin ### pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ ls -al ### total 164 drwxr-xr-x 2 root root 4096 Mar 16 21:27 . drwxr-xr-x 5 root root 4096 Mar 16 21:27 .. -rwxr-xr-x 1 root root 15296 Mar 16 21:27 htpasswd -rwxr-sr-x 1 root www 14504 Mar 16 21:27 makeweb -r-xr-xr-x 1 root root 2878 Mar 16 21:27 syslogtocern -r-xr-xr-x 1 bin bin 121272 Mar 16 21:27 thttpd pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ # ***** pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ cd ~/freedom ### (The directory "freedom" should be in "/home/(pi)/"). pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ ls -al ### total 560 drwxr-xr-x 6 pi pi 4096 Sep 13 2021 . drwxr-xr-x 19 pi pi 4096 Mar 17 10:53 .. -r--r--r-- 1 pi pi 32014 Jan 8 2020 2010Website.pdf -r--r--r-- 1 pi pi 11024 Jan 8 2020 2019-09-05-Project.txt -r--r--r-- 1 pi pi 11941 Jan 8 2020 2019-10-01-website.txt -r--r--r-- 1 pi pi 6365 Jan 8 2020 2019-11-26-web-server.txt -r--r--r-- 1 pi pi 21340 Jan 8 2020 2019-12-06-Google-Search-Is-Broken.txt -r--r--r-- 1 pi pi 12787 Mar 18 2021 2020-07-17-thttpd.txt -r--r--r-- 1 pi pi 17955 Sep 10 2021 2021-09-01.txt -r--r--r-- 1 pi pi 17955 Sep 10 2021 2021-09-01.txt~ -r--r--r-- 1 pi pi 18393 Sep 11 2021 2021-09-07-Formatting-Drives-Greater-Than-512GB.txt -r--r--r-- 1 pi pi 5521 Sep 11 2021 2021-09-10-Install-thttpd-Raspberry-Pi-OS.txt -r--r--r-- 1 pi pi 5521 Sep 11 2021 2021-09-10-Install-thttpd-Raspberry-Pi-OS.txt~ -r--rw-r-- 1 pi pi 90984 Sep 13 2021 2021-09-13-Install-thttpd-Pi-400-ubuntu-21.04-desktop-arm64+raspi.txt -r--rw-r-- 1 pi pi 90984 Sep 13 2021 2021-09-13-Install-thttpd-Pi-400-ubuntu-21.04-desktop-arm64+raspi.txt~ drwxr-xr-x 22 pi pi 4096 Sep 1 2021 Acme.com -r--r--r-- 1 pi pi 140 Aug 23 2021 environment -r--r--r-- 1 pi pi 107 Aug 23 2021 environment~ drwxr-xr-x 4 pi pi 4096 Aug 17 2021 'HTML Sampler_files' -r--r--r-- 1 pi pi 26907 Aug 16 2021 'HTML Sampler.html' drwxr-xr-x 2 pi pi 4096 Aug 31 2021 os-debug -r--r--r-- 1 pi pi 40532 Sep 13 2021 readme.txt -r--r--r-- 1 pi pi 80728 Sep 8 2021 rfc3875-CGI.txt -r--r--r-- 1 pi pi 186 Jan 8 2020 sitemap.xml -r--r--r-- 1 pi pi 186 Jan 8 2020 sitemap.xml.txt -rwxr-xr-- 1 pi pi 472 Aug 31 2021 thttpd_config -r-xr-xr-- 1 pi pi 472 Aug 31 2021 thttpd_config~ drwxr-xr-x 2 pi pi 4096 Aug 31 2021 thttpd-extras pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ # ***** pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ sudo cp -rv thttpd-extras /home/local/sbin/ ### sudo 'thttpd-extras' -> '/home/local/sbin/thttpd-extras' 'thttpd-extras/thttpd.sh' -> '/home/local/sbin/thttpd-extras/thttpd.sh' 'thttpd-extras/thttpd_config' -> '/home/local/sbin/thttpd-extras/thttpd_config' 'thttpd-extras/anvil_thttpd.gif' -> '/home/local/sbin/thttpd-extras/anvil_thttpd.gif' 'thttpd-extras/readme.txt' -> '/home/local/sbin/thttpd-extras/readme.txt' 'thttpd-extras/thttpd-rotate~' -> '/home/local/sbin/thttpd-extras/thttpd-rotate~' 'thttpd-extras/thttpd.sh~' -> '/home/local/sbin/thttpd-extras/thttpd.sh~' 'thttpd-extras/thttpd_config~' -> '/home/local/sbin/thttpd-extras/thttpd_config~' 'thttpd-extras/sitemap.xml' -> '/home/local/sbin/thttpd-extras/sitemap.xml' 'thttpd-extras/thttpd-rotate' -> '/home/local/sbin/thttpd-extras/thttpd-rotate' 'thttpd-extras/sitemap.xml.txt' -> '/home/local/sbin/thttpd-extras/sitemap.xml.txt' 'thttpd-extras/favicon.ico' -> '/home/local/sbin/thttpd-extras/favicon.ico' 'thttpd-extras/rc.local~' -> '/home/local/sbin/thttpd-extras/rc.local~' 'thttpd-extras/thttpd_wrapper' -> '/home/local/sbin/thttpd-extras/thttpd_wrapper' 'thttpd-extras/robots-site.txt' -> '/home/local/sbin/thttpd-extras/robots-site.txt' 'thttpd-extras/robots.txt' -> '/home/local/sbin/thttpd-extras/robots.txt' 'thttpd-extras/rc.local' -> '/home/local/sbin/thttpd-extras/rc.local' 'thttpd-extras/thttpd_wrapper~' -> '/home/local/sbin/thttpd-extras/thttpd_wrapper~' pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ # ***** pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ sudo cp -rv os-debug /home/local/sbin/ ### sudo 'os-debug' -> '/home/local/sbin/os-debug' 'os-debug/dead-thttpd' -> '/home/local/sbin/os-debug/dead-thttpd' 'os-debug/readme.txt' -> '/home/local/sbin/os-debug/readme.txt' 'os-debug/thttpd-rotate~' -> '/home/local/sbin/os-debug/thttpd-rotate~' 'os-debug/thttpd-rotate' -> '/home/local/sbin/os-debug/thttpd-rotate' 'os-debug/datelog~' -> '/home/local/sbin/os-debug/datelog~' 'os-debug/dead-thttpd~' -> '/home/local/sbin/os-debug/dead-thttpd~' 'os-debug/thttpd_wrapper' -> '/home/local/sbin/os-debug/thttpd_wrapper' 'os-debug/readme.txt~' -> '/home/local/sbin/os-debug/readme.txt~' 'os-debug/datelog' -> '/home/local/sbin/os-debug/datelog' 'os-debug/thttpd_wrapper~' -> '/home/local/sbin/os-debug/thttpd_wrapper~' pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ # ***** pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ cd /home/local/sbin/thttpd-extras ### pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al ### total 76 drwxr-xr-x 2 root root 4096 Mar 17 11:13 . drwxr-xr-x 4 root root 4096 Mar 17 11:14 .. -r--r--r-- 1 root root 533 Mar 17 11:13 anvil_thttpd.gif -rw-r--r-- 1 root root 533 Mar 17 11:13 favicon.ico -rwxr-xr-- 1 root root 485 Mar 17 11:13 rc.local -r-xr-xr-- 1 root root 485 Mar 17 11:13 rc.local~ -rw-r--r-- 1 root root 308 Mar 17 11:13 readme.txt -r--r--r-- 1 root root 73 Mar 17 11:13 robots-site.txt -rw-r--r-- 1 root root 27 Mar 17 11:13 robots.txt -rw-r--r-- 1 root root 186 Mar 17 11:13 sitemap.xml -r--r--r-- 1 root root 186 Mar 17 11:13 sitemap.xml.txt -rwxr-xr-- 1 root root 472 Mar 17 11:13 thttpd_config -r-xr-xr-- 1 root root 472 Mar 17 11:13 thttpd_config~ -rwxr-xr-- 1 root root 1746 Mar 17 11:13 thttpd-rotate -r-xr-xr-- 1 root root 1746 Mar 17 11:13 thttpd-rotate~ -rwxr-xr-- 1 root root 138 Mar 17 11:13 thttpd.sh -r-xr-xr-- 1 root root 138 Mar 17 11:13 thttpd.sh~ -rwxr-xr-- 1 root root 122 Mar 17 11:13 thttpd_wrapper -r-xr-xr-- 1 root root 122 Mar 17 11:13 thttpd_wrapper~ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat /etc/rc.local ### #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # Print the IP address _IP=$(hostname -I) || true if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi exit 0 pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** rc.local is a file that is part of "systemd" which is in "/etc", and may or may not be empty. ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat rc.local ### #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # Print the IP address _IP=$(hostname -I) || true if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi # Start thttpd echo "Starting thttpd. \n" . /etc/thttpd.sh # exit 0 pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # If /etc/rc.local is not there, or, not empty, then check that nothing different is in it as we are adding the lines: # Starting thttpd, echo "Starting thttpd. \n", and . /etc/thttpd.sh, and #, before the exit 0 to the file to start thttpd. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav rc.local /etc/rc.local ### sudo cp: overwrite '/etc/rc.local'? y ### since what was there matches what is above what we are adding we over write the file. 'rc.local' -> '/etc/rc.local' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -l /etc/rc.local ### -rwxr-xr-- 1 root root 485 Mar 17 11:13 /etc/rc.local pi@raspberrypi:/home/local/sbin/thttpd-extras $ # (rc.local is still 0754) pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # We now need to copy thttpd.sh to /etc and make sure it is 0754. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd.sh /etc/ ### sudo 'thttpd.sh' -> '/etc/thttpd.sh' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -l /etc/thttpd.sh ### -rwxr-xr-- 1 root root 138 Mar 17 11:13 /etc/thttpd.sh pi@raspberrypi:/home/local/sbin/thttpd-extras $ # (thttpd.sh is still 0754) pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd.sh ### #!/bin/sh # thttpd.sh if [ -x /home/local/sbin/thttpd_wrapper ] ; then echo -n " thttpd" /home/local/sbin/thttpd_wrapper & fi # exit 0 pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # thttpd.sh is looking for thttpd_wrapper to be in "/home/local/sbin/" and being 0754, so we will copy "thttpd_wrapper" up one level to there. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd_wrapper ../ ### sudo 'thttpd_wrapper' -> '../thttpd_wrapper' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -l /home/local/sbin ### total 168 -rwxr-xr-x 1 root root 15296 Mar 16 21:27 htpasswd -rwxr-sr-x 1 root www 14504 Mar 16 21:27 makeweb drwxr-xr-x 2 root root 4096 Mar 17 11:14 os-debug -r-xr-xr-x 1 root root 2878 Mar 16 21:27 syslogtocern -r-xr-xr-x 1 bin bin 121272 Mar 16 21:27 thttpd drwxr-xr-x 2 root root 4096 Mar 17 11:13 thttpd-extras -rwxr-xr-- 1 root root 122 Mar 17 11:13 thttpd_wrapper pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### The purpose of the file "thttpd_wrapper" is to restart "thttpd" if it stops, and it checks every 10 seconds to see if "/home/local/sbin/thttpd" is running and it also loads the configuration file that is: "/home/local/www/thttpd_config". If one changes the config file, one only has to kill the "thttpd pid number" and the wrapper will restart it in 10 seconds with the new configuration. "sudo kill xxxx" will kill a program. To get all of the running "pid" numbers use "ps -e". If you forget to use "sudo" to manually start "thttpd" or even "rc.local" every 10 seconds you will get a message that "/home/local/www/logs/thttpd_log" can not be written to! (because it is now owned by nobody). What appears on your screen is not what you type in, but both the error message and what you type in. Type in "ps -e" and look for the number for "thttpd_wrapper" and then type in "sudo kill xxxx" with "xxxx" being the "pid" number. Been there, done that way too many times! pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd_wrapper ### #!/bin/sh # thttpd_wrapper while true ; do /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config sleep 10 done # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # Next "thttpd-rotate" needs to be moved to "/etc/cron.daily/" so our log files get moved every day. The time they get rotated is in "/etc/crontab" pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat /etc/crontab ### # /etc/crontab: system-wide crontab # Unlike any other crontab you don't have to run the `crontab' # command to install the new version when you edit this file # and files in /etc/cron.d. These files also have username fields, # that none of the other crontabs do. # # SHELL=/bin/sh # PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # # Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed # 17 * * * * root cd / && run-parts --report /etc/cron.hourly # 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) # 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ) # 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly ) # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd-rotate /etc/cron.daily/ ### sudo 'thttpd-rotate' -> '/etc/cron.daily/thttpd-rotate' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al /etc/cron.daily ### total 40 drwxr-xr-x 2 root root 4096 Mar 17 11:48 . drwxr-xr-x 126 root root 12288 Mar 17 11:37 .. -rwxr-xr-x 1 root root 1478 Jun 10 2021 apt-compat -rwxr-xr-x 1 root root 1298 Jan 29 2021 dpkg -rwxr-xr-x 1 root root 377 Feb 28 2021 logrotate -rwxr-xr-x 1 root root 1123 Feb 19 2021 man-db -rw-r--r-- 1 root root 102 Feb 22 2021 .placeholder -rwxr-xr-- 1 root root 1746 Mar 17 11:13 thttpd-rotate pi@raspberrypi:/home/local/sbin/thttpd-extras $ # (thttpd_rotate is still 0754) pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### The "thttpd_rotate" file I made is for 50 days so you don't have to move them every day, week, or even month. I also put a header and a tail on the files when they rotate so you have an idea how long your website has been up. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd-rotate ### #!/bin/sh # /etc/cron.daily/thttpd-rotate cd /home/local/www/logs rm -f thttpd_log.50 mv thttpd_log.49 thttpd_log.50 mv thttpd_log.48 thttpd_log.49 mv thttpd_log.47 thttpd_log.48 mv thttpd_log.46 thttpd_log.47 mv thttpd_log.45 thttpd_log.46 mv thttpd_log.44 thttpd_log.45 mv thttpd_log.43 thttpd_log.44 mv thttpd_log.42 thttpd_log.43 mv thttpd_log.41 thttpd_log.42 mv thttpd_log.40 thttpd_log.41 mv thttpd_log.39 thttpd_log.40 mv thttpd_log.38 thttpd_log.39 mv thttpd_log.37 thttpd_log.38 mv thttpd_log.36 thttpd_log.37 mv thttpd_log.35 thttpd_log.36 mv thttpd_log.34 thttpd_log.35 mv thttpd_log.33 thttpd_log.34 mv thttpd_log.32 thttpd_log.33 mv thttpd_log.31 thttpd_log.32 mv thttpd_log.30 thttpd_log.31 mv thttpd_log.29 thttpd_log.30 mv thttpd_log.28 thttpd_log.29 mv thttpd_log.27 thttpd_log.28 mv thttpd_log.26 thttpd_log.27 mv thttpd_log.25 thttpd_log.26 mv thttpd_log.24 thttpd_log.25 mv thttpd_log.23 thttpd_log.24 mv thttpd_log.22 thttpd_log.23 mv thttpd_log.21 thttpd_log.22 mv thttpd_log.20 thttpd_log.21 mv thttpd_log.19 thttpd_log.20 mv thttpd_log.18 thttpd_log.19 mv thttpd_log.17 thttpd_log.18 mv thttpd_log.16 thttpd_log.17 mv thttpd_log.15 thttpd_log.16 mv thttpd_log.14 thttpd_log.15 mv thttpd_log.13 thttpd_log.14 mv thttpd_log.12 thttpd_log.13 mv thttpd_log.11 thttpd_log.12 mv thttpd_log.10 thttpd_log.11 mv thttpd_log.09 thttpd_log.10 mv thttpd_log.08 thttpd_log.09 mv thttpd_log.07 thttpd_log.08 mv thttpd_log.06 thttpd_log.07 mv thttpd_log.05 thttpd_log.06 mv thttpd_log.04 thttpd_log.05 mv thttpd_log.03 thttpd_log.04 mv thttpd_log.02 thttpd_log.03 mv thttpd_log.01 thttpd_log.02 date >> thttpd_log w >> thttpd_log mv thttpd_log thttpd_log.01 date > thttpd_log w >> thttpd_log kill -usr1 `cat /var/run/thttpd.pid` # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ********* pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### To copy the log files to dates, I "cd /home/local/www/logs/" and then type ls -al to get a listing of the files and the dates for the files. Then to copy the files: "sudo cp -iav *log.xx 2020.01.01" with xx being the log number and then year.mo.da and then check that I have everything right before I press the enter key. Since the log files belong to nobody and nogroup one has to use "sudo" and "cp -iav" so root can then change the owner to something else. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### Example: pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # sudo cp -iv *log.xx year.mo.da # (one can use ? to replace one character, or * to replace the rest of the string for all matching files). pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ls -al pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # sudo chown -v ac0xl:www year.mo.da # the owner:group changes from root:root to ac0xl:www pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ls -al #(lists the files and shows that they are "ac0xl www") pi@raspberrypi:/home/local/sbin/thttpd-extras $ # su ac0xl #(Shell to user "ac0xl" at this point you are still at: "/home/local/www/logs/") pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # cp -iav year.mo.da ~/logs/ # which will copy the files into the /ac0xl/logs/ file pi@raspberrypi:/home/local/sbin/thttpd-extras $ # cp -iav year.mo.da ~/public_html/logs/ # which will copy the files into the /home/local/www/users/ac0xl/logs/ file, making them live on the www. They will be under "ac0xl/logs/". Then I usually look on my Android phone and see if they are there. One has to refresh the page to get the new files to show. pi@raspberrypi:/home/local/sbin/thttpd-extras $ # exit # this returns you back to (pi). pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### The last files to copy will be the "thttpd_config" files which go to "/home/local/www/". pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ********* pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd_config* /home/local/www/ ### sudo 'thttpd_config' -> '/home/local/www/thttpd_config' 'thttpd_config~' -> '/home/local/www/thttpd_config~' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al /home/local/www/ ### total 28 drwxr-xr-x 5 root www 4096 Mar 17 12:04 . drwxr-xr-x 5 root root 4096 Mar 16 21:27 .. drwxr-xr-x 2 root www 4096 Mar 16 21:27 cgi-bin drwxr-xr-x 2 root www 4096 Mar 16 21:33 logs -rwxr-xr-- 1 root root 472 Mar 17 11:13 thttpd_config -r-xr-xr-- 1 root root 472 Mar 17 11:13 thttpd_config~ drwxrwxr-x 3 root www 4096 Mar 16 23:48 users pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd_config ### # /home/local/www/thttpd_config dir=/home/local/www chroot #chroot jail data_dir=users #vhost # if you use a domain name you will have to uncomment (remove the # at the beginning) and then make a "user" directory using your external IPv4 address (xxx.xxx.xxx.xxx) and inside this directory make symbolic links back up to your other files in "users" (../"user-name"). cgipat=**.cgi logfile=/home/local/www/logs/thttpd_log pidfile=/var/run/thttpd.pid # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### TESTING: pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # We need the line from thttpd_wrapper without the wrapper. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd ../ ### pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ cat thttpd_wrapper ### #!/bin/sh # thttpd_wrapper while true ; do /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config sleep 10 done # pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ # ***** pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ cd ### We are changing to pi home and will need to start a new terminal since it is going to lock up as soon as thttpd starts. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### ***** On a new terminal ***** pi@raspberrypi:~ $ pi@raspberrypi:~ $ # sudo /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config ### copy the line without the first # and paste it on to the command prompt in a new terminal window, as it will lock up when thttpd starts running. pi@raspberrypi:~ $ pi@raspberrypi:~ $ # sudo /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config ### sudo pi@raspberrypi:~ $ # At this point the new terminal will be locked up! ### On the busy terminal, Control C or Control X won't stop the program. The only way to stop it is by going to a different terminal and find "thttpd" in "ps -e" then "sudo kill (program number), in this case it was 1819 for sudo, and 1820 for thttpd. # ********************* ### On your web browser, type in: localhost ### This goes in the address box. If "thttpd" is working you should see a green screen with a little bit of text and "Index of /" which means thttpd is active on the local computer. ### On your web browser, see if a green screen comes up with your first web entry. Click on it to see if it will open. Then click on the (../) to see if it takes you back up one level. ### by clicking on the web browser and selecting all, I get this: #Index of / # #mode links bytes last-changed name #dr-x 3 4096 Mar 17 05:48 ./ #dr-x 5 4096 Mar 17 18:04 ../ #dr-x 2 4096 Mar 17 05:48 ac0xl/ # # # # Everything should be working at this point. Test one OK. # ********************* pi@raspberrypi:~ $ ### On this terminal (in Geany), type: ps -e # to find the "PID"s so you can "kill" the processes after you do a test to see if entering "localhost" in your web browser brings up a green page with your web user. pi@raspberrypi:~ $ ### On the busy terminal, Control C or Control X won't stop the program. The only way to stop it is by going to a different terminal and find "thttpd" in "ps -e" then "sudo kill (program number), in this case it was 1819 for sudo, and 1820 for thttpd. pi@raspberrypi:~ $ pi@raspberrypi:~ $ ps -e ### PID TTY TIME CMD 1 ? 00:00:03 systemd 2 ? 00:00:00 kthreadd 3 ? 00:00:00 rcu_gp 4 ? 00:00:00 rcu_par_gp 8 ? 00:00:00 mm_percpu_wq 9 ? 00:00:00 rcu_tasks_kthre 10 ? 00:00:00 rcu_tasks_rude_ 11 ? 00:00:00 rcu_tasks_trace 12 ? 00:00:00 ksoftirqd/0 13 ? 00:00:06 rcu_preempt 14 ? 00:00:00 migration/0 15 ? 00:00:00 cpuhp/0 16 ? 00:00:00 cpuhp/1 17 ? 00:00:00 migration/1 18 ? 00:00:00 ksoftirqd/1 21 ? 00:00:00 cpuhp/2 22 ? 00:00:00 migration/2 23 ? 00:00:00 ksoftirqd/2 26 ? 00:00:00 cpuhp/3 27 ? 00:00:00 migration/3 28 ? 00:00:00 ksoftirqd/3 31 ? 00:00:00 kdevtmpfs 32 ? 00:00:00 netns 33 ? 00:00:00 kauditd 35 ? 00:00:02 kworker/0:2-events 36 ? 00:00:00 khungtaskd 37 ? 00:00:00 oom_reaper 38 ? 00:00:00 writeback 39 ? 00:00:00 kcompactd0 61 ? 00:00:00 kblockd 62 ? 00:00:00 blkcg_punt_bio 63 ? 00:00:00 watchdogd 65 ? 00:00:00 kworker/0:1H-mmc_complete 66 ? 00:00:00 rpciod 68 ? 00:00:00 xprtiod 69 ? 00:00:00 kswapd0 70 ? 00:00:00 nfsiod 71 ? 00:00:00 kthrotld 73 ? 00:00:00 iscsi_eh 74 ? 00:00:00 iscsi_destroy 75 ? 00:00:00 nvme-wq 76 ? 00:00:00 nvme-reset-wq 77 ? 00:00:00 nvme-delete-wq 80 ? 00:00:00 DWC Notificatio 81 ? 00:00:00 uas 82 ? 00:00:00 vchiq-slot/0 83 ? 00:00:00 vchiq-recy/0 84 ? 00:00:00 vchiq-sync/0 85 ? 00:00:00 zswap-shrink 89 ? 00:00:00 sdhci 90 ? 00:00:00 irq/51-mmc0 96 ? 00:00:00 mmc_complete 97 ? 00:00:00 kworker/2:1H-kblockd 98 ? 00:00:00 kworker/1:1H-kblockd 99 ? 00:00:00 jbd2/mmcblk0p2- 100 ? 00:00:00 ext4-rsv-conver 103 ? 00:00:00 ipv6_addrconf 112 ? 00:00:00 kworker/3:2H-kblockd 145 ? 00:00:01 systemd-journal 166 ? 00:00:00 systemd-udevd 203 ? 00:00:00 vchiq-keep/0 204 ? 00:00:00 SMIO 212 ? 00:00:00 mmal-vchiq 213 ? 00:00:00 mmal-vchiq 215 ? 00:00:00 mmal-vchiq 216 ? 00:00:00 mmal-vchiq 218 ? 00:00:00 mmal-vchiq 221 ? 00:00:00 mmal-vchiq 258 ? 00:00:00 cfg80211 266 ? 00:00:20 v3d_bin 267 ? 00:00:24 v3d_render 268 ? 00:00:00 v3d_tfu 269 ? 00:00:00 v3d_csd 270 ? 00:00:00 v3d_cache_clean 273 ? 00:00:00 brcmf_wq/mmc1:0 276 ? 00:00:00 brcmf_wdog/mmc1 305 ? 00:00:02 kworker/0:3-events 385 ? 00:00:00 irq/42-vc4 hdmi 386 ? 00:00:00 irq/43-vc4 hdmi 387 ? 00:00:00 avahi-daemon 388 ? 00:00:00 cec-vc4 389 ? 00:00:00 irq/39-vc4 hdmi 390 ? 00:00:00 irq/38-vc4 hdmi 391 ? 00:00:00 cron 392 ? 00:00:00 dbus-daemon 393 ? 00:00:00 irq/48-vc4 hdmi 394 ? 00:00:00 irq/49-vc4 hdmi 395 ? 00:00:00 cec-vc4 396 ? 00:00:00 irq/45-vc4 hdmi 397 ? 00:00:00 irq/44-vc4 hdmi 399 ? 00:00:00 card0-crtc0 400 ? 00:00:00 card0-crtc1 401 ? 00:00:00 card0-crtc2 402 ? 00:00:00 card0-crtc3 403 ? 00:00:00 card0-crtc4 404 ? 00:00:00 card0-crtc5 414 ? 00:00:00 avahi-daemon 428 ? 00:00:00 rsyslogd 451 ? 00:00:00 systemd-logind 455 ? 00:00:06 thd 461 ? 00:00:00 udisksd 463 ? 00:00:00 wpa_supplicant 531 ? 00:00:00 rngd 542 ? 00:00:00 cupsd 544 ? 00:00:00 dhcpcd 550 ? 00:00:00 lightdm 578 tty7 00:05:20 Xorg 582 tty1 00:00:00 login 583 ? 00:00:00 polkitd 586 ? 00:00:00 wpa_supplicant 601 ? 00:00:00 cups-browsed 615 ? 00:00:00 lightdm 620 ? 00:00:00 systemd 621 ? 00:00:00 (sd-pam) 640 ? 00:00:00 pipewire 641 ? 00:00:02 pulseaudio 642 ? 00:00:00 lxsession 653 ? 00:00:00 rtkit-daemon 654 ? 00:00:00 dbus-daemon 662 ? 00:00:00 pipewire-media- 697 ? 00:00:00 ssh-agent 726 tty1 00:00:00 bash 738 ? 00:00:00 gvfsd 745 ? 00:00:00 gvfsd-fuse 756 ? 00:02:26 mutter 759 ? 00:00:00 lxpolkit 763 ? 00:01:41 lxpanel 764 ? 00:00:01 pcmanfm 772 ? 00:00:00 kworker/u9:1-hci0 773 ? 00:00:00 hciattach 774 ? 00:00:00 kworker/u9:2-hci0 781 ? 00:00:00 applet.py 790 ? 00:00:00 ssh-agent 831 ? 00:00:00 bluetoothd 849 ? 00:00:00 krfcommd 878 ? 00:00:00 menu-cached 885 ? 00:00:00 gvfs-udisks2-vo 890 ? 00:00:00 gvfs-afc-volume 895 ? 00:00:00 gvfs-mtp-volume 899 ? 00:00:00 gvfs-goa-volume 903 ? 00:00:00 gvfs-gphoto2-vo 927 ? 00:00:00 gvfsd-trash 1070 ? 00:00:00 systemd-timesyn 1072 ? 00:00:01 lxterminal 1078 pts/0 00:00:00 bash 1085 ? 00:01:39 geany 1093 pts/1 00:00:00 bash 1104 ? 00:00:05 packagekitd 1469 ? 00:04:03 mousepad 1477 ? 00:00:00 xfconfd 1484 ? 00:00:00 dconf-service 1492 ? 00:00:00 gvfsd-network 1505 ? 00:00:00 gvfsd-dnssd 1601 ? 00:00:00 kworker/3:0H 1720 ? 00:00:00 kworker/1:2H 1763 ? 00:00:00 kworker/3:0-events_power_efficient 1778 ? 00:00:00 kworker/0:2H 1784 ? 00:00:00 kworker/u8:0-events_unbound 1789 ? 00:00:00 kworker/1:0-events 1790 ? 00:00:00 kworker/3:2-events_power_efficient 1793 ? 00:00:00 kworker/2:1-mm_percpu_wq 1802 ? 00:00:00 kworker/u8:2-cfg80211 1806 ? 00:00:00 kworker/0:0-events 1807 ? 00:00:00 kworker/2:2H 1808 ? 00:00:00 kworker/1:1-events 1810 ? 00:00:00 kworker/2:0-events 1812 ? 00:00:00 kworker/0:1-events 1813 ? 00:00:00 kworker/u8:1-brcmf_wq/mmc1:0001:1 1814 ? 00:00:00 kworker/1:2-mm_percpu_wq 1816 ? 00:00:00 kworker/2:0H 1817 ? 00:00:00 kworker/3:1-events_power_efficient 1818 ? 00:00:00 kworker/2:2-events_freezable 1819 pts/0 00:00:00 sudo 1820 ? 00:00:00 thttpd 1821 pts/1 00:00:00 ps pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### At this point we need to kill the two PID numbers for "sudo" and "thttpd" which in my case are: sudo 1819 and thttpd 1820 # sudo kill 1819 1820 and repeat it to make sure they are gone. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # I just discovered the "ps p then the 'PID' number"! It is good to verify what you are killing! pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ps p 1819 1820 ### This will help you to not destroy something you should not! (ps p (p for PID) and then the PID numbers). PID TTY STAT TIME COMMAND 1819 pts/2 S+ 0:00 sudo /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config 1820 ? Rs 1:20 /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo kill 1819 1820 ### sudo Make sure you use the right numbers! pi@raspberrypi:~ $ sudo kill 1819 1820 ### sudo (use the up arrow to get the previous command) kill: (1819): No such process kill: (1820): No such process pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### The new terminal should now be back to the command prompt waiting for commands. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### Now you can look at your log file in: /home/local/www/logs/ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home/local/www/logs ### pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al ### total 12 drwxr-xr-x 2 root www 4096 Mar 17 12:26 . drwxr-xr-x 5 root www 4096 Mar 17 12:04 .. -rw-r--r-- 1 nobody nogroup 556 Mar 17 12:27 thttpd_log pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log ### 127.0.0.1 - - [17/Mar/2022:18:27:19 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:20 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:24 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:30 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # the 200 25000 shows that it found a directory and returned 25000 bytes, the 404 0 shows that it didn't find what was asked for (favicon.ico) and didn't return and bytes. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # The program thttpd is working OK. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Now we need to add the files to "users" that are in "/home/local/sbin/thttpd-extras". pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cd /home/local/sbin/thttpd-extras/ ### pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al ### total 76 drwxr-xr-x 2 root root 4096 Mar 17 11:13 . drwxr-xr-x 4 root root 4096 Mar 17 11:41 .. -r--r--r-- 1 root root 533 Mar 17 11:13 anvil_thttpd.gif -rw-r--r-- 1 root root 533 Mar 17 11:13 favicon.ico -rwxr-xr-- 1 root root 485 Mar 17 11:13 rc.local -r-xr-xr-- 1 root root 485 Mar 17 11:13 rc.local~ -rw-r--r-- 1 root root 308 Mar 17 11:13 readme.txt -r--r--r-- 1 root root 73 Mar 17 11:13 robots-site.txt -rw-r--r-- 1 root root 27 Mar 17 11:13 robots.txt -rw-r--r-- 1 root root 186 Mar 17 11:13 sitemap.xml -r--r--r-- 1 root root 186 Mar 17 11:13 sitemap.xml.txt -rwxr-xr-- 1 root root 472 Mar 17 11:13 thttpd_config -r-xr-xr-- 1 root root 472 Mar 17 11:13 thttpd_config~ -rwxr-xr-- 1 root root 1746 Mar 17 11:13 thttpd-rotate -r-xr-xr-- 1 root root 1746 Mar 17 11:13 thttpd-rotate~ -rwxr-xr-- 1 root root 138 Mar 17 11:13 thttpd.sh -r-xr-xr-- 1 root root 138 Mar 17 11:13 thttpd.sh~ -rwxr-xr-- 1 root root 122 Mar 17 11:13 thttpd_wrapper -r-xr-xr-- 1 root root 122 Mar 17 11:13 thttpd_wrapper~ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav favicon.ico /home/local/www/users/ ### sudo 'favicon.ico' -> '/home/local/www/users/favicon.ico' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav readme.txt /home/local/www/users/ ### sudo 'readme.txt' -> '/home/local/www/users/readme.txt' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav robots.txt /home/local/www/users/ ### sudo 'robots.txt' -> '/home/local/www/users/robots.txt' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo ls -al /home/local/www/users/ ### sudo total 24 drwxrwxr-x 3 root www 4096 Mar 17 12:58 . drwxr-xr-x 5 root www 4096 Mar 17 12:04 .. drwxr-xr-x 2 ac0xl www 4096 Mar 16 23:48 ac0xl -rw-r--r-- 1 root root 533 Mar 17 11:13 favicon.ico -rw-r--r-- 1 root root 308 Mar 17 11:13 readme.txt -rw-r--r-- 1 root root 27 Mar 17 11:13 robots.txt pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ********* pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat robots-site.txt ### User-agent: * Disallow: Sitemap: http://xxx.xxx.xxx.xxx/sitemap.xml/ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat sitemap.xml ### http://xxx.xxx.xxx.xxx/ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ********* pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ### You would use "robots-site.txt" replacing the XXX.xxx.xxx.xxx with your external static IPv4 address and then naming it "robots.txt". Likewise, with the "sitemap.xml" file and keep the same name for it. Adding both of these files to “/home/local/www/users/”, if you have an external static IP address. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ******************* pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd /etc ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ### **** If you don't use sudo here it will start looping every 10 seconds. Then you would have to find the pid number for thttpd_wrapper and sudo kill "pid-number" because it is trying to write to root files!!!, or just turn off the computer. **** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo ./rc.local ### sudo (Starting thttpd from rc.local, REMEMBER the sudo!!!!!!) My IP address is 192.168.19.15 Starting thttpd. thttpdpi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # on the line above, (Notice the thttpd in front of pi@raspberrypi:/etc$ on the terminal screen, it is still running.) pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Here we see that my local IP Address is 192.168.19.15 and thttpd has started and is now running. so we will see if this IP Address will get to my web site. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ### Typing "192.168.19.15" on the browser, we get: pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ #Index of / # #mode links bytes last-changed name # #dr-x 3 4096 Mar 17 18:58 ./ #dr-x 5 4096 Mar 17 18:04 ../ #dr-x 2 4096 Mar 17 05:48 ac0xl/ #-r-- 1 533 Mar 17 17:13 favicon.ico #-r-- 1 308 Mar 17 17:13 readme.txt #-r-- 1 27 Mar 17 17:13 robots.txt # # # pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cat /home/local/www/logs/*log ### 127.0.0.1 - - [17/Mar/2022:18:27:19 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:20 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:24 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:30 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.15 - - [17/Mar/2022:19:18:17 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:18:17 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:27 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:29 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.15/ac0xl/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:31 +0000] "GET /favicon.ico HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:52 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:52 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/readme.txt" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:33:55 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # This time we see that the request is from the IP Address of 192.168.19.15 the first address, "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/" sent back 533 bytes and the request was to "http://192.168.19.15/", the second one, "GET /favicon.ico HTTP/1.1" 304 0 "http://192.168.19.15/" shows that I already had the same information thus the 304 and no bytes sent, "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.15/" sent back 308 bytes, and "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.15/" sent back 27 bytes. I accidentally killed my browser so had to reload it. Notice it also shows what kind of machine requested the information. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ### At this point I want to do a log rotate and check it out. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd cron.daily ### pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al ### total 40 drwxr-xr-x 2 root root 4096 Mar 25 13:08 . drwxr-xr-x 128 root root 12288 Mar 25 13:01 .. -rwxr-xr-x 1 root root 1478 Jun 10 2021 apt-compat -rwxr-xr-x 1 root root 1298 Apr 29 2021 dpkg -rwxr-xr-x 1 root root 377 Feb 28 2021 logrotate -rwxr-xr-x 1 root root 1123 Feb 19 2021 man-db -rw-r--r-- 1 root root 102 Feb 22 2021 .placeholder -rwxr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ### One has to use sudo because they are owned by root. The period "." stands for "do" then it needs a space, hence the "/". pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo ./thttpd-rotate ### # These files do not exist yet. mv: cannot stat 'thttpd_log.49': No such file or directory mv: cannot stat 'thttpd_log.48': No such file or directory mv: cannot stat 'thttpd_log.47': No such file or directory mv: cannot stat 'thttpd_log.46': No such file or directory mv: cannot stat 'thttpd_log.45': No such file or directory mv: cannot stat 'thttpd_log.44': No such file or directory mv: cannot stat 'thttpd_log.43': No such file or directory mv: cannot stat 'thttpd_log.42': No such file or directory mv: cannot stat 'thttpd_log.41': No such file or directory mv: cannot stat 'thttpd_log.40': No such file or directory mv: cannot stat 'thttpd_log.39': No such file or directory mv: cannot stat 'thttpd_log.38': No such file or directory mv: cannot stat 'thttpd_log.37': No such file or directory mv: cannot stat 'thttpd_log.36': No such file or directory mv: cannot stat 'thttpd_log.35': No such file or directory mv: cannot stat 'thttpd_log.34': No such file or directory mv: cannot stat 'thttpd_log.33': No such file or directory mv: cannot stat 'thttpd_log.32': No such file or directory mv: cannot stat 'thttpd_log.31': No such file or directory mv: cannot stat 'thttpd_log.30': No such file or directory mv: cannot stat 'thttpd_log.29': No such file or directory mv: cannot stat 'thttpd_log.28': No such file or directory mv: cannot stat 'thttpd_log.27': No such file or directory mv: cannot stat 'thttpd_log.26': No such file or directory mv: cannot stat 'thttpd_log.25': No such file or directory mv: cannot stat 'thttpd_log.24': No such file or directory mv: cannot stat 'thttpd_log.23': No such file or directory mv: cannot stat 'thttpd_log.22': No such file or directory mv: cannot stat 'thttpd_log.21': No such file or directory mv: cannot stat 'thttpd_log.20': No such file or directory mv: cannot stat 'thttpd_log.19': No such file or directory mv: cannot stat 'thttpd_log.18': No such file or directory mv: cannot stat 'thttpd_log.17': No such file or directory mv: cannot stat 'thttpd_log.16': No such file or directory mv: cannot stat 'thttpd_log.15': No such file or directory mv: cannot stat 'thttpd_log.14': No such file or directory mv: cannot stat 'thttpd_log.13': No such file or directory mv: cannot stat 'thttpd_log.12': No such file or directory mv: cannot stat 'thttpd_log.11': No such file or directory mv: cannot stat 'thttpd_log.10': No such file or directory mv: cannot stat 'thttpd_log.09': No such file or directory mv: cannot stat 'thttpd_log.08': No such file or directory mv: cannot stat 'thttpd_log.07': No such file or directory mv: cannot stat 'thttpd_log.06': No such file or directory mv: cannot stat 'thttpd_log.05': No such file or directory mv: cannot stat 'thttpd_log.04': No such file or directory mv: cannot stat 'thttpd_log.03': No such file or directory mv: cannot stat 'thttpd_log.02': No such file or directory mv: cannot stat 'thttpd_log.01': No such file or directory pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ Since thttpd is still running, I will try connecting with my Android phone. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al /home/local/www/logs ### total 16 drwxr-xr-x 2 root www 4096 Mar 17 14:48 . drwxr-xr-x 5 root www 4096 Mar 17 12:04 .. -rw-r--r-- 1 root root 334 Mar 17 14:48 thttpd_log -rw-r--r-- 1 nobody nogroup 2291 Mar 17 14:48 thttpd_log.01 pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ cat /home/local/www/logs/*log.01 ### ***********************remove ps -e***************keep running pi@raspberrypi:/etc $ ps -e ### PID TTY TIME CMD 1 ? 00:00:03 systemd 2 ? 00:00:00 kthreadd 3 ? 00:00:00 rcu_gp 4 ? 00:00:00 rcu_par_gp 8 ? 00:00:00 mm_percpu_wq 9 ? 00:00:00 rcu_tasks_kthre 10 ? 00:00:00 rcu_tasks_rude_ 11 ? 00:00:00 rcu_tasks_trace 12 ? 00:00:00 ksoftirqd/0 13 ? 00:00:08 rcu_preempt 14 ? 00:00:00 migration/0 15 ? 00:00:00 cpuhp/0 16 ? 00:00:00 cpuhp/1 17 ? 00:00:00 migration/1 18 ? 00:00:00 ksoftirqd/1 21 ? 00:00:00 cpuhp/2 22 ? 00:00:00 migration/2 23 ? 00:00:00 ksoftirqd/2 26 ? 00:00:00 cpuhp/3 27 ? 00:00:00 migration/3 28 ? 00:00:00 ksoftirqd/3 31 ? 00:00:00 kdevtmpfs 32 ? 00:00:00 netns 33 ? 00:00:00 kauditd 35 ? 00:00:04 kworker/0:2-events 36 ? 00:00:00 khungtaskd 37 ? 00:00:00 oom_reaper 38 ? 00:00:00 writeback 39 ? 00:00:00 kcompactd0 61 ? 00:00:00 kblockd 62 ? 00:00:00 blkcg_punt_bio 63 ? 00:00:00 watchdogd 65 ? 00:00:00 kworker/0:1H-mmc_complete 66 ? 00:00:00 rpciod 68 ? 00:00:00 xprtiod 69 ? 00:00:00 kswapd0 70 ? 00:00:00 nfsiod 71 ? 00:00:00 kthrotld 73 ? 00:00:00 iscsi_eh 74 ? 00:00:00 iscsi_destroy 75 ? 00:00:00 nvme-wq 76 ? 00:00:00 nvme-reset-wq 77 ? 00:00:00 nvme-delete-wq 80 ? 00:00:00 DWC Notificatio 81 ? 00:00:00 uas 82 ? 00:00:00 vchiq-slot/0 83 ? 00:00:00 vchiq-recy/0 84 ? 00:00:00 vchiq-sync/0 85 ? 00:00:00 zswap-shrink 89 ? 00:00:00 sdhci 90 ? 00:00:00 irq/51-mmc0 96 ? 00:00:00 mmc_complete 97 ? 00:00:00 kworker/2:1H-kblockd 98 ? 00:00:00 kworker/1:1H-kblockd 99 ? 00:00:00 jbd2/mmcblk0p2- 100 ? 00:00:00 ext4-rsv-conver 103 ? 00:00:00 ipv6_addrconf 112 ? 00:00:00 kworker/3:2H-kblockd 145 ? 00:00:01 systemd-journal 166 ? 00:00:00 systemd-udevd 203 ? 00:00:00 vchiq-keep/0 204 ? 00:00:00 SMIO 212 ? 00:00:00 mmal-vchiq 213 ? 00:00:00 mmal-vchiq 215 ? 00:00:00 mmal-vchiq 216 ? 00:00:00 mmal-vchiq 218 ? 00:00:00 mmal-vchiq 221 ? 00:00:00 mmal-vchiq 258 ? 00:00:00 cfg80211 266 ? 00:00:25 v3d_bin 267 ? 00:00:30 v3d_render 268 ? 00:00:00 v3d_tfu 269 ? 00:00:00 v3d_csd 270 ? 00:00:00 v3d_cache_clean 273 ? 00:00:00 brcmf_wq/mmc1:0 276 ? 00:00:00 brcmf_wdog/mmc1 385 ? 00:00:00 irq/42-vc4 hdmi 386 ? 00:00:00 irq/43-vc4 hdmi 387 ? 00:00:00 avahi-daemon 388 ? 00:00:00 cec-vc4 389 ? 00:00:00 irq/39-vc4 hdmi 390 ? 00:00:00 irq/38-vc4 hdmi 391 ? 00:00:00 cron 392 ? 00:00:00 dbus-daemon 393 ? 00:00:00 irq/48-vc4 hdmi 394 ? 00:00:00 irq/49-vc4 hdmi 395 ? 00:00:00 cec-vc4 396 ? 00:00:00 irq/45-vc4 hdmi 397 ? 00:00:00 irq/44-vc4 hdmi 399 ? 00:00:00 card0-crtc0 400 ? 00:00:00 card0-crtc1 401 ? 00:00:00 card0-crtc2 402 ? 00:00:00 card0-crtc3 403 ? 00:00:00 card0-crtc4 404 ? 00:00:00 card0-crtc5 414 ? 00:00:00 avahi-daemon 428 ? 00:00:00 rsyslogd 451 ? 00:00:00 systemd-logind 455 ? 00:00:10 thd 461 ? 00:00:00 udisksd 463 ? 00:00:00 wpa_supplicant 531 ? 00:00:00 rngd 542 ? 00:00:00 cupsd 544 ? 00:00:00 dhcpcd 550 ? 00:00:00 lightdm 578 tty7 00:07:12 Xorg 582 tty1 00:00:00 login 583 ? 00:00:00 polkitd 586 ? 00:00:00 wpa_supplicant 601 ? 00:00:00 cups-browsed 615 ? 00:00:00 lightdm 620 ? 00:00:00 systemd 621 ? 00:00:00 (sd-pam) 640 ? 00:00:00 pipewire 641 ? 00:00:05 pulseaudio 642 ? 00:00:00 lxsession 653 ? 00:00:00 rtkit-daemon 654 ? 00:00:00 dbus-daemon 662 ? 00:00:00 pipewire-media- 697 ? 00:00:00 ssh-agent 726 tty1 00:00:00 bash 738 ? 00:00:00 gvfsd 745 ? 00:00:00 gvfsd-fuse 756 ? 00:03:26 mutter 759 ? 00:00:00 lxpolkit 763 ? 00:02:57 lxpanel 764 ? 00:00:01 pcmanfm 772 ? 00:00:00 kworker/u9:1-hci0 773 ? 00:00:00 hciattach 774 ? 00:00:00 kworker/u9:2-hci0 781 ? 00:00:00 applet.py 790 ? 00:00:00 ssh-agent 831 ? 00:00:00 bluetoothd 849 ? 00:00:00 krfcommd 878 ? 00:00:00 menu-cached 885 ? 00:00:00 gvfs-udisks2-vo 890 ? 00:00:00 gvfs-afc-volume 895 ? 00:00:00 gvfs-mtp-volume 899 ? 00:00:00 gvfs-goa-volume 903 ? 00:00:00 gvfs-gphoto2-vo 927 ? 00:00:00 gvfsd-trash 1070 ? 00:00:00 systemd-timesyn 1072 ? 00:00:02 lxterminal 1078 pts/0 00:00:00 bash 1085 ? 00:02:37 geany 1093 pts/1 00:00:01 bash 1104 ? 00:00:05 packagekitd 1469 ? 00:04:03 mousepad 1477 ? 00:00:00 xfconfd 1484 ? 00:00:00 dconf-service 1492 ? 00:00:00 gvfsd-network 1505 ? 00:00:00 gvfsd-dnssd 1823 ? 00:01:40 firefox-esr 1901 ? 00:00:15 Web Content 1933 ? 00:00:00 Privileged Cont 1963 ? 00:00:06 WebExtensions 1999 ? 00:00:00 RDD Process 2058 ? 00:00:02 Web Content 2265 ? 00:00:00 kworker/0:0-events 2270 pts/1 00:00:00 thttpd_wrapper 2271 ? 00:00:27 thttpd 2288 ? 00:00:01 kworker/u8:3-events_unbound 2300 ? 00:00:00 kworker/1:1-events 2438 ? 00:00:00 kworker/3:2-events_power_efficient 2443 ? 00:00:00 kworker/2:1-mm_percpu_wq 2447 ? 00:00:00 kworker/3:0H 2465 ? 00:00:00 gvfsd-metadata 2492 ? 00:00:01 Web Content 2539 ? 00:00:00 kworker/1:2H 2540 ? 00:00:00 Web Content 2563 ? 00:00:00 kworker/2:0H 2577 ? 00:00:00 kworker/u8:0-events_unbound 2578 ? 00:00:00 kworker/2:2-mm_percpu_wq 2592 ? 00:00:00 kworker/0:2H 2593 ? 00:00:00 kworker/3:0-events 2595 ? 00:00:00 kworker/1:3-events 2596 ? 00:00:00 kworker/2:3-events 2603 ? 00:00:00 kworker/0:1-events 2608 ? 00:00:00 kworker/2:2H 2609 ? 00:00:00 kworker/3:1-events 2610 ? 00:00:00 kworker/u8:1-events_unbound 2611 ? 00:00:00 kworker/u8:2-events_unbound 2612 ? 00:00:00 kworker/1:0-events 2613 ? 00:00:00 kworker/0:3-events 2614 pts/1 00:00:00 ps pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # This time we started thttpd with the wrapper and the PID's are: 2270 pts/1 00:00:00 thttpd_wrapper # 2271 ? 00:00:27 thttpd # pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo kill 2270 2271 ### sudo entering the command twice shows that it actually killed the processes. pi@raspberrypi:/etc $ sudo kill 2270 2271 ### sudo entering the command twice shows that it actually killed the processes. kill: (2270): No such process kill: (2271): No such process pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man makeweb ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man htpasswd ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man syslogtocern ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man thttpd ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man redirect ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man ssi ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man strftime ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man weblog_parse ### No manual entry for weblog_parse pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ man http_get ### No manual entry for http_get pi@raspberrypi:/etc $ ### It looks like all of the man pages that come with thttpd are working. Some systems will not find the path to the man pages and those systems can use: sudo cp -iav /home/local/man/* /usr/local/man # to copy them over into "/usr/local/man" (see below). pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ************************************ pi@raspberrypi:/etc $ ### If the man pages did not work, this should let them work. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd /home/local/man ### pi@raspberrypi:/home/local/man $ pi@raspberrypi:/home/local/man $ ls -al ### total 16 drwxr-xr-x 4 root root 4096 Mar 16 21:27 . drwxr-xr-x 5 root root 4096 Mar 16 21:27 .. drwxr-xr-x 2 root root 4096 Mar 16 21:27 man1 drwxr-xr-x 2 root root 4096 Mar 16 21:27 man8 pi@raspberrypi:/home/local/man $ pi@raspberrypi:/home/local/man $ pi@raspberrypi:/home/local/man $ sudo cp -iav /home/local/man/* /usr/local/man ### sudo '/home/local/man/man1' -> '/usr/local/man/man1' '/home/local/man/man1/makeweb.1' -> '/usr/local/man/man1/makeweb.1' '/home/local/man/man1/htpasswd.1' -> '/usr/local/man/man1/htpasswd.1' '/home/local/man/man8' -> '/usr/local/man/man8' '/home/local/man/man8/thttpd.8' -> '/usr/local/man/man8/thttpd.8' '/home/local/man/man8/redirect.8' -> '/usr/local/man/man8/redirect.8' '/home/local/man/man8/ssi.8' -> '/usr/local/man/man8/ssi.8' '/home/local/man/man8/syslogtocern.8' -> '/usr/local/man/man8/syslogtocern.8' pi@raspberrypi:/home/local/man $ pi@raspberrypi:/home/local/man $ pi@raspberrypi:/home/local/man $ # Then test to see if the man pages work, as was done above. pi@raspberrypi:/home/local/man $ pi@raspberrypi:/home/local/man $ cd /etc pi@raspberrypi:/etc $ ###****************************make log entries* pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Since I was having problems with my setup I decided I needed more information in my logs to be able to see when I had to restart my computer when my power went down, I am on batteries and an inverter, and other problems so I built the "os-debug" directory under /home/local/sbin/. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # thttpd is still running and I am going to change and add the os-debug files and then you can see the difference they make to the log files. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cd /home/local/sbin/os-debug/ ### pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ # The files in os-debug have additional thttpd pid numbers to help with OS problems. pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ ls -al ### total 48 drwxr-xr-x 2 root root 4096 Mar 17 11:14 . drwxr-xr-x 4 root root 4096 Mar 17 11:41 .. -rwxr-xr-- 1 root root 185 Mar 17 11:14 datelog -r-xr-xr-- 1 root root 185 Mar 17 11:14 datelog~ -rwxr-xr-- 1 root root 385 Mar 17 11:14 dead-thttpd -r-xr-xr-- 1 root root 385 Mar 17 11:14 dead-thttpd~ -r--r--r-- 1 root root 805 Mar 17 11:14 readme.txt -r--r--r-- 1 root root 805 Mar 17 11:14 readme.txt~ -rwxr-xr-- 1 root root 1965 Mar 17 11:14 thttpd-rotate -r-xr-xr-- 1 root root 1965 Mar 17 11:14 thttpd-rotate~ -rwxr-xr-- 1 root root 153 Mar 17 11:14 thttpd_wrapper -r-xr-xr-- 1 root root 153 Mar 17 11:14 thttpd_wrapper~ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat readme.txt ### readme.txt The files in os-debug have additional thttpd pid numbers to help with OS problems. frank@frank-desktop:~$ frank@frank-desktop:~$ cd /home/local/sbin/os-debug/ frank@frank-desktop:/home/local/sbin/os-debug$ frank@frank-desktop:/home/local/sbin/os-debug$ sudo cp -iav d* thttp*r ../ ### 'datelog' -> '../datelog' 'dead-thttpd' -> '../dead-thttpd' 'thttpd_wrapper' -> '../thttpd_wrapper' frank@frank-desktop:/home/local/sbin/os-debug$ Now we have to replace thttpd-rotate in /etc/cron.daily. frank@frank-desktop:/home/local/sbin/os-debug$ frank@frank-desktop:/home/local/sbin/os-debug$ sudo cp -iav thttpd-rotate /etc/cron.daily ### sudo - this will ask to overwrite the file, we are adding lines for thttpd pid information, answer: y. frank@frank-desktop:/home/local/sbin/os-debug$ frank@frank-desktop:~$ frank@frank-desktop:~$ cd /home/local/sbin/os-debug/ ### frank@frank-desktop:/home/local/sbin/os-debug$ frank@frank-desktop:/home/local/sbin/os-debug$ sudo cp -iav d* thttp*r ../ ### sudo 'datelog' -> '../datelog' 'dead-thttpd' -> '../dead-thttpd' 'thttpd_wrapper' -> '../thttpd_wrapper' frank@frank-desktop:/home/local/sbin/os-debug$ Now we have to replace thttpd-rotate in /etc/cron.daily. frank@frank-desktop:/home/local/sbin/os-debug$ pi@raspberrypi:/home/local/sbin/os-debug $ sudo cp -iav thttpd-rotate /etc/cron.daily # this will ask to overwrite the file, we are adding lines for thttpd pid information, answer: y. cp: overwrite '/etc/cron.daily/thttpd-rotate'? y 'thttpd-rotate' -> '/etc/cron.daily/thttpd-rotate' pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ frank@frank-desktop:/home/local/sbin/os-debug$ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ sudo cp -iav d* thttp*r ../ ### sudo - overwrite wrapper = y 'datelog' -> '../datelog' 'datelog~' -> '../datelog~' 'dead-thttpd' -> '../dead-thttpd' 'dead-thttpd~' -> '../dead-thttpd~' cp: overwrite '../thttpd_wrapper'? y 'thttpd_wrapper' -> '../thttpd_wrapper' pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ sudo cp -iav thttpd-rotate /etc/cron.daily ### sudo this will ask to overwrite the file, we are adding lines for thttpd pid information, answer: y. cp: overwrite '/etc/cron.daily/thttpd-rotate'? y ### 'thttpd-rotate' -> '/etc/cron.daily/thttpd-rotate' pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat thttpd_wrapper ### #!/bin/sh # thttpd_wrapper while true ; do /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config /home/local/sbin/dead-thttpd sleep 10 done # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat thttpd-rotate ### #!/bin/sh # /etc/cron.daily/thttpd-rotate cd /home/local/www/logs rm -f thttpd_log.50 mv thttpd_log.49 thttpd_log.50 mv thttpd_log.48 thttpd_log.49 mv thttpd_log.47 thttpd_log.48 mv thttpd_log.46 thttpd_log.47 mv thttpd_log.45 thttpd_log.46 mv thttpd_log.44 thttpd_log.45 mv thttpd_log.43 thttpd_log.44 mv thttpd_log.42 thttpd_log.43 mv thttpd_log.41 thttpd_log.42 mv thttpd_log.40 thttpd_log.41 mv thttpd_log.39 thttpd_log.40 mv thttpd_log.38 thttpd_log.39 mv thttpd_log.37 thttpd_log.38 mv thttpd_log.36 thttpd_log.37 mv thttpd_log.35 thttpd_log.36 mv thttpd_log.34 thttpd_log.35 mv thttpd_log.33 thttpd_log.34 mv thttpd_log.32 thttpd_log.33 mv thttpd_log.31 thttpd_log.32 mv thttpd_log.30 thttpd_log.31 mv thttpd_log.29 thttpd_log.30 mv thttpd_log.28 thttpd_log.29 mv thttpd_log.27 thttpd_log.28 mv thttpd_log.26 thttpd_log.27 mv thttpd_log.25 thttpd_log.26 mv thttpd_log.24 thttpd_log.25 mv thttpd_log.23 thttpd_log.24 mv thttpd_log.22 thttpd_log.23 mv thttpd_log.21 thttpd_log.22 mv thttpd_log.20 thttpd_log.21 mv thttpd_log.19 thttpd_log.20 mv thttpd_log.18 thttpd_log.19 mv thttpd_log.17 thttpd_log.18 mv thttpd_log.16 thttpd_log.17 mv thttpd_log.15 thttpd_log.16 mv thttpd_log.14 thttpd_log.15 mv thttpd_log.13 thttpd_log.14 mv thttpd_log.12 thttpd_log.13 mv thttpd_log.11 thttpd_log.12 mv thttpd_log.10 thttpd_log.11 mv thttpd_log.09 thttpd_log.10 mv thttpd_log.08 thttpd_log.09 mv thttpd_log.07 thttpd_log.08 mv thttpd_log.06 thttpd_log.07 mv thttpd_log.05 thttpd_log.06 mv thttpd_log.04 thttpd_log.05 mv thttpd_log.03 thttpd_log.04 mv thttpd_log.02 thttpd_log.03 mv thttpd_log.01 thttpd_log.02 date >> thttpd_log echo "log rotate end, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log mv thttpd_log thttpd_log.01 date > thttpd_log echo "old log rotate end, old thttpd pid = " `ps -C thttpd` >> thttpd_log kill -usr1 `cat /var/run/thttpd.pid` sleep 15 echo "log rotate new, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat dead-thttpd ### #!/bin/sh # dead-thttpd echo "old dead-thttpd pid = " `cat /var/run/thttpd.pid` >> /home/local/www/logs/thttpd_log date >> /home/local/www/logs/thttpd_log w >> /home/local/www/logs/thttpd_log # sleep 15 # echo "dead-thttpd, new thttpd pid = " `ps -C thttpd` >> /home/local/www/logs/thttpd_log # date >> /home/local/www/logs/thttpd_log # w >> /home/local/www/logs/thttpd_log # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat datelog ### #!/bin/sh # datelog echo "datelog, thttpd pid = " `ps -C thttpd` >> /home/local/www/logs/thttpd_log date >> /home/local/www/logs/thttpd_log w >> /home/local/www/logs/thttpd_log # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ # sudo datelog is entered at the command prompt and there has been a problem with the system finding it, which I will test. When the commands are run from the system they all work but there seems to be a bug with them coming from the command line. pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cd /etc/cron.daily ### pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al ### total 40 drwxr-xr-x 2 root root 4096 Mar 17 11:48 . drwxr-xr-x 126 root root 12288 Mar 17 11:37 .. -rwxr-xr-x 1 root root 1478 Jun 10 2021 apt-compat -rwxr-xr-x 1 root root 1298 Jan 29 2021 dpkg -rwxr-xr-x 1 root root 377 Feb 28 2021 logrotate -rwxr-xr-x 1 root root 1123 Feb 19 2021 man-db -rw-r--r-- 1 root root 102 Feb 22 2021 .placeholder -rwxr-xr-- 1 root root 1965 Mar 17 11:14 thttpd-rotate pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ cat thttpd-rotate ### #!/bin/sh # /etc/cron.daily/thttpd-rotate cd /home/local/www/logs rm -f thttpd_log.50 mv thttpd_log.49 thttpd_log.50 mv thttpd_log.48 thttpd_log.49 mv thttpd_log.47 thttpd_log.48 mv thttpd_log.46 thttpd_log.47 mv thttpd_log.45 thttpd_log.46 mv thttpd_log.44 thttpd_log.45 mv thttpd_log.43 thttpd_log.44 mv thttpd_log.42 thttpd_log.43 mv thttpd_log.41 thttpd_log.42 mv thttpd_log.40 thttpd_log.41 mv thttpd_log.39 thttpd_log.40 mv thttpd_log.38 thttpd_log.39 mv thttpd_log.37 thttpd_log.38 mv thttpd_log.36 thttpd_log.37 mv thttpd_log.35 thttpd_log.36 mv thttpd_log.34 thttpd_log.35 mv thttpd_log.33 thttpd_log.34 mv thttpd_log.32 thttpd_log.33 mv thttpd_log.31 thttpd_log.32 mv thttpd_log.30 thttpd_log.31 mv thttpd_log.29 thttpd_log.30 mv thttpd_log.28 thttpd_log.29 mv thttpd_log.27 thttpd_log.28 mv thttpd_log.26 thttpd_log.27 mv thttpd_log.25 thttpd_log.26 mv thttpd_log.24 thttpd_log.25 mv thttpd_log.23 thttpd_log.24 mv thttpd_log.22 thttpd_log.23 mv thttpd_log.21 thttpd_log.22 mv thttpd_log.20 thttpd_log.21 mv thttpd_log.19 thttpd_log.20 mv thttpd_log.18 thttpd_log.19 mv thttpd_log.17 thttpd_log.18 mv thttpd_log.16 thttpd_log.17 mv thttpd_log.15 thttpd_log.16 mv thttpd_log.14 thttpd_log.15 mv thttpd_log.13 thttpd_log.14 mv thttpd_log.12 thttpd_log.13 mv thttpd_log.11 thttpd_log.12 mv thttpd_log.10 thttpd_log.11 mv thttpd_log.09 thttpd_log.10 mv thttpd_log.08 thttpd_log.09 mv thttpd_log.07 thttpd_log.08 mv thttpd_log.06 thttpd_log.07 mv thttpd_log.05 thttpd_log.06 mv thttpd_log.04 thttpd_log.05 mv thttpd_log.03 thttpd_log.04 mv thttpd_log.02 thttpd_log.03 mv thttpd_log.01 thttpd_log.02 date >> thttpd_log echo "log rotate end, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log mv thttpd_log thttpd_log.01 date > thttpd_log echo "old log rotate end, old thttpd pid = " `ps -C thttpd` >> thttpd_log kill -usr1 `cat /var/run/thttpd.pid` sleep 15 echo "log rotate new, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log # pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # That looks better! there is a sleep 15 near the end and that is to wait for the new pid to be set up. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Notice that this program takes 15 seconds so that the new PID number will have time to come up. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Also, the lines are not written to the log file until they finish. The "kill -usr1 `cat /var/run/thttpd.pid`" stops thttpd from taking any more requests but lets the ones that are running finish before it starts again with a new log file. That is why at times one will see extra lines after the log rotate normal ending. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo ./thttpd-rotate ### sudo mv: cannot stat 'thttpd_log.49': No such file or directory mv: cannot stat 'thttpd_log.48': No such file or directory mv: cannot stat 'thttpd_log.47': No such file or directory mv: cannot stat 'thttpd_log.46': No such file or directory mv: cannot stat 'thttpd_log.45': No such file or directory mv: cannot stat 'thttpd_log.44': No such file or directory mv: cannot stat 'thttpd_log.43': No such file or directory mv: cannot stat 'thttpd_log.42': No such file or directory mv: cannot stat 'thttpd_log.41': No such file or directory mv: cannot stat 'thttpd_log.40': No such file or directory mv: cannot stat 'thttpd_log.39': No such file or directory mv: cannot stat 'thttpd_log.38': No such file or directory mv: cannot stat 'thttpd_log.37': No such file or directory mv: cannot stat 'thttpd_log.36': No such file or directory mv: cannot stat 'thttpd_log.35': No such file or directory mv: cannot stat 'thttpd_log.34': No such file or directory mv: cannot stat 'thttpd_log.33': No such file or directory mv: cannot stat 'thttpd_log.32': No such file or directory mv: cannot stat 'thttpd_log.31': No such file or directory mv: cannot stat 'thttpd_log.30': No such file or directory mv: cannot stat 'thttpd_log.29': No such file or directory mv: cannot stat 'thttpd_log.28': No such file or directory mv: cannot stat 'thttpd_log.27': No such file or directory mv: cannot stat 'thttpd_log.26': No such file or directory mv: cannot stat 'thttpd_log.25': No such file or directory mv: cannot stat 'thttpd_log.24': No such file or directory mv: cannot stat 'thttpd_log.23': No such file or directory mv: cannot stat 'thttpd_log.22': No such file or directory mv: cannot stat 'thttpd_log.21': No such file or directory mv: cannot stat 'thttpd_log.20': No such file or directory mv: cannot stat 'thttpd_log.19': No such file or directory mv: cannot stat 'thttpd_log.18': No such file or directory mv: cannot stat 'thttpd_log.17': No such file or directory mv: cannot stat 'thttpd_log.16': No such file or directory mv: cannot stat 'thttpd_log.15': No such file or directory mv: cannot stat 'thttpd_log.14': No such file or directory mv: cannot stat 'thttpd_log.13': No such file or directory mv: cannot stat 'thttpd_log.12': No such file or directory mv: cannot stat 'thttpd_log.11': No such file or directory mv: cannot stat 'thttpd_log.10': No such file or directory mv: cannot stat 'thttpd_log.09': No such file or directory mv: cannot stat 'thttpd_log.08': No such file or directory mv: cannot stat 'thttpd_log.07': No such file or directory mv: cannot stat 'thttpd_log.06': No such file or directory mv: cannot stat 'thttpd_log.05': No such file or directory mv: cannot stat 'thttpd_log.04': No such file or directory mv: cannot stat 'thttpd_log.03': No such file or directory pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo datelog ### sudo sudo: datelog: command not found # This is the problem when the command is entered from the command line and it is not in "/usr/local/sbin/" even though all of the other commands ran from "/home/local/sbin/"! pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo ls -al /home/local/sbin ### total 192 drwxr-xr-x 4 root root 4096 Mar 17 15:33 . drwxr-xr-x 5 root root 4096 Mar 16 21:27 .. -rwxr-xr-- 1 root root 185 Mar 17 11:14 datelog -r-xr-xr-- 1 root root 185 Mar 17 11:14 datelog~ -rwxr-xr-- 1 root root 385 Mar 17 11:14 dead-thttpd -r-xr-xr-- 1 root root 385 Mar 17 11:14 dead-thttpd~ -rwxr-xr-x 1 root root 15296 Mar 16 21:27 htpasswd -rwxr-sr-x 1 root www 14504 Mar 16 21:27 makeweb drwxr-xr-x 2 root root 4096 Mar 17 11:14 os-debug -r-xr-xr-x 1 root root 2878 Mar 16 21:27 syslogtocern -r-xr-xr-x 1 bin bin 121272 Mar 16 21:27 thttpd drwxr-xr-x 2 root root 4096 Mar 17 11:13 thttpd-extras -rwxr-xr-- 1 root root 153 Mar 17 11:14 thttpd_wrapper pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo cp -iav /home/local/sbin/* /usr/local/sbin ### sudo '/home/local/sbin/datelog' -> '/usr/local/sbin/datelog' '/home/local/sbin/datelog~' -> '/usr/local/sbin/datelog~' '/home/local/sbin/dead-thttpd' -> '/usr/local/sbin/dead-thttpd' '/home/local/sbin/dead-thttpd~' -> '/usr/local/sbin/dead-thttpd~' '/home/local/sbin/htpasswd' -> '/usr/local/sbin/htpasswd' '/home/local/sbin/makeweb' -> '/usr/local/sbin/makeweb' '/home/local/sbin/os-debug' -> '/usr/local/sbin/os-debug' '/home/local/sbin/os-debug/dead-thttpd' -> '/usr/local/sbin/os-debug/dead-thttpd' '/home/local/sbin/os-debug/readme.txt' -> '/usr/local/sbin/os-debug/readme.txt' '/home/local/sbin/os-debug/thttpd-rotate~' -> '/usr/local/sbin/os-debug/thttpd-rotate~' '/home/local/sbin/os-debug/thttpd-rotate' -> '/usr/local/sbin/os-debug/thttpd-rotate' '/home/local/sbin/os-debug/datelog~' -> '/usr/local/sbin/os-debug/datelog~' '/home/local/sbin/os-debug/dead-thttpd~' -> '/usr/local/sbin/os-debug/dead-thttpd~' '/home/local/sbin/os-debug/thttpd_wrapper' -> '/usr/local/sbin/os-debug/thttpd_wrapper' '/home/local/sbin/os-debug/readme.txt~' -> '/usr/local/sbin/os-debug/readme.txt~' '/home/local/sbin/os-debug/datelog' -> '/usr/local/sbin/os-debug/datelog' '/home/local/sbin/os-debug/thttpd_wrapper~' -> '/usr/local/sbin/os-debug/thttpd_wrapper~' '/home/local/sbin/syslogtocern' -> '/usr/local/sbin/syslogtocern' '/home/local/sbin/thttpd' -> '/usr/local/sbin/thttpd' '/home/local/sbin/thttpd-extras' -> '/usr/local/sbin/thttpd-extras' '/home/local/sbin/thttpd-extras/thttpd.sh' -> '/usr/local/sbin/thttpd-extras/thttpd.sh' '/home/local/sbin/thttpd-extras/thttpd_config' -> '/usr/local/sbin/thttpd-extras/thttpd_config' '/home/local/sbin/thttpd-extras/anvil_thttpd.gif' -> '/usr/local/sbin/thttpd-extras/anvil_thttpd.gif' '/home/local/sbin/thttpd-extras/readme.txt' -> '/usr/local/sbin/thttpd-extras/readme.txt' '/home/local/sbin/thttpd-extras/thttpd-rotate~' -> '/usr/local/sbin/thttpd-extras/thttpd-rotate~' '/home/local/sbin/thttpd-extras/thttpd.sh~' -> '/usr/local/sbin/thttpd-extras/thttpd.sh~' '/home/local/sbin/thttpd-extras/thttpd_config~' -> '/usr/local/sbin/thttpd-extras/thttpd_config~' '/home/local/sbin/thttpd-extras/sitemap.xml' -> '/usr/local/sbin/thttpd-extras/sitemap.xml' '/home/local/sbin/thttpd-extras/thttpd-rotate' -> '/usr/local/sbin/thttpd-extras/thttpd-rotate' '/home/local/sbin/thttpd-extras/sitemap.xml.txt' -> '/usr/local/sbin/thttpd-extras/sitemap.xml.txt' '/home/local/sbin/thttpd-extras/favicon.ico' -> '/usr/local/sbin/thttpd-extras/favicon.ico' '/home/local/sbin/thttpd-extras/rc.local~' -> '/usr/local/sbin/thttpd-extras/rc.local~' '/home/local/sbin/thttpd-extras/thttpd_wrapper' -> '/usr/local/sbin/thttpd-extras/thttpd_wrapper' '/home/local/sbin/thttpd-extras/robots-site.txt' -> '/usr/local/sbin/thttpd-extras/robots-site.txt' '/home/local/sbin/thttpd-extras/robots.txt' -> '/usr/local/sbin/thttpd-extras/robots.txt' '/home/local/sbin/thttpd-extras/rc.local' -> '/usr/local/sbin/thttpd-extras/rc.local' '/home/local/sbin/thttpd-extras/thttpd_wrapper~' -> '/usr/local/sbin/thttpd-extras/thttpd_wrapper~' '/home/local/sbin/thttpd_wrapper' -> '/usr/local/sbin/thttpd_wrapper' pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al /usr/local/sbin ### total 192 drwxr-xr-x 4 root root 4096 Mar 17 16:09 . drwxr-xr-x 10 root root 4096 Jan 27 19:58 .. -rwxr-xr-- 1 root root 185 Mar 17 11:14 datelog -r-xr-xr-- 1 root root 185 Mar 17 11:14 datelog~ -rwxr-xr-- 1 root root 385 Mar 17 11:14 dead-thttpd -r-xr-xr-- 1 root root 385 Mar 17 11:14 dead-thttpd~ -rwxr-xr-x 1 root root 15296 Mar 16 21:27 htpasswd -rwxr-sr-x 1 root www 14504 Mar 16 21:27 makeweb drwxr-xr-x 2 root root 4096 Mar 17 11:14 os-debug -r-xr-xr-x 1 root root 2878 Mar 16 21:27 syslogtocern -r-xr-xr-x 1 bin bin 121272 Mar 16 21:27 thttpd drwxr-xr-x 2 root root 4096 Mar 17 11:13 thttpd-extras -rwxr-xr-- 1 root root 153 Mar 17 11:14 thttpd_wrapper pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo datelog ### pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Magic!! Now sudo datelog works!!! The only thing different is the command is coming from the command line and not from a program which all of the other commands come from and work without being under /usr/local/sbin/!!! pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ cd /home/local/www/logs ### pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al ### total 24 drwxr-xr-x 2 root www 4096 Mar 17 16:04 . drwxr-xr-x 5 root www 4096 Mar 17 12:04 .. -rw-r--r-- 1 nobody nogroup 1404 Mar 17 16:09 thttpd_log -rw-r--r-- 1 nobody nogroup 1582 Mar 17 16:04 thttpd_log.01 -rw-r--r-- 1 nobody nogroup 1685 Mar 17 15:16 thttpd_log.02 -rw-r--r-- 1 nobody nogroup 2291 Mar 17 14:48 thttpd_log.03 pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.03 ### 127.0.0.1 - - [17/Mar/2022:18:27:19 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:20 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:24 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 127.0.0.1 - - [17/Mar/2022:18:27:30 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.15 - - [17/Mar/2022:19:18:17 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:18:17 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:27 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:29 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.15/ac0xl/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:31 +0000] "GET /favicon.ico HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:52 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:31:52 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/readme.txt" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:19:33:55 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" Thu 17 Mar 2022 02:48:42 PM MDT 14:48:42 up 4:24, 2 users, load average: 0.08, 0.06, 0.07 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 14:45m 8:19 0.60s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 14:45m 0.09s 0.06s -bash pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.02 ### Thu 17 Mar 2022 02:48:42 PM MDT 14:48:42 up 4:24, 2 users, load average: 0.08, 0.06, 0.07 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 14:45m 8:19 0.60s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 14:45m 0.09s 0.06s -bash 192.168.19.12 - - [17/Mar/2022:21:12:10 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:21:12:11 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.3.0) Gecko/68.3.0 Firefox/68.3.0" 192.168.19.12 - - [17/Mar/2022:21:12:39 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:21:12:53 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:21:13:03 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:21:13:11 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" Thu 17 Mar 2022 03:16:38 PM MDT 15:16:38 up 4:52, 2 users, load average: 0.11, 0.26, 0.25 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 15:13m 9:29 0.61s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 15:13m 0.09s 0.06s -bash pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.01 ### Thu 17 Mar 2022 03:16:38 PM MDT 15:16:38 up 4:52, 2 users, load average: 0.11, 0.26, 0.25 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 15:13m 9:29 0.61s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 15:13m 0.09s 0.06s -bash 192.168.19.23 - - [17/Mar/2022:21:46:12 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (Android 6.0; Mobile; rv:98.0) Gecko/98.0 Firefox/98.0" 192.168.19.23 - - [17/Mar/2022:21:46:20 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (Android 6.0; Mobile; rv:98.0) Gecko/98.0 Firefox/98.0" 192.168.19.23 - - [17/Mar/2022:21:46:26 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/" "Mozilla/5.0 (Android 6.0; Mobile; rv:98.0) Gecko/98.0 Firefox/98.0" 192.168.19.23 - - [17/Mar/2022:21:46:38 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.15/" "Mozilla/5.0 (Android 6.0; Mobile; rv:98.0) Gecko/98.0 Firefox/98.0" 192.168.19.23 - - [17/Mar/2022:21:46:44 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.15/" "Mozilla/5.0 (Android 6.0; Mobile; rv:98.0) Gecko/98.0 Firefox/98.0" Thu 17 Mar 2022 04:04:46 PM MDT log rotate end, thttpd pid = PID TTY TIME CMD 3157 ? 00:00:35 thttpd 16:04:46 up 5:41, 2 users, load average: 0.02, 0.04, 0.06 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 16:01m 10:09 0.65s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 16:01m 0.09s 0.06s -bash pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log ### Thu 17 Mar 2022 04:04:46 PM MDT old log rotate end, old thttpd pid = PID TTY TIME CMD 3157 ? 00:00:35 thttpd log rotate new, thttpd pid = PID TTY TIME CMD 3387 ? 00:00:00 thttpd 16:05:01 up 5:41, 2 users, load average: 0.01, 0.03, 0.05 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 16:01m 10:09 0.65s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 16:01m 0.09s 0.06s -bash 192.168.19.12 - - [17/Mar/2022:22:06:40 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.15/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:22:06:46 +0000] "GET /robots.txt HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:22:06:52 +0000] "GET /readme.txt HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" datelog, thttpd pid = PID TTY TIME CMD 3387 ? 00:00:03 thttpd Thu 17 Mar 2022 04:09:56 PM MDT 16:09:56 up 5:46, 2 users, load average: 0.00, 0.00, 0.02 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 16:06m 10:14 0.65s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 16:06m 0.09s 0.06s -bash pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### As you can see thttpd can be updated while it is still running! pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### While it is still running I will finish with adding more "users" to the web site. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # ***************************** pi@raspberrypi:/home/local/www/logs $ # ***************************** pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Adding more Web Users, (Headings). pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Other ideas for web "users" could be: documents, downloads, games, memes, music, notices, pictures, videos, etc., just categories of what you want on your website, or what you want to share. This time we will use a different process to add only www users. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ addgroup --help ### adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a normal user pi@raspberrypi:/home/local/www/logs $ date ### Just to input the time. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Again the process: pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # sudo adduser --ingroup www videos # (new web user "videos") pi@raspberrypi:/home/local/www/logs $ # (use a password that is different from the one for "(pi)") pi@raspberrypi:/home/local/www/logs $ # su videos # (shell to user "videos") pi@raspberrypi:/home/local/www/logs $ # cd pi@raspberrypi:/home/local/www/logs $ # touch .user-number # that is a period and the number all in one. pi@raspberrypi:/home/local/www/logs $ # makeweb pi@raspberrypi:/home/local/www/logs $ # ls -al pi@raspberrypi:/home/local/www/logs $ # exit # (exit the shell back to where you were) pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # ********* pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # This is where if you have a list of typed "users" you can just copy the "name" and then be able to paste it several times without having to re-type it, or making typing mistakes. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Since I am rebuilding my site I will add delinquent-accounts/ just to keep my numbers the same. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo adduser --ingroup www delinquent-accounts ### sudo Adding user `delinquent-accounts' ... Adding new user `delinquent-accounts' (1002) with group `www' ... Creating home directory `/home/delinquent-accounts' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for delinquent-accounts Enter the new value, or press ENTER for the default Full Name []: delinquent-accounts ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ su delinquent-accounts ### Password: delinquent-accounts@raspberrypi:/home/local/www/logs $ delinquent-accounts@raspberrypi:/home/local/www/logs $ delinquent-accounts@raspberrypi:/home/local/www/logs $ cd ### delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ touch .1002 ### delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/delinquent-accounts Created symbolic link /home/delinquent-accounts/public_html delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 delinquent-accounts www 4096 Mar 17 16:40 . drwxr-xr-x 6 root root 4096 Mar 17 16:37 .. -rw-r--r-- 1 delinquent-accounts www 0 Mar 17 16:40 .1002 -rw-r--r-- 1 delinquent-accounts www 220 Mar 17 16:37 .bash_logout -rw-r--r-- 1 delinquent-accounts www 3523 Mar 17 16:37 .bashrc -rw-r--r-- 1 delinquent-accounts www 1670 Mar 17 16:37 .mkshrc -rw-r--r-- 1 delinquent-accounts www 807 Mar 17 16:37 .profile lrwxrwxrwx 1 delinquent-accounts www 41 Mar 17 16:40 public_html -> /home/local/www/users/delinquent-accounts delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # ********* pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # This is where if you have a list of typed "users" you can just copy the "name" and then be able to paste it several times without having to re-type it, or making typing mistakes. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # ******************** Lets try adding "documents". pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo adduser --ingroup www documents ### sudo Adding user `documents' ... Adding new user `documents' (1003) with group `www' ... Creating home directory `/home/documents' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for documents Enter the new value, or press ENTER for the default Full Name []: documents ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ su documents ### Password: documents@raspberrypi:/home/local/www/logs $ documents@raspberrypi:/home/local/www/logs $ documents@raspberrypi:/home/local/www/logs $ cd ### documents@raspberrypi:~ $ documents@raspberrypi:~ $ documents@raspberrypi:~ $ touch .1003 ### documents@raspberrypi:~ $ documents@raspberrypi:~ $ documents@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/documents Created symbolic link /home/documents/public_html documents@raspberrypi:~ $ documents@raspberrypi:~ $ documents@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 documents www 4096 Mar 17 16:46 . drwxr-xr-x 7 root root 4096 Mar 17 16:44 .. -rw-r--r-- 1 documents www 0 Mar 17 16:46 .1003 -rw-r--r-- 1 documents www 220 Mar 17 16:44 .bash_logout -rw-r--r-- 1 documents www 3523 Mar 17 16:44 .bashrc -rw-r--r-- 1 documents www 1670 Mar 17 16:44 .mkshrc -rw-r--r-- 1 documents www 807 Mar 17 16:44 .profile lrwxrwxrwx 1 documents www 31 Mar 17 16:46 public_html -> /home/local/www/users/documents documents@raspberrypi:~ $ documents@raspberrypi:~ $ documents@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo adduser --ingroup www downloads ### sudo Adding user `downloads' ... Adding new user `downloads' (1004) with group `www' ... Creating home directory `/home/downloads' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for downloads Enter the new value, or press ENTER for the default Full Name []: downloads ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su downloads ### Password: downloads@raspberrypi:/home $ downloads@raspberrypi:/home $ downloads@raspberrypi:/home $ downloads@raspberrypi:/home $ cd ### downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ touch .1004 ### downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/downloads Created symbolic link /home/downloads/public_html downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 downloads www 4096 Mar 17 16:53 . drwxr-xr-x 8 root root 4096 Mar 17 16:47 .. -rw-r--r-- 1 downloads www 0 Mar 17 16:53 .1004 -rw-r--r-- 1 downloads www 220 Mar 17 16:47 .bash_logout -rw-r--r-- 1 downloads www 3523 Mar 17 16:47 .bashrc -rw-r--r-- 1 downloads www 1670 Mar 17 16:47 .mkshrc -rw-r--r-- 1 downloads www 807 Mar 17 16:47 .profile lrwxrwxrwx 1 downloads www 31 Mar 17 16:53 public_html -> /home/local/www/users/downloads downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ ls -al ### Just to see how we are doing. total 32 drwxr-xr-x 8 root root 4096 Mar 17 16:47 . drwxr-xr-x 18 root root 4096 Jan 27 20:21 .. drwxr-xr-x 2 ac0xl www 4096 Mar 16 23:48 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 17 16:40 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 17 16:46 documents drwxr-xr-x 2 downloads www 4096 Mar 17 16:53 downloads drwxr-xr-x 5 root root 4096 Mar 16 21:27 local drwxr-xr-x 19 pi pi 4096 Mar 17 16:48 pi pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www freedom ### sudo Adding user `freedom' ... Adding new user `freedom' (1005) with group `www' ... Creating home directory `/home/freedom' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for freedom Enter the new value, or press ENTER for the default Full Name []: freedom ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su freedom ### Password: freedom@raspberrypi:/home $ freedom@raspberrypi:/home $ freedom@raspberrypi:/home $ cd ### freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ touch .1005 ### freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/freedom Created symbolic link /home/freedom/public_html freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 freedom www 4096 Mar 17 16:57 . drwxr-xr-x 9 root root 4096 Mar 17 16:55 .. -rw-r--r-- 1 freedom www 0 Mar 17 16:57 .1005 -rw-r--r-- 1 freedom www 220 Mar 17 16:55 .bash_logout -rw-r--r-- 1 freedom www 3523 Mar 17 16:55 .bashrc -rw-r--r-- 1 freedom www 1670 Mar 17 16:55 .mkshrc -rw-r--r-- 1 freedom www 807 Mar 17 16:55 .profile lrwxrwxrwx 1 freedom www 29 Mar 17 16:57 public_html -> /home/local/www/users/freedom freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www memes ### sudo Adding user `memes' ... Adding new user `memes' (1006) with group `www' ... Creating home directory `/home/memes' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for memes Enter the new value, or press ENTER for the default Full Name []: memes ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su memes ### Password: memes@raspberrypi:/home $ memes@raspberrypi:/home $ memes@raspberrypi:/home $ cd ### memes@raspberrypi:~ $ memes@raspberrypi:~ $ memes@raspberrypi:~ $ touch .1006 ### memes@raspberrypi:~ $ memes@raspberrypi:~ $ memes@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/memes Created symbolic link /home/memes/public_html memes@raspberrypi:~ $ memes@raspberrypi:~ $ memes@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 memes www 4096 Mar 17 16:59 . drwxr-xr-x 10 root root 4096 Mar 17 16:58 .. -rw-r--r-- 1 memes www 0 Mar 17 16:59 .1006 -rw-r--r-- 1 memes www 220 Mar 17 16:58 .bash_logout -rw-r--r-- 1 memes www 3523 Mar 17 16:58 .bashrc -rw-r--r-- 1 memes www 1670 Mar 17 16:58 .mkshrc -rw-r--r-- 1 memes www 807 Mar 17 16:58 .profile lrwxrwxrwx 1 memes www 27 Mar 17 16:59 public_html -> /home/local/www/users/memes memes@raspberrypi:~ $ memes@raspberrypi:~ $ memes@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www music ### sudo Adding user `music' ... Adding new user `music' (1007) with group `www' ... Creating home directory `/home/music' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for music Enter the new value, or press ENTER for the default Full Name []: music ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su music ### Password: music@raspberrypi:/home $ music@raspberrypi:/home $ music@raspberrypi:/home $ cd ### music@raspberrypi:~ $ music@raspberrypi:~ $ music@raspberrypi:~ $ touch .1007 ### music@raspberrypi:~ $ music@raspberrypi:~ $ music@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/music Created symbolic link /home/music/public_html music@raspberrypi:~ $ music@raspberrypi:~ $ music@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 music www 4096 Mar 17 17:02 . drwxr-xr-x 11 root root 4096 Mar 17 17:00 .. -rw-r--r-- 1 music www 0 Mar 17 17:02 .1007 -rw-r--r-- 1 music www 220 Mar 17 17:00 .bash_logout -rw-r--r-- 1 music www 3523 Mar 17 17:00 .bashrc -rw-r--r-- 1 music www 1670 Mar 17 17:00 .mkshrc -rw-r--r-- 1 music www 807 Mar 17 17:00 .profile lrwxrwxrwx 1 music www 27 Mar 17 17:02 public_html -> /home/local/www/users/music music@raspberrypi:~ $ music@raspberrypi:~ $ music@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www notices ### sudo Adding user `notices' ... Adding new user `notices' (1008) with group `www' ... Creating home directory `/home/notices' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for notices Enter the new value, or press ENTER for the default Full Name []: notices ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su notices ### Password: notices@raspberrypi:/home $ notices@raspberrypi:/home $ notices@raspberrypi:/home $ cd ### notices@raspberrypi:~ $ notices@raspberrypi:~ $ notices@raspberrypi:~ $ touch .1008 ### notices@raspberrypi:~ $ notices@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/notices Created symbolic link /home/notices/public_html notices@raspberrypi:~ $ notices@raspberrypi:~ $ notices@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 notices www 4096 Mar 17 17:04 . drwxr-xr-x 12 root root 4096 Mar 17 17:03 .. -rw-r--r-- 1 notices www 0 Mar 17 17:04 .1008 -rw-r--r-- 1 notices www 220 Mar 17 17:03 .bash_logout -rw-r--r-- 1 notices www 3523 Mar 17 17:03 .bashrc -rw-r--r-- 1 notices www 1670 Mar 17 17:03 .mkshrc -rw-r--r-- 1 notices www 807 Mar 17 17:03 .profile lrwxrwxrwx 1 notices www 29 Mar 17 17:04 public_html -> /home/local/www/users/notices notices@raspberrypi:~ $ notices@raspberrypi:~ $ notices@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www pictures ### sudo Adding user `pictures' ... Adding new user `pictures' (1009) with group `www' ... Creating home directory `/home/pictures' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for pictures Enter the new value, or press ENTER for the default Full Name []: pictures ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su pictures ### Password: pictures@raspberrypi:/home $ pictures@raspberrypi:/home $ pictures@raspberrypi:/home $ cd ### pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ touch .1009 ### pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/pictures Created symbolic link /home/pictures/public_html pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 pictures www 4096 Mar 17 17:06 . drwxr-xr-x 13 root root 4096 Mar 17 17:05 .. -rw-r--r-- 1 pictures www 0 Mar 17 17:06 .1009 -rw-r--r-- 1 pictures www 220 Mar 17 17:05 .bash_logout -rw-r--r-- 1 pictures www 3523 Mar 17 17:05 .bashrc -rw-r--r-- 1 pictures www 1670 Mar 17 17:05 .mkshrc -rw-r--r-- 1 pictures www 807 Mar 17 17:05 .profile lrwxrwxrwx 1 pictures www 30 Mar 17 17:06 public_html -> /home/local/www/users/pictures pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www rome ### sudo Adding user `rome' ... Adding new user `rome' (1010) with group `www' ... Creating home directory `/home/rome' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for rome Enter the new value, or press ENTER for the default Full Name []: rome ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su rome ### Password: rome@raspberrypi:/home $ rome@raspberrypi:/home $ rome@raspberrypi:/home $ cd ### rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ touch .1010 ### rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/rome Created symbolic link /home/rome/public_html rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 rome www 4096 Mar 17 17:07 . drwxr-xr-x 14 root root 4096 Mar 17 17:06 .. -rw-r--r-- 1 rome www 0 Mar 17 17:07 .1010 -rw-r--r-- 1 rome www 220 Mar 17 17:06 .bash_logout -rw-r--r-- 1 rome www 3523 Mar 17 17:06 .bashrc -rw-r--r-- 1 rome www 1670 Mar 17 17:06 .mkshrc -rw-r--r-- 1 rome www 807 Mar 17 17:06 .profile lrwxrwxrwx 1 rome www 26 Mar 17 17:07 public_html -> /home/local/www/users/rome rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www searles-sav-on-propane ### sudo Adding user `searles-sav-on-propane' ... Adding new user `searles-sav-on-propane' (1011) with group `www' ... Creating home directory `/home/searles-sav-on-propane' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for searles-sav-on-propane Enter the new value, or press ENTER for the default Full Name []: searles-sav-on-propane ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su searles-sav-on-propane ### Password: searles-sav-on-propane@raspberrypi:/home $ searles-sav-on-propane@raspberrypi:/home $ searles-sav-on-propane@raspberrypi:/home $ searles-sav-on-propane@raspberrypi:/home $ cd ### searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ touch .1011 ### searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/searles-sav-on-propane Created symbolic link /home/searles-sav-on-propane/public_html searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 17 17:10 . drwxr-xr-x 15 root root 4096 Mar 17 17:09 .. -rw-r--r-- 1 searles-sav-on-propane www 0 Mar 17 17:10 .1011 -rw-r--r-- 1 searles-sav-on-propane www 220 Mar 17 17:09 .bash_logout -rw-r--r-- 1 searles-sav-on-propane www 3523 Mar 17 17:09 .bashrc -rw-r--r-- 1 searles-sav-on-propane www 1670 Mar 17 17:09 .mkshrc -rw-r--r-- 1 searles-sav-on-propane www 807 Mar 17 17:09 .profile lrwxrwxrwx 1 searles-sav-on-propane www 44 Mar 17 17:10 public_html -> /home/local/www/users/searles-sav-on-propane searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www va ### sudo Adding user `va' ... Adding new user `va' (1012) with group `www' ... Creating home directory `/home/va' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for va Enter the new value, or press ENTER for the default Full Name []: va ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su va ### Password: va@raspberrypi:/home $ va@raspberrypi:/home $ va@raspberrypi:/home $ cd ### va@raspberrypi:~ $ va@raspberrypi:~ $ va@raspberrypi:~ $ touch .1012 ### va@raspberrypi:~ $ va@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/va Created symbolic link /home/va/public_html va@raspberrypi:~ $ va@raspberrypi:~ $ va@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 va www 4096 Mar 17 17:12 . drwxr-xr-x 16 root root 4096 Mar 17 17:11 .. -rw-r--r-- 1 va www 0 Mar 17 17:12 .1012 -rw-r--r-- 1 va www 220 Mar 17 17:11 .bash_logout -rw-r--r-- 1 va www 3523 Mar 17 17:11 .bashrc -rw-r--r-- 1 va www 1670 Mar 17 17:11 .mkshrc -rw-r--r-- 1 va www 807 Mar 17 17:11 .profile lrwxrwxrwx 1 va www 24 Mar 17 17:12 public_html -> /home/local/www/users/va va@raspberrypi:~ $ va@raspberrypi:~ $ va@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ sudo adduser --ingroup www videos ### sudo Adding user `videos' ... Adding new user `videos' (1013) with group `www' ... Creating home directory `/home/videos' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for videos Enter the new value, or press ENTER for the default Full Name []: videos ### Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su videos ### Password: videos@raspberrypi:/home $ videos@raspberrypi:/home $ videos@raspberrypi:/home $ cd ### videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ touch .1013 ### videos@raspberrypi:~ $ videos@raspberrypi:~ $ makeweb ### Created web directory /home/local/www/users/videos Created symbolic link /home/videos/public_html videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ ls -al ### total 24 drwxr-xr-x 2 videos www 4096 Mar 17 17:14 . drwxr-xr-x 17 root root 4096 Mar 17 17:13 .. -rw-r--r-- 1 videos www 0 Mar 17 17:14 .1013 -rw-r--r-- 1 videos www 220 Mar 17 17:13 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 17 17:13 .bashrc -rw-r--r-- 1 videos www 1670 Mar 17 17:13 .mkshrc -rw-r--r-- 1 videos www 807 Mar 17 17:13 .profile lrwxrwxrwx 1 videos www 28 Mar 17 17:14 public_html -> /home/local/www/users/videos videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ exit ### exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ ls -al ### total 68 drwxr-xr-x 17 root root 4096 Mar 17 17:13 . drwxr-xr-x 18 root root 4096 Jan 27 20:21 .. drwxr-xr-x 2 ac0xl www 4096 Mar 16 23:48 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 17 16:40 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 17 16:46 documents drwxr-xr-x 2 downloads www 4096 Mar 17 16:53 downloads drwxr-xr-x 2 freedom www 4096 Mar 17 16:57 freedom drwxr-xr-x 5 root root 4096 Mar 16 21:27 local drwxr-xr-x 2 memes www 4096 Mar 17 16:59 memes drwxr-xr-x 2 music www 4096 Mar 17 17:02 music drwxr-xr-x 2 notices www 4096 Mar 17 17:04 notices drwxr-xr-x 19 pi pi 4096 Mar 17 16:48 pi drwxr-xr-x 2 pictures www 4096 Mar 17 17:06 pictures drwxr-xr-x 2 rome www 4096 Mar 17 17:08 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 17 17:10 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 17 17:12 va drwxr-xr-x 2 videos www 4096 Mar 17 17:14 videos pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ cd pi ### pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ls -al ### This is to check if anything got added here like a touch number or the public_html symbolic link. total 3720 drwxr-xr-x 19 pi pi 4096 Mar 17 17:16 . drwxr-xr-x 17 root root 4096 Mar 17 17:13 .. -rw-r--r-- 1 pi pi 116535 Mar 17 15:08 2022-03-16-Install-thttpd-on-Raspberry-Pi-OS.txt -rw------- 1 pi pi 6131 Mar 17 00:02 .bash_history -rw-r--r-- 1 pi pi 220 Jan 27 20:00 .bash_logout -rw-r--r-- 1 pi pi 3523 Jan 27 20:00 .bashrc drwxr-xr-x 2 pi pi 4096 Jan 27 20:09 Bookshelf drwxr-xr-x 8 pi pi 4096 Mar 16 22:37 .cache drwx------ 20 pi pi 4096 Mar 17 13:31 .config drwxr-xr-x 2 pi pi 4096 Mar 16 15:29 Desktop -rw-r--r-- 1 pi pi 35 Mar 16 16:30 .dmrc drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Documents drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Downloads drwxr-xr-x 6 pi pi 4096 Sep 13 2021 freedom -rw-r--r-- 1 pi pi 3574892 Mar 16 15:53 freedom.zip drwxr-xr-x 3 pi pi 4096 Jan 27 20:09 .local drwx------ 5 pi pi 4096 Mar 16 15:34 .mozilla drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Music drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Pictures drwx------ 3 pi pi 4096 Mar 16 22:37 .pki drwx------ 4 pi pi 4096 Mar 16 15:25 .pp_backup -rw-r--r-- 1 pi pi 807 Jan 27 20:00 .profile drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Public drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Templates drwx------ 4 pi pi 4096 Mar 16 15:52 .thunderbird drwxr-xr-x 2 pi pi 4096 Jan 27 20:22 Videos -rw------- 1 pi pi 56 Mar 17 00:03 .Xauthority -rw------- 1 pi pi 2522 Mar 17 00:03 .xsession-errors -rw------- 1 pi pi 2522 Mar 16 16:44 .xsession-errors.old pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cat /etc/group ### root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x ? 00:00:01 gvfs-afc-volume 895 ? 00:00:00 gvfs-mtp-volume 899 ? 00:00:00 gvfs-goa-volume 903 ? 00:00:00 gvfs-gphoto2-vo 927 ? 00:00:01 gvfs-afc-volume 895 ? 00:00:00 gvfs-mtp-volume 899 ? 00:00:00 gvfs-goa-volume 903 ? 00:00:00 gvfs-gphoto2-vo 927 ? 00:00:00 gvfsd-trash 1070 ? 00:00:00 systemd-timesyn 1072 ? 00:00:14 lxterminal 1078 pts/0 00:00:00 bash 1085 ? 00:05:04 geany 1093 pts/1 00:00:03 bash 1104 ? 00:00:05 packagekitd 1469 ? 00:06:07 mousepad 1477 ? 00:00:00 xfconfd 1484 ? 00:00:00 dconf-service 1492 ? 00:00:00 gvfsd-network 1505 ? 00:00:00 gvfsd-dnssd 1823 ? 00:05:12 firefox-esr 1901 ? 00:00:48 Web Content 1933 ? 00:00:01 Privileged Cont 1963 ? 00:00:20 WebExtensions 1999 ? 00:00:00 RDD Process 2058 ? 00:00:04 Web Content 2265 ? 00:00:05 kworker/0:0-events 2465 ? 00:00:00 gvfsd-metadata 2492 ? 00:00:10 Web Content 3075 pts/1 00:00:00 thttpd_wrapper 3387 ? 00:01:21 thttpd 3513 ? 00:00:00 Web Content 4070 ? 00:00:03 kworker/u8:2-events_unbound 4071 ? 00:00:00 kworker/2:2-mm_percpu_wq 4079 ? 00:00:00 kworker/3:2-events_power_efficient 4090 ? 00:00:00 kworker/3:0-events_power_efficient 4100 ? 00:00:00 kworker/u8:0-events_unbound 4101 ? 00:00:00 kworker/1:0-events 4117 ? 00:00:00 kworker/1:0H 4118 ? 00:00:00 kworker/3:1H 4119 ? 00:00:00 kworker/2:0H 4122 ? 00:00:00 kworker/0:0H 4129 ? 00:00:00 kworker/u8:1-events_unbound 4137 ? 00:00:00 kworker/2:0-events 4173 ? 00:00:00 kworker/3:1-events_power_efficient 4182 ? 00:00:00 kworker/0:3-events 4186 ? 00:00:00 kworker/1:1-mm_percpu_wq 4212 ? 00:00:00 kworker/1:2H 4213 ? 00:00:00 kworker/u8:3-events_unbound 4215 ? 00:00:00 kworker/0:1-events 4216 ? 00:00:00 kworker/2:2H 4224 ? 00:00:00 kworker/1:2-mm_percpu_wq 4226 ? 00:00:00 kworker/2:1-mm_percpu_wq 4230 pts/1 00:00:00 ps pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### 3075 pts/1 00:00:00 thttpd_wrapper pi@raspberrypi:/home/local/www/logs $ ### 3387 ? 00:01:21 thttpd pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### Notice the wrapper is still running at 3075 while thttpd is at 3387 and it should show up in the log files when the PID's were changed. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo kill 3075 3387 ### pi@raspberrypi:/home/local/www/logs $ sudo kill 3075 3387 ### kill: (3075): No such process kill: (3387): No such process pi@raspberrypi:/home/local/www/logs $ ### Thttpd is now off until I restart the computer when it will start autoomatically as the computer loads. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Stop the computer, then start the computer to see where "thttpd_wrapper" ends up as the computer loads from scratch! Using ps -e. pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd /etc ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # less services ### This will show a listing of service ports. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # (This file has a list of "Ports" that are in use. The default "HTTP port is 80.") thttpd's default port is 80, port numbers are 16-bit so can range from 1 - 65536. Only one service can use a port number at a time, thus we see that my Raspberry Pi web server will give the same information on all of the IPv4 addresses that are attached to it, i.e., eth0, and wlan0 with its different IP addresses are both connected to the same http port 80. In a classroom situation, more than 200 students can be connected to the same "C" class network (192.168.xxx.0/24) and can each connect to each other's web servers, where xxx is the same for all, and the 0 position can very from 2 - 254, with 0 representing the network, 255 is reserved for the broadcast address, and 1 reserved for the router address. With the router set up as a “DHCP Server” all of the computers would receive dynamic IP addresses and all of their http websites would be available in the addresses they were assigned. The http port number (80) is assigned by thttpd and the IP addresses are assigned from the router. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ### The router separates the “Local Area Network” (LAN) from the “Wide Area Network” (WAN). Just as the HTTP default address is port 80 and is static, the router has to have the internal IP address for our website “static” so it can pass information back and forth from our internal web server to the external Internet. In the file “2019-10-01-website.txt” I discuss the process of setting the internal web server to a static internal IP address. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the router, under the “Advanced” tab, select “Virtual Server”, and it should display a message similar to: “This page allows you to configure a virtual server, so others can access the server through the Gateway.” This will probably very with different routers so one might have to search a bit to find the similar place. The “usual Service Name” should have a selection of something like “web” or “http” and choose this. It should then show the “Protocol” as “TCP”, “WAN Port” as “80”, and “LAN Open Port” as “80”. In the “LAN IP Address” type in the static internal IP address of your web server, and press, “Apply Changes”. This should fill in a table in “Current Virtual Server Forwarding Table” with “ServerName - WEB”, “Protocol - tcp”, “Local IP Address - 192.168.x.2” i.e., your internal IP address, “Local Port - 80-80”, “WAN Port - 80-80”, “State - Enable”, and possibly “Action either Delete or Disable”. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # With this enabled, your website should be available to the WAN. Since your ISP is providing your external IP address, it doesn’t matter if it is dynamic or static. Until you get an idea of the activity that is taking place on the web, it would probably be good just to have a dynamic address if that is what you have. If you are in an area of extreme censorship, it will make the censorship game more of a “Cat and Mouse” game since your site could be bouncing around all sorts of different IP addresses. “Free Speech for the WORLD!” pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Another reason we use "/home" user directories in the "www" group is to be able to keep all of our original web files there and then just send a copy to the "public_html" directory where it is instantly live. This also reduces the size of our web site by eliminating the bloat of having original files mixed in with our files needed for the web site. It will also reduce the time it will take for the Web Search "spiders" to see what content is available on our sites. When we use "HTML" code for our web pages, the root of the page will be in "index.html" and then the items listed in this file can be in the same directory or in sub directories. If you have a lot of "images" on your web page, you would probably want to put all of them in a sub-directory called, "images" just to keep similar things together and easier to find. To test your "index.html" file, you just open it with a web browser and see if everything is functioning. Then when everything is OK, just move your changed file and additions to "public_html", and then open your web browser to "http://xxx.xxx.xxx.xxx/" and see if everything is working. Most web browsers keep a copy of your pages in cache so if the changes don't appear you will have to refresh your web page (usually the little circle with an arrow on it). If the changes still don't appear, possibly you forgot to move the changes to "public_html". Just a reminder, all of the directories in "public_html" need to be "0755" to work and files need to be "0644" to work. If you get to the point of using "cgi" programs they will also need to be "0755" so they can execute, and also need to have the right ending on those files, the documentation for "thttpd" talks about all of this. Sometimes I even need to use "0754" if it is a program type file that should be readable. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Https://news.netcraft.com - August 2021 Web Server Survey - 25th August, 2021 pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the August 2021 survey we received responses from 1,211,444,849 sites across 263,733,974 unique domains and 11,327,711 web-facing computers. This reflects a loss of 4.99 million sites, but a gain of 1.64 million domains and 67,600 computers. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Https://news.netcraft.com - February 2022 Web Server Survey - 28th February, 2022 pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the February 2022 survey we received responses from 1,173,621,471 sites across 271,199,972 unique domains and 11,774,714 web-facing computers. This reflects a gain of 5.91 million sites, 1.36 million domains and 73,800 computers. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd ### pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### Setting the router for World Wide Web service pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### It took me a long time to finally figure out how to set up the router so most people could do it without too much trouble. My routers are old so will be different than newer ones, but I will go through three routers that I have and that might help. pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### 1: D-Link GO-RT-N300, 12VDC @ 0.5 Amps. Out of the box, it's address is: 192.168.0.1 but I set mine to: 192.168.19.1, just so it would have less trouble with neighboring routers. In the setup page, under "Local Network" and on "DHCP Server Settings" I selected my IP Pool Range from 192.168.19.10 to 192.168.19.254, that blocked the section of addresses of 192.168.19.2 through 192.168.19.9 so I could use them for static IP Addresses, and used 192.168.19.2 for my web server. pi@raspberrypi:~ $ # The next header "DHCP Static IP Configuration" has: pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # IP Address: 0.0.0.0 pi@raspberrypi:~ $ # Mac Address: 000000000000 (ex. 00E086710502) pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # followed with selections: Add, Update, Delete Selection, and Reset. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # The next header "DHCP Static IP Table" pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Select IP Address MAC Address pi@raspberrypi:~ $ # () 192.168.19.2 DC:A6:32:19:95:B9 pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # As I remember it would say that "192.168.19.2" was not in the pool, but I think I managed to get it to accept it by clicking the Select and then the update choice. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Click on the top header "Advanced" and then at the bottom of the list "Virtual Server". On this page, the box will list "Virtual Service Name" and the choice that is right is "WEB" which will bring up "WEB" Protocol "TCP" WAN Port "80" LAN Port "80" LAN IP Address "xxx.xxx.xxx.xxx" (actually no xxx's) but is where you enter the IP Address of your web server. Then click "apply changes" (Since) The header below is: pi@raspberrypi:~ $ # "Current Virtual Server Forwarding Table" pi@raspberrypi:~ $ # ServerName Protocol Local IP Address Local Port WAN Port State Action pi@raspberrypi:~ $ # WEB tcp 192.168.19.2 80-80 80-80 Enable Delete Disable pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### 2: Zonet1), ZSR4154WE(01), 802.11n Wireless Broadband Router, Power: 9V-1A, IP Address: 192.168.0.1 pi@raspberrypi:~ $ # On "192.168.0.1/main.html", Select "Virtual Server", then "Port Range Forwarding", and under "Well Known Service Ports", select "HTTP(80) and then "ADD" (1-10) for possible selections. This populates the selected line with: "Start Port - End Port" with "80 - 80", "To IP Address" "192.168.0.""100", "Protocol", "TCP", "Enable", "checked". Then click "Apply", and "Logout". pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### 3: Western Digital My Net N750, 12 VDC @ 2 Amps, Tabs: Additional Features / Port Forwarding pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Port Forwarding pi@raspberrypi:~ $ # This option is used to open multiple ports or a range of ports in your router and redirect data through those ports to a single computer on your network. This feature allows you to enter external start port, external end port, and internal start port in the fields. The internal end port will be generated automatically. This option is only applicable to the Internet session. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Enabled Name: HTTP Application Name: HTTP External Port Range From: 80 To: 80 Protocol TCP pi@raspberrypi:~ $ @ IP Address: 192.168.1.138 Computer Name: frank-desktop (102.168.1.138) Internal Port Range From: 80 To: 80 bash: syntax error near unexpected token `(' pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Then "SAVE". pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # This pretty much automates the process. One would need to set a static IP address on the web server machine so it would always be at the same address. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # ***************************** pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### Links: pi@raspberrypi:~ $ # These links are the easiest and best I have found for sharing the “Good News” I found around my seventh birthday, the Fall of 1955. Frank Anderson, ac0xl. pi@raspberrypi:~ $ # http://4laws.com/laws/languages.html, 4 Spiritual Laws. pi@raspberrypi:~ $ # https://www.cru.org/us/en/train-and-grow/spiritual-growth/the-spirit-filled-life.html, The Spirit Filled Life. pi@raspberrypi:~ $ # https://www.cru.org, Exploring Your Life’s Purpose - Let’s journey together. pi@raspberrypi:~ $ # https://godtoolsapp.com, GodTools - Helping You Share Your Faith. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # *************************************** pi@raspberrypi:~ $ pi@raspberrypi:~ $ ? 00:00:00 gvfsd-trash 1070 ? 00:00:00 systemd-timesyn 1072 ? 00:00:14 lxterminal 1078 pts/0 00:00:00 bash 1085 ? 00:05:04 geany 1093 pts/1 00:00:03 bash 1104 ? 00:00:05 packagekitd 1469 ? 00:06:07 mousepad 1477 ? 00:00:00 xfconfd 1484 ? 00:00:00 dconf-service 1492 ? 00:00:00 gvfsd-network 1505 ? 00:00:00 gvfsd-dnssd 1823 ? 00:05:12 firefox-esr 1901 ? 00:00:48 Web Content 1933 ? 00:00:01 Privileged Cont 1963 ? 00:00:20 WebExtensions 1999 ? 00:00:00 RDD Process 2058 ? 00:00:04 Web Content 2265 ? 00:00:05 kworker/0:0-events 2465 ? 00:00:00 gvfsd-metadata 2492 ? 00:00:10 Web Content 3075 pts/1 00:00:00 thttpd_wrapper 3387 ? 00:01:21 thttpd 3513 ? 00:00:00 Web Content 4070 ? 00:00:03 kworker/u8:2-events_unbound 4071 ? 00:00:00 kworker/2:2-mm_percpu_wq 4079 ? 00:00:00 kworker/3:2-events_power_efficient 4090 ? 00:00:00 kworker/3:0-events_power_efficient 4100 ? 00:00:00 kworker/u8:0-events_unbound 4101 ? 00:00:00 kworker/1:0-events 4117 ? 00:00:00 kworker/1:0H 4118 ? 00:00:00 kworker/3:1H 4119 ? 00:00:00 kworker/2:0H 4122 ? 00:00:00 kworker/0:0H 4129 ? 00:00:00 kworker/u8:1-events_unbound 4137 ? 00:00:00 kworker/2:0-events 4173 ? 00:00:00 kworker/3:1-events_power_efficient 4182 ? 00:00:00 kworker/0:3-events 4186 ? 00:00:00 kworker/1:1-mm_percpu_wq 4212 ? 00:00:00 kworker/1:2H 4213 ? 00:00:00 kworker/u8:3-events_unbound 4215 ? 00:00:00 kworker/0:1-events 4216 ? 00:00:00 kworker/2:2H 4224 ? 00:00:00 kworker/1:2-mm_percpu_wq 4226 ? 00:00:00 kworker/2:1-mm_percpu_wq 4230 pts/1 00:00:00 ps pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### 3075 pts/1 00:00:00 thttpd_wrapper pi@raspberrypi:/home/local/www/logs $ ### 3387 ? 00:01:21 thttpd pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### Notice the wrapper is still running at 3075 while thttpd is at 3387 and it should show up in the log files when the PID's were changed. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo kill 3075 3387 ### pi@raspberrypi:/home/local/www/logs $ sudo kill 3075 3387 ### kill: (3075): No such process kill: (3387): No such process pi@raspberrypi:/home/local/www/logs $ ### Thttpd is now off until I restart the computer when it will start autoomatically as the computer loads. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Stop the computer, then start the computer to see where "thttpd_wrapper" ends up as the computer loads from scratch! Using ps -e. pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd /etc ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # less services ### This will show a listing of service ports. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # (This file has a list of "Ports" that are in use. The default "HTTP port is 80.") thttpd's default port is 80, port numbers are 16-bit so can range from 1 - 65536. Only one service can use a port number at a time, thus we see that my Raspberry Pi web server will give the same information on all of the IPv4 addresses that are attached to it, i.e., eth0, and wlan0 with its different IP addresses are both connected to the same http port 80. In a classroom situation, more than 200 students can be connected to the same "C" class network (192.168.xxx.0/24) and can each connect to each other's web servers, where xxx is the same for all, and the 0 position can very from 2 - 254, with 0 representing the network, 255 is reserved for the broadcast address, and 1 reserved for the router address. With the router set up as a “DHCP Server” all of the computers would receive dynamic IP addresses and all of their http websites would be available in the addresses they were assigned. The http port number (80) is assigned by thttpd and the IP addresses are assigned from the router. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ### The router separates the “Local Area Network” (LAN) from the “Wide Area Network” (WAN). Just as the HTTP default address is port 80 and is static, the router has to have the internal IP address for our website “static” so it can pass information back and forth from our internal web server to the external Internet. In the file “2019-10-01-website.txt” I discuss the process of setting the internal web server to a static internal IP address. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the router, under the “Advanced” tab, select “Virtual Server”, and it should display a message similar to: “This page allows you to configure a virtual server, so others can access the server through the Gateway.” This will probably very with different routers so one might have to search a bit to find the similar place. The “usual Service Name” should have a selection of something like “web” or “http” and choose this. It should then show the “Protocol” as “TCP”, “WAN Port” as “80”, and “LAN Open Port” as “80”. In the “LAN IP Address” type in the static internal IP address of your web server, and press, “Apply Changes”. This should fill in a table in “Current Virtual Server Forwarding Table” with “ServerName - WEB”, “Protocol - tcp”, “Local IP Address - 192.168.x.2” i.e., your internal IP address, “Local Port - 80-80”, “WAN Port - 80-80”, “State - Enable”, and possibly “Action either Delete or Disable”. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # With this enabled, your website should be available to the WAN. Since your ISP is providing your external IP address, it doesn’t matter if it is dynamic or static. Until you get an idea of the activity that is taking place on the web, it would probably be good just to have a dynamic address if that is what you have. If you are in an area of extreme censorship, it will make the censorship game more of a “Cat and Mouse” game since your site could be bouncing around all sorts of different IP addresses. “Free Speech for the WORLD!” pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Another reason we use "/home" user directories in the "www" group is to be able to keep all of our original web files there and then just send a copy to the "public_html" directory where it is instantly live. This also reduces the size of our web site by eliminating the bloat of having original files mixed in with our files needed for the web site. It will also reduce the time it will take for the Web Search "spiders" to see what content is available on our sites. When we use "HTML" code for our web pages, the root of the page will be in "index.html" and then the items listed in this file can be in the same directory or in sub directories. If you have a lot of "images" on your web page, you would probably want to put all of them in a sub-directory called, "images" just to keep similar things together and easier to find. To test your "index.html" file, you just open it with a web browser and see if everything is functioning. Then when everything is OK, just move your changed file and additions to "public_html", and then open your web browser to "http://xxx.xxx.xxx.xxx/" and see if everything is working. Most web browsers keep a copy of your pages in cache so if the changes don't appear you will have to refresh your web page (usually the little circle with an arrow on it). If the changes still don't appear, possibly you forgot to move the changes to "public_html". Just a reminder, all of the directories in "public_html" need to be "0755" to work and files need to be "0644" to work. If you get to the point of using "cgi" programs they will also need to be "0755" so they can execute, and also need to have the right ending on those files, the documentation for "thttpd" talks about all of this. Sometimes I even need to use "0754" if it is a program type file that should be readable. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Https://news.netcraft.com - August 2021 Web Server Survey - 25th August, 2021 pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the August 2021 survey we received responses from 1,211,444,849 sites across 263,733,974 unique domains and 11,327,711 web-facing computers. This reflects a loss of 4.99 million sites, but a gain of 1.64 million domains and 67,600 computers. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Https://news.netcraft.com - February 2022 Web Server Survey - 28th February, 2022 pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the February 2022 survey we received responses from 1,173,621,471 sites across 271,199,972 unique domains and 11,774,714 web-facing computers. This reflects a gain of 5.91 million sites, 1.36 million domains and 73,800 computers. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd ### pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### Setting the router for World Wide Web service pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### It took me a long time to finally figure out how to set up the router so most people could do it without too much trouble. My routers are old so will be different than newer ones, but I will go through three routers that I have and that might help. pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### 1: D-Link GO-RT-N300, 12VDC @ 0.5 Amps. Out of the box, it's address is: 192.168.0.1 but I set mine to: 192.168.19.1, just so it would have less trouble with neighboring routers. In the setup page, under "Local Network" and on "DHCP Server Settings" I selected my IP Pool Range from 192.168.19.10 to 192.168.19.254, that blocked the section of addresses of 192.168.19.2 through 192.168.19.9 so I could use them for static IP Addresses, and used 192.168.19.2 for my web server. pi@raspberrypi:~ $ # The next header "DHCP Static IP Configuration" has: pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # IP Address: 0.0.0.0 pi@raspberrypi:~ $ # Mac Address: 000000000000 (ex. 00E086710502) pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # followed with selections: Add, Update, Delete Selection, and Reset. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # The next header "DHCP Static IP Table" pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Select IP Address MAC Address pi@raspberrypi:~ $ # () 192.168.19.2 DC:A6:32:19:95:B9 pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # As I remember it would say that "192.168.19.2" was not in the pool, but I think I managed to get it to accept it by clicking the Select and then the update choice. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Click on the top header "Advanced" and then at the bottom of the list "Virtual Server". On this page, the box will list "Virtual Service Name" and the choice that is right is "WEB" which will bring up "WEB" Protocol "TCP" WAN Port "80" LAN Port "80" LAN IP Address "xxx.xxx.xxx.xxx" (actually no xxx's) but is where you enter the IP Address of your web server. Then click "apply changes" (Since) The header below is: pi@raspberrypi:~ $ # "Current Virtual Server Forwarding Table" pi@raspberrypi:~ $ # ServerName Protocol Local IP Address Local Port WAN Port State Action pi@raspberrypi:~ $ # WEB tcp 192.168.19.2 80-80 80-80 Enable Delete Disable pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### 2: Zonet1), ZSR4154WE(01), 802.11n Wireless Broadband Router, Power: 9V-1A, IP Address: 192.168.0.1 pi@raspberrypi:~ $ # On "192.168.0.1/main.html", Select "Virtual Server", then "Port Range Forwarding", and under "Well Known Service Ports", select "HTTP(80) and then "ADD" (1-10) for possible selections. This populates the selected line with: "Start Port - End Port" with "80 - 80", "To IP Address" "192.168.0.""100", "Protocol", "TCP", "Enable", "checked". Then click "Apply", and "Logout". pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### 3: Western Digital My Net N750, 12 VDC @ 2 Amps, Tabs: Additional Features / Port Forwarding pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Port Forwarding pi@raspberrypi:~ $ # This option is used to open multiple ports or a range of ports in your router and redirect data through those ports to a single computer on your network. This feature allows you to enter external start port, external end port, and internal start port in the fields. The internal end port will be generated automatically. This option is only applicable to the Internet session. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Enabled Name: HTTP Application Name: HTTP External Port Range From: 80 To: 80 Protocol TCP pi@raspberrypi:~ $ @ IP Address: 192.168.1.138 Computer Name: frank-desktop (102.168.1.138) Internal Port Range From: 80 To: 80 bash: syntax error near unexpected token `(' pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Then "SAVE". pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # This pretty much automates the process. One would need to set a static IP address on the web server machine so it would always be at the same address. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # ***************************** pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### Links: pi@raspberrypi:~ $ # These links are the easiest and best I have found for sharing the “Good News” I found around my seventh birthday, the Fall of 1955. Frank Anderson, ac0xl. pi@raspberrypi:~ $ # http://4laws.com/laws/languages.html, 4 Spiritual Laws. pi@raspberrypi:~ $ # https://www.cru.org/us/en/train-and-grow/spiritual-growth/the-spirit-filled-life.html, The Spirit Filled Life. pi@raspberrypi:~ $ # https://www.cru.org, Exploring Your Life’s Purpose - Let’s journey together. pi@raspberrypi:~ $ # https://godtoolsapp.com, GodTools - Helping You Share Your Faith. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # *************************************** pi@raspberrypi:~ $ pi@raspberrypi:~ $ :113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: systemd-coredump:x:996: www:x:124:pi,ac0xl ac0xl:x:1001: pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # Notice pi and ac0xl are the only "users" that are listed, thus the idea of using touch to put the user number in the directory so it will be available if one moves to a different system and just ends up with numbers for the user and the group. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home/local/www/users ### pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ls -al ### total 76 drwxrwxr-x 16 root www 4096 Mar 17 17:14 . drwxr-xr-x 5 root www 4096 Mar 17 12:04 .. drwxr-xr-x 2 ac0xl www 4096 Mar 16 23:48 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 17 16:40 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 17 16:46 documents drwxr-xr-x 2 downloads www 4096 Mar 17 16:53 downloads -rw-r--r-- 1 root root 533 Mar 17 11:13 favicon.ico drwxr-xr-x 2 freedom www 4096 Mar 17 16:57 freedom drwxr-xr-x 2 memes www 4096 Mar 17 16:59 memes drwxr-xr-x 2 music www 4096 Mar 17 17:02 music drwxr-xr-x 2 notices www 4096 Mar 17 17:04 notices drwxr-xr-x 2 pi pi 4096 Mar 17 16:48 pi drwxr-xr-x 2 pictures www 4096 Mar 17 17:06 pictures -rw-r--r-- 1 root root 308 Mar 17 11:13 readme.txt -rw-r--r-- 1 root root 27 Mar 17 11:13 robots.txt drwxr-xr-x 2 rome www 4096 Mar 17 17:07 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 17 17:10 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 17 17:12 va drwxr-xr-x 2 videos www 4096 Mar 17 17:14 videos pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ### I did have a screw up and I deleted the "public_html" link in the home directory and need to remove the "pi" directory here so it does not appear on the web site! Make sure you are in "/home/local/www/users" before you remove it!! pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ sudo rm -vR pi ### sudo removed directory 'pi' pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ df -h ### Checking free space. Filesystem Size Used Avail Use% Mounted on /dev/root 57G 5.4G 49G 10% / devtmpfs 1.7G 0 1.7G 0% /dev tmpfs 1.9G 0 1.9G 0% /dev/shm tmpfs 760M 960K 759M 1% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 30M 223M 12% /boot tmpfs 380M 36K 380M 1% /run/user/1000 pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ date ### Just anoter time stamp. pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ### From the browser of the new web page after loading all of the users. pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # #Index of / # #mode links bytes last-changed name #dr-x 15 4096 Mar 17 23:25 ./ #dr-x 5 4096 Mar 17 18:04 ../ #dr-x 2 4096 Mar 17 05:48 ac0xl/ #dr-x 2 4096 Mar 17 22:40 delinquent-accounts/ #dr-x 2 4096 Mar 17 22:46 documents/ #dr-x 2 4096 Mar 17 22:53 downloads/ #-r-- 1 533 Mar 17 17:13 favicon.ico #dr-x 2 4096 Mar 17 22:57 freedom/ #dr-x 2 4096 Mar 17 22:59 memes/ #dr-x 2 4096 Mar 17 23:02 music/ #dr-x 2 4096 Mar 17 23:04 notices/ #dr-x 2 4096 Mar 17 23:06 pictures/ #-r-- 1 308 Mar 17 17:13 readme.txt #-r-- 1 27 Mar 17 17:13 robots.txt #dr-x 2 4096 Mar 17 23:07 rome/ #dr-x 2 4096 Mar 17 23:10 searles-sav-on-propane/ #dr-x 2 4096 Mar 17 23:12 va/ #dr-x 2 4096 Mar 17 23:14 videos/ # # pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ cd ../logs ### pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al ### total 28 drwxr-xr-x 2 root www 4096 Mar 17 16:04 . drwxr-xr-x 5 root www 4096 Mar 17 12:04 .. -rw-r--r-- 1 nobody nogroup 4600 Mar 17 17:59 thttpd_log -rw-r--r-- 1 nobody nogroup 1582 Mar 17 16:04 thttpd_log.01 -rw-r--r-- 1 nobody nogroup 1685 Mar 17 15:16 thttpd_log.02 -rw-r--r-- 1 nobody nogroup 2291 Mar 17 14:48 thttpd_log.03 pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo datelog ### pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log ### Thu 17 Mar 2022 04:04:46 PM MDT old log rotate end, old thttpd pid = PID TTY TIME CMD 3157 ? 00:00:35 thttpd log rotate new, thttpd pid = PID TTY TIME CMD 3387 ? 00:00:00 thttpd 16:05:01 up 5:41, 2 users, load average: 0.01, 0.03, 0.05 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 16:01m 10:09 0.65s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 16:01m 0.09s 0.06s -bash 192.168.19.12 - - [17/Mar/2022:22:06:40 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.15/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:22:06:46 +0000] "GET /robots.txt HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [17/Mar/2022:22:06:52 +0000] "GET /readme.txt HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" datelog, thttpd pid = PID TTY TIME CMD 3387 ? 00:00:03 thttpd Thu 17 Mar 2022 04:09:56 PM MDT 16:09:56 up 5:46, 2 users, load average: 0.00, 0.00, 0.02 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 16:06m 10:14 0.65s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 16:06m 0.09s 0.06s -bash 192.168.19.15 - - [17/Mar/2022:23:58:02 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:11 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:14 +0000] "GET /delinquent-accounts/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:17 +0000] "GET /documents/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:22 +0000] "GET /downloads/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:26 +0000] "GET /favicon.ico HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:35 +0000] "GET /freedom/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:35 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.15/freedom/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:39 +0000] "GET /memes/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:43 +0000] "GET /music/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:46 +0000] "GET /notices/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:49 +0000] "GET /pictures/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:58:53 +0000] "GET /readme.txt HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:59:01 +0000] "GET /robots.txt HTTP/1.1" 304 0 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:59:06 +0000] "GET /rome/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:59:11 +0000] "GET /searles-sav-on-propane/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:59:16 +0000] "GET /va/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [17/Mar/2022:23:59:20 +0000] "GET /videos/ HTTP/1.1" 200 25000 "http://192.168.19.15/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 3387 ? 00:01:20 thttpd Thu 17 Mar 2022 06:05:57 PM MDT 18:05:57 up 7:42, 2 users, load average: 0.28, 0.42, 0.50 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty7 :0 00:03 18:02m 14:52 0.86s /usr/bin/lxsession -s LXDE-pi -e LXDE pi tty1 - 00:03 18:02m 0.09s 0.06s -bash pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ps -e ### PID TTY TIME CMD 1 ? 00:00:04 systemd 2 ? 00:00:00 kthreadd 3 ? 00:00:00 rcu_gp 4 ? 00:00:00 rcu_par_gp 8 ? 00:00:00 mm_percpu_wq 9 ? 00:00:00 rcu_tasks_kthre 10 ? 00:00:00 rcu_tasks_rude_ 11 ? 00:00:00 rcu_tasks_trace 12 ? 00:00:01 ksoftirqd/0 13 ? 00:00:18 rcu_preempt 14 ? 00:00:00 migration/0 15 ? 00:00:00 cpuhp/0 16 ? 00:00:00 cpuhp/1 17 ? 00:00:00 migration/1 18 ? 00:00:00 ksoftirqd/1 21 ? 00:00:00 cpuhp/2 22 ? 00:00:00 migration/2 23 ? 00:00:00 ksoftirqd/2 26 ? 00:00:00 cpuhp/3 27 ? 00:00:00 migration/3 28 ? 00:00:00 ksoftirqd/3 31 ? 00:00:00 kdevtmpfs 32 ? 00:00:00 netns 33 ? 00:00:00 kauditd 35 ? 00:00:09 kworker/0:2-events 36 ? 00:00:00 khungtaskd 37 ? 00:00:00 oom_reaper 38 ? 00:00:00 writeback 39 ? 00:00:01 kcompactd0 61 ? 00:00:00 kblockd 62 ? 00:00:00 blkcg_punt_bio 63 ? 00:00:00 watchdogd 65 ? 00:00:01 kworker/0:1H-mmc_complete 66 ? 00:00:00 rpciod 68 ? 00:00:00 xprtiod 69 ? 00:00:00 kswapd0 70 ? 00:00:00 nfsiod 71 ? 00:00:00 kthrotld 73 ? 00:00:00 iscsi_eh 74 ? 00:00:00 iscsi_destroy 75 ? 00:00:00 nvme-wq 76 ? 00:00:00 nvme-reset-wq 77 ? 00:00:00 nvme-delete-wq 80 ? 00:00:00 DWC Notificatio 81 ? 00:00:00 uas 82 ? 00:00:00 vchiq-slot/0 83 ? 00:00:00 vchiq-recy/0 84 ? 00:00:00 vchiq-sync/0 85 ? 00:00:00 zswap-shrink 89 ? 00:00:00 sdhci 90 ? 00:00:00 irq/51-mmc0 96 ? 00:00:00 mmc_complete 97 ? 00:00:00 kworker/2:1H-kblockd 98 ? 00:00:00 kworker/1:1H-kblockd 99 ? 00:00:00 jbd2/mmcblk0p2- 100 ? 00:00:00 ext4-rsv-conver 103 ? 00:00:00 ipv6_addrconf 112 ? 00:00:00 kworker/3:2H-kblockd 145 ? 00:00:01 systemd-journal 166 ? 00:00:00 systemd-udevd 203 ? 00:00:00 vchiq-keep/0 204 ? 00:00:00 SMIO 212 ? 00:00:00 mmal-vchiq 213 ? 00:00:00 mmal-vchiq 215 ? 00:00:00 mmal-vchiq 216 ? 00:00:00 mmal-vchiq 218 ? 00:00:00 mmal-vchiq 221 ? 00:00:00 mmal-vchiq 258 ? 00:00:00 cfg80211 266 ? 00:00:50 v3d_bin 267 ? 00:00:59 v3d_render 268 ? 00:00:00 v3d_tfu 269 ? 00:00:00 v3d_csd 270 ? 00:00:00 v3d_cache_clean 273 ? 00:00:00 brcmf_wq/mmc1:0 276 ? 00:00:00 brcmf_wdog/mmc1 385 ? 00:00:00 irq/42-vc4 hdmi 386 ? 00:00:00 irq/43-vc4 hdmi 387 ? 00:00:00 avahi-daemon 388 ? 00:00:00 cec-vc4 389 ? 00:00:00 irq/39-vc4 hdmi 390 ? 00:00:00 irq/38-vc4 hdmi 391 ? 00:00:00 cron 392 ? 00:00:00 dbus-daemon 393 ? 00:00:00 irq/48-vc4 hdmi 394 ? 00:00:00 irq/49-vc4 hdmi 395 ? 00:00:00 cec-vc4 396 ? 00:00:00 irq/45-vc4 hdmi 397 ? 00:00:00 irq/44-vc4 hdmi 399 ? 00:00:00 card0-crtc0 400 ? 00:00:00 card0-crtc1 401 ? 00:00:00 card0-crtc2 402 ? 00:00:00 card0-crtc3 403 ? 00:00:00 card0-crtc4 404 ? 00:00:00 card0-crtc5 414 ? 00:00:00 avahi-daemon 428 ? 00:00:00 rsyslogd 451 ? 00:00:00 systemd-logind 455 ? 00:00:18 thd 461 ? 00:00:00 udisksd 463 ? 00:00:00 wpa_supplicant 531 ? 00:00:00 rngd 542 ? 00:00:00 cupsd 544 ? 00:00:00 dhcpcd 550 ? 00:00:00 lightdm 578 tty7 00:14:54 Xorg 582 tty1 00:00:00 login 583 ? 00:00:00 polkitd 586 ? 00:00:01 wpa_supplicant 601 ? 00:00:00 cups-browsed 615 ? 00:00:00 lightdm 620 ? 00:00:00 systemd 621 ? 00:00:00 (sd-pam) 640 ? 00:00:00 pipewire 641 ? 00:00:08 pulseaudio 642 ? 00:00:00 lxsession 653 ? 00:00:00 rtkit-daemon 654 ? 00:00:00 dbus-daemon 662 ? 00:00:00 pipewire-media- 697 ? 00:00:00 ssh-agent 726 tty1 00:00:00 bash 738 ? 00:00:00 gvfsd 745 ? 00:00:00 gvfsd-fuse 756 ? 00:06:57 mutter 759 ? 00:00:00 lxpolkit 763 ? 00:06:46 lxpanel 764 ? 00:00:02 pcmanfm 772 ? 00:00:00 kworker/u9:1-hci0 773 ? 00:00:00 hciattach 774 ? 00:00:00 kworker/u9:2-hci0 781 ? 00:00:01 applet.py 790 ? 00:00:00 ssh-agent 831 ? 00:00:00 bluetoothd 849 ? 00:00:00 krfcommd 878 ? 00:00:00 menu-cached 885 ? 00:00:00 gvfs-udisks2-vo 890 ? 00:00:01 gvfs-afc-volume 895 ? 00:00:00 gvfs-mtp-volume 899 ? 00:00:00 gvfs-goa-volume 903 ? 00:00:00 gvfs-gphoto2-vo 927 ? 00:00:00 gvfsd-trash 1070 ? 00:00:00 systemd-timesyn 1072 ? 00:00:14 lxterminal 1078 pts/0 00:00:00 bash 1085 ? 00:05:04 geany 1093 pts/1 00:00:03 bash 1104 ? 00:00:05 packagekitd 1469 ? 00:06:07 mousepad 1477 ? 00:00:00 xfconfd 1484 ? 00:00:00 dconf-service 1492 ? 00:00:00 gvfsd-network 1505 ? 00:00:00 gvfsd-dnssd 1823 ? 00:05:12 firefox-esr 1901 ? 00:00:48 Web Content 1933 ? 00:00:01 Privileged Cont 1963 ? 00:00:20 WebExtensions 1999 ? 00:00:00 RDD Process 2058 ? 00:00:04 Web Content 2265 ? 00:00:05 kworker/0:0-events 2465 ? 00:00:00 gvfsd-metadata 2492 ? 00:00:10 Web Content 3075 pts/1 00:00:00 thttpd_wrapper 3387 ? 00:01:21 thttpd 3513 ? 00:00:00 Web Content 4070 ? 00:00:03 kworker/u8:2-events_unbound 4071 ? 00:00:00 kworker/2:2-mm_percpu_wq 4079 ? 00:00:00 kworker/3:2-events_power_efficient 4090 ? 00:00:00 kworker/3:0-events_power_efficient 4100 ? 00:00:00 kworker/u8:0-events_unbound 4101 ? 00:00:00 kworker/1:0-events 4117 ? 00:00:00 kworker/1:0H 4118 ? 00:00:00 kworker/3:1H 4119 ? 00:00:00 kworker/2:0H 4122 ? 00:00:00 kworker/0:0H 4129 ? 00:00:00 kworker/u8:1-events_unbound 4137 ? 00:00:00 kworker/2:0-events 4173 ? 00:00:00 kworker/3:1-events_power_efficient 4182 ? 00:00:00 kworker/0:3-events 4186 ? 00:00:00 kworker/1:1-mm_percpu_wq 4212 ? 00:00:00 kworker/1:2H 4213 ? 00:00:00 kworker/u8:3-events_unbound 4215 ? 00:00:00 kworker/0:1-events 4216 ? 00:00:00 kworker/2:2H 4224 ? 00:00:00 kworker/1:2-mm_percpu_wq 4226 ? 00:00:00 kworker/2:1-mm_percpu_wq 4230 pts/1 00:00:00 ps pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### 3075 pts/1 00:00:00 thttpd_wrapper pi@raspberrypi:/home/local/www/logs $ ### 3387 ? 00:01:21 thttpd pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ### Notice the wrapper is still running at 3075 while thttpd is at 3387 and it should show up in the log files when the PID's were changed. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ sudo kill 3075 3387 ### pi@raspberrypi:/home/local/www/logs $ sudo kill 3075 3387 ### kill: (3075): No such process kill: (3387): No such process pi@raspberrypi:/home/local/www/logs $ ### Thttpd is now off until I restart the computer when it will start autoomatically as the computer loads. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Stop the computer, then start the computer to see where "thttpd_wrapper" ends up as the computer loads from scratch! Using ps -e. pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd /etc ### pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # less services ### This will show a listing of service ports. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # (This file has a list of "Ports" that are in use. The default "HTTP port is 80.") thttpd's default port is 80, port numbers are 16-bit so can range from 1 - 65536. Only one service can use a port number at a time, thus we see that my Raspberry Pi web server will give the same information on all of the IPv4 addresses that are attached to it, i.e., eth0, and wlan0 with its different IP addresses are both connected to the same http port 80. In a classroom situation, more than 200 students can be connected to the same "C" class network (192.168.xxx.0/24) and can each connect to each other's web servers, where xxx is the same for all, and the 0 position can very from 2 - 254, with 0 representing the network, 255 is reserved for the broadcast address, and 1 reserved for the router address. With the router set up as a “DHCP Server” all of the computers would receive dynamic IP addresses and all of their http websites would be available in the addresses they were assigned. The http port number (80) is assigned by thttpd and the IP addresses are assigned from the router. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ### The router separates the “Local Area Network” (LAN) from the “Wide Area Network” (WAN). Just as the HTTP default address is port 80 and is static, the router has to have the internal IP address for our website “static” so it can pass information back and forth from our internal web server to the external Internet. In the file “2019-10-01-website.txt” I discuss the process of setting the internal web server to a static internal IP address. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the router, under the “Advanced” tab, select “Virtual Server”, and it should display a message similar to: “This page allows you to configure a virtual server, so others can access the server through the Gateway.” This will probably very with different routers so one might have to search a bit to find the similar place. The “usual Service Name” should have a selection of something like “web” or “http” and choose this. It should then show the “Protocol” as “TCP”, “WAN Port” as “80”, and “LAN Open Port” as “80”. In the “LAN IP Address” type in the static internal IP address of your web server, and press, “Apply Changes”. This should fill in a table in “Current Virtual Server Forwarding Table” with “ServerName - WEB”, “Protocol - tcp”, “Local IP Address - 192.168.x.2” i.e., your internal IP address, “Local Port - 80-80”, “WAN Port - 80-80”, “State - Enable”, and possibly “Action either Delete or Disable”. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # With this enabled, your website should be available to the WAN. Since your ISP is providing your external IP address, it doesn’t matter if it is dynamic or static. Until you get an idea of the activity that is taking place on the web, it would probably be good just to have a dynamic address if that is what you have. If you are in an area of extreme censorship, it will make the censorship game more of a “Cat and Mouse” game since your site could be bouncing around all sorts of different IP addresses. “Free Speech for the WORLD!” pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Another reason we use "/home" user directories in the "www" group is to be able to keep all of our original web files there and then just send a copy to the "public_html" directory where it is instantly live. This also reduces the size of our web site by eliminating the bloat of having original files mixed in with our files needed for the web site. It will also reduce the time it will take for the Web Search "spiders" to see what content is available on our sites. When we use "HTML" code for our web pages, the root of the page will be in "index.html" and then the items listed in this file can be in the same directory or in sub directories. If you have a lot of "images" on your web page, you would probably want to put all of them in a sub-directory called, "images" just to keep similar things together and easier to find. To test your "index.html" file, you just open it with a web browser and see if everything is functioning. Then when everything is OK, just move your changed file and additions to "public_html", and then open your web browser to "http://xxx.xxx.xxx.xxx/" and see if everything is working. Most web browsers keep a copy of your pages in cache so if the changes don't appear you will have to refresh your web page (usually the little circle with an arrow on it). If the changes still don't appear, possibly you forgot to move the changes to "public_html". Just a reminder, all of the directories in "public_html" need to be "0755" to work and files need to be "0644" to work. If you get to the point of using "cgi" programs they will also need to be "0755" so they can execute, and also need to have the right ending on those files, the documentation for "thttpd" talks about all of this. Sometimes I even need to use "0754" if it is a program type file that should be readable. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Https://news.netcraft.com - August 2021 Web Server Survey - 25th August, 2021 pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the August 2021 survey we received responses from 1,211,444,849 sites across 263,733,974 unique domains and 11,327,711 web-facing computers. This reflects a loss of 4.99 million sites, but a gain of 1.64 million domains and 67,600 computers. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Https://news.netcraft.com - February 2022 Web Server Survey - 28th February, 2022 pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # In the February 2022 survey we received responses from 1,173,621,471 sites across 271,199,972 unique domains and 11,774,714 web-facing computers. This reflects a gain of 5.91 million sites, 1.36 million domains and 73,800 computers. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # ***************************** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd ### pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### Setting the router for World Wide Web service pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### It took me a long time to finally figure out how to set up the router so most people could do it without too much trouble. My routers are old so will be different than newer ones, but I will go through three routers that I have and that might help. pi@raspberrypi:~ $ pi@raspberrypi:~ $ ### 1: D-Link GO-RT-N300, 12VDC @ 0.5 Amps. Out of the box, it's address is: 192.168.0.1 but I set mine to: 192.168.19.1, just so it would have less trouble with neighboring routers. In the setup page, under "Local Network" and on "DHCP Server Settings" I selected my IP Pool Range from 192.168.19.10 to 192.168.19.254, that blocked the section of addresses of 192.168.19.2 through 192.168.19.9 so I could use them for static IP Addresses, and used 192.168.19.2 for my web server. pi@raspberrypi:~ $ # The next header "DHCP Static IP Configuration" has: pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # IP Address: 0.0.0.0 pi@raspberrypi:~ $ # Mac Address: 000000000000 (ex. 00E086710502) pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # followed with selections: Add, Update, Delete Selection, and Reset. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # The next header "DHCP Static IP Table" pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Select IP Address MAC Address pi@raspberrypi:~ $ # () 192.168.19.2 DC:A6:32:19:95:B9 pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # As I remember it would say that "192.168.19.2" was not in the pool, but I think I managed to get it to accept it by clicking the Select and then the update choice. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Click on the top header "Advanced" and then at the bottom of the list "Virtual Server". On this page, the box will list "Virtual Service Name" and the choice that is right is "WEB" which will bring up "WEB" Protocol "TCP" WAN Port "80" LAN Port "80" LAN IP Address "xxx.xxx.xxx.xxx" (actually no xxx's) but is where you enter the IP Address of your web server. Then click "apply changes" (Since) The header below is: pi@raspberrypi:~ $ # "Current Virtual Server Forwarding Table" pi@raspberrypi:~ $ # ServerName Protocol Local IP Address Local Port WAN Port State Action pi@raspberrypi:~ $ # WEB tcp 192.168.19.2 80-80 80-80 Enable Delete Disable pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### 2: Zonet1), ZSR4154WE(01), 802.11n Wireless Broadband Router, Power: 9V-1A, IP Address: 192.168.0.1 pi@raspberrypi:~ $ # On "192.168.0.1/main.html", Select "Virtual Server", then "Port Range Forwarding", and under "Well Known Service Ports", select "HTTP(80) and then "ADD" (1-10) for possible selections. This populates the selected line with: "Start Port - End Port" with "80 - 80", "To IP Address" "192.168.0.""100", "Protocol", "TCP", "Enable", "checked". Then click "Apply", and "Logout". pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### 3: Western Digital My Net N750, 12 VDC @ 2 Amps, Tabs: Additional Features / Port Forwarding pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Port Forwarding pi@raspberrypi:~ $ # This option is used to open multiple ports or a range of ports in your router and redirect data through those ports to a single computer on your network. This feature allows you to enter external start port, external end port, and internal start port in the fields. The internal end port will be generated automatically. This option is only applicable to the Internet session. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Enabled Name: HTTP Application Name: HTTP External Port Range From: 80 To: 80 Protocol TCP pi@raspberrypi:~ $ @ IP Address: 192.168.1.138 Computer Name: frank-desktop (102.168.1.138) Internal Port Range From: 80 To: 80 bash: syntax error near unexpected token `(' pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # Then "SAVE". pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # This pretty much automates the process. One would need to set a static IP address on the web server machine so it would always be at the same address. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # ***************************** pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # pi@raspberrypi:~ $ ### Links: pi@raspberrypi:~ $ # These links are the easiest and best I have found for sharing the “Good News” I found around my seventh birthday, the Fall of 1955. Frank Anderson, ac0xl. pi@raspberrypi:~ $ # http://4laws.com/laws/languages.html, 4 Spiritual Laws. pi@raspberrypi:~ $ # https://www.cru.org/us/en/train-and-grow/spiritual-growth/the-spirit-filled-life.html, The Spirit Filled Life. pi@raspberrypi:~ $ # https://www.cru.org, Exploring Your Life’s Purpose - Let’s journey together. pi@raspberrypi:~ $ # https://godtoolsapp.com, GodTools - Helping You Share Your Faith. pi@raspberrypi:~ $ # pi@raspberrypi:~ $ # *************************************** pi@raspberrypi:~ $ pi@raspberrypi:~ $ 2022-03-25-Install-thttpd-Raspberry-Pi-Model-B-Plus-Rev-1.2-with-512-MB-RAM.txt Compiled and installed on a Raspberry Pi Model B Plus Rev 1.2 with 512 MB RAM and 4 USB ports. pi@raspberrypi:~ $ cat /proc/cpuinfo processor : 0 model name : ARMv6-compatible processor rev 7 (v6l) BogoMIPS : 697.95 Features : half thumb fastmult vfp edsp java tls CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x0 CPU part : 0xb76 CPU revision : 7 Hardware : BCM2835 Revision : 0010 Serial : 0000000078c30145 Model : Raspberry Pi Model B Plus Rev 1.2 pi@raspberrypi:~ $ sudo apt update Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease Reading package lists... Done Building dependency tree... Done Reading state information... Done 1 package can be upgraded. Run 'apt list --upgradable' to see it. pi@raspberrypi:~ $ sudo apt list --upgradable Listing... Done libtiff5/stable 4.2.0-1+deb11u1 armhf [upgradable from: 4.2.0-1] N: There is 1 additional version. Please use the '-a' switch to see it pi@raspberrypi:~ $ sudo apt list --upgradable -a Listing... Done libtiff5/stable 4.2.0-1+deb11u1 armhf [upgradable from: 4.2.0-1] libtiff5/now 4.2.0-1 armhf [installed,upgradable to: 4.2.0-1+deb11u1] pi@raspberrypi:~ $ sudo apt install whois Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: whois 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 71.4 kB of archives. After this operation, 267 kB of additional disk space will be used. Get:1 http://raspbian.phirephly.design/raspbian bullseye/main armhf whois armhf 5.5.10 [71.4 kB] Fetched 71.4 kB in 2s (38.7 kB/s) Selecting previously unselected package whois. (Reading database ... 176650 files and directories currently installed.) Preparing to unpack .../whois_5.5.10_armhf.deb ... Unpacking whois (5.5.10) ... Setting up whois (5.5.10) ... Processing triggers for man-db (2.9.4-2) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo apt install geany geany-common libvte9 doc-base libuuid-perl libvte-common libyaml-tiny-perl Reading package lists... Done Building dependency tree... Done Reading state information... Done geany is already the newest version (1.37.1-2+rpt1). geany-common is already the newest version (1.37.1-2+rpt1). geany-common set to manually installed. Suggested packages: dhelp | dwww | dochelp | doc-central | yelp | khelpcenter The following NEW packages will be installed: doc-base libuuid-perl libvte-common libvte9 libyaml-tiny-perl 0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded. Need to get 1,110 kB of archives. After this operation, 2,209 kB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libuuid-perl armhf 0.28-1+b2 [18.3 kB] Get:2 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libyaml-tiny-perl all 1.73-1 [32.3 kB] Get:3 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf doc-base all 0.11.1 [102 kB] Get:4 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libvte-common all 1:0.28.2-6 [401 kB] Get:5 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libvte9 armhf 1:0.28.2-6+b1 [556 kB] Fetched 1,110 kB in 8s (137 kB/s) Selecting previously unselected package libuuid-perl. (Reading database ... 176673 files and directories currently installed.) Preparing to unpack .../libuuid-perl_0.28-1+b2_armhf.deb ... Unpacking libuuid-perl (0.28-1+b2) ... Selecting previously unselected package libyaml-tiny-perl. Preparing to unpack .../libyaml-tiny-perl_1.73-1_all.deb ... Unpacking libyaml-tiny-perl (1.73-1) ... Selecting previously unselected package doc-base. Preparing to unpack .../doc-base_0.11.1_all.deb ... Unpacking doc-base (0.11.1) ... Selecting previously unselected package libvte-common. Preparing to unpack .../libvte-common_1%3a0.28.2-6_all.deb ... Unpacking libvte-common (1:0.28.2-6) ... Selecting previously unselected package libvte9. Preparing to unpack .../libvte9_1%3a0.28.2-6+b1_armhf.deb ... Unpacking libvte9 (1:0.28.2-6+b1) ... Setting up libvte-common (1:0.28.2-6) ... Setting up libuuid-perl (0.28-1+b2) ... Setting up libvte9 (1:0.28.2-6+b1) ... Setting up libyaml-tiny-perl (1.73-1) ... Setting up doc-base (0.11.1) ... Registering 30 doc-base files... Processing triggers for man-db (2.9.4-2) ... Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u2) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo apt install dochelp Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: dochelp 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 552 kB of archives. After this operation, 1,838 kB of additional disk space will be used. Get:1 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf dochelp armhf 0.1.8 [552 kB] Fetched 552 kB in 4s (131 kB/s) Selecting previously unselected package dochelp. (Reading database ... 176846 files and directories currently installed.) Preparing to unpack .../dochelp_0.1.8_armhf.deb ... Unpacking dochelp (0.1.8) ... Setting up dochelp (0.1.8) ... Processing triggers for hicolor-icon-theme (0.17-2) ... Processing triggers for gnome-menus (3.36.0-1) ... Processing triggers for man-db (2.9.4-2) ... Processing triggers for mailcap (3.69) ... Processing triggers for desktop-file-utils (0.26-1) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo apt install pluma Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: gir1.2-gtksource-3.0 gir1.2-peas-1.0 gir1.2-pluma-1.0 libpeas-1.0-0 libpeas-common libpython3.8 libpython3.8-minimal libpython3.8-stdlib mate-desktop-common pluma-common The following NEW packages will be installed: gir1.2-gtksource-3.0 gir1.2-peas-1.0 gir1.2-pluma-1.0 libpeas-1.0-0 libpeas-common libpython3.8 libpython3.8-minimal libpython3.8-stdlib mate-desktop-common pluma pluma-common 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. Need to get 6,740 kB of archives. After this operation, 48.6 MB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf gir1.2-gtksource-3.0 armhf 3.24.11-2 [28.3 kB] Get:2 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpeas-common all 1.28.0-2 [53.2 kB] Get:3 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpython3.8-minimal armhf 3.8.7-1 [753 kB] Get:4 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpython3.8-stdlib armhf 3.8.7-1 [1,647 kB] Get:5 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpython3.8 armhf 3.8.7-1 [1,344 kB] Get:6 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf libpeas-1.0-0 armhf 1.28.0-2 [56.6 kB] Get:7 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf gir1.2-peas-1.0 armhf 1.28.0-2 [12.4 kB] Get:8 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf gir1.2-pluma-1.0 armhf 1.24.1-1 [29.8 kB] Get:9 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf mate-desktop-common all 1.24.1-2 [495 kB] Get:10 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf pluma-common all 1.24.1-1 [1,938 kB] Get:11 http://mirrors.syringanetworks.net/raspbian/raspbian bullseye/main armhf pluma armhf 1.24.1-1 [383 kB] Fetched 6,740 kB in 38s (178 kB/s) Selecting previously unselected package gir1.2-gtksource-3.0:armhf. (Reading database ... 176861 files and directories currently installed.) Preparing to unpack .../00-gir1.2-gtksource-3.0_3.24.11-2_armhf.deb ... Unpacking gir1.2-gtksource-3.0:armhf (3.24.11-2) ... Selecting previously unselected package libpeas-common. Preparing to unpack .../01-libpeas-common_1.28.0-2_all.deb ... Unpacking libpeas-common (1.28.0-2) ... Selecting previously unselected package libpython3.8-minimal:armhf. Preparing to unpack .../02-libpython3.8-minimal_3.8.7-1_armhf.deb ... Unpacking libpython3.8-minimal:armhf (3.8.7-1) ... Selecting previously unselected package libpython3.8-stdlib:armhf. Preparing to unpack .../03-libpython3.8-stdlib_3.8.7-1_armhf.deb ... Unpacking libpython3.8-stdlib:armhf (3.8.7-1) ... Selecting previously unselected package libpython3.8:armhf. Preparing to unpack .../04-libpython3.8_3.8.7-1_armhf.deb ... Unpacking libpython3.8:armhf (3.8.7-1) ... Selecting previously unselected package libpeas-1.0-0:armhf. Preparing to unpack .../05-libpeas-1.0-0_1.28.0-2_armhf.deb ... Unpacking libpeas-1.0-0:armhf (1.28.0-2) ... Selecting previously unselected package gir1.2-peas-1.0:armhf. Preparing to unpack .../06-gir1.2-peas-1.0_1.28.0-2_armhf.deb ... Unpacking gir1.2-peas-1.0:armhf (1.28.0-2) ... Selecting previously unselected package gir1.2-pluma-1.0. Preparing to unpack .../07-gir1.2-pluma-1.0_1.24.1-1_armhf.deb ... Unpacking gir1.2-pluma-1.0 (1.24.1-1) ... Selecting previously unselected package mate-desktop-common. Preparing to unpack .../08-mate-desktop-common_1.24.1-2_all.deb ... Unpacking mate-desktop-common (1.24.1-2) ... Selecting previously unselected package pluma-common. Preparing to unpack .../09-pluma-common_1.24.1-1_all.deb ... Unpacking pluma-common (1.24.1-1) ... Selecting previously unselected package pluma. Preparing to unpack .../10-pluma_1.24.1-1_armhf.deb ... Unpacking pluma (1.24.1-1) ... Setting up libpython3.8-minimal:armhf (3.8.7-1) ... Setting up libpeas-common (1.28.0-2) ... Setting up mate-desktop-common (1.24.1-2) ... Setting up gir1.2-gtksource-3.0:armhf (3.24.11-2) ... Setting up pluma-common (1.24.1-1) ... Setting up libpython3.8-stdlib:armhf (3.8.7-1) ... Setting up gir1.2-pluma-1.0 (1.24.1-1) ... Setting up libpython3.8:armhf (3.8.7-1) ... Setting up libpeas-1.0-0:armhf (1.28.0-2) ... Setting up gir1.2-peas-1.0:armhf (1.28.0-2) ... Processing triggers for man-db (2.9.4-2) ... Processing triggers for mailcap (3.69) ... Processing triggers for desktop-file-utils (0.26-1) ... Processing triggers for hicolor-icon-theme (0.17-2) ... Processing triggers for gnome-menus (3.36.0-1) ... Processing triggers for libglib2.0-0:armhf (2.66.8-1) ... Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u2) ... Setting up pluma (1.24.1-1) ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 29G 8.1G 20G 30% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 0 215M 0% /dev/shm tmpfs 86M 1.1M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 32K 43M 1% /run/user/1000 pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:/etc $ date Fri 25 Mar 2022 11:31:23 AM MDT pi@raspberrypi:/etc $ w 11:31:26 up 58 min, 2 users, load average: 1.01, 1.09, 1.40 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 16:11m 0.82s 0.66s -bash pi tty7 :0 Thu19 16:11m 3:44 1.55s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ $PATH bash: /home/local/sbin:/home/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games: No such file or directory pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo mkdir /fd /hd /sd pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ls / bin boot dev etc fd hd home lib lost+found media mnt opt proc root run sbin sd srv sys tmp usr var pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /etc pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cat group # (we are looking for a group "www") root:x:0: root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi fax:x:21: voice:x:22: cdrom:x:24:pi floppy:x:25: tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi sasl:x:45: plugdev:x:46:pi staff:x:50: games:x:60:pi users:x:100:pi nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: epmd:x:124: geoclue:x:125: systemd-coredump:x:996: bash: root:x:0:: command not found pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Since there is no group "www" with the user "(pi)" we will need to add this, getting the directions by using "--help" to see our options. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ addgroup --help adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a normal user adduser --system [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--gecos GECOS] [--group | --ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a system user adduser --group [--gid ID] GROUP addgroup [--gid ID] GROUP Add a user group addgroup --system [--gid ID] GROUP Add a system group adduser USER GROUP Add an existing user to an existing group general options: --quiet | -q don't give process information to stdout --force-badname allow usernames which do not match the NAME_REGEX configuration variable --help | -h usage message --version | -v version number and copyright --conf | -c FILE use FILE as configuration file pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # From this we get the commands we need to add a system group "www" and make "(pi)" a member of this group. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Add a system group pi@raspberrypi:/etc $ # adduser USER GROUP pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Add an existing user to an existing group pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # We need to add a system group "www" and make "(pi)" a member of this group. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo addgroup --system www Adding group `www' (GID 126) ... Done. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo adduser pi www Adding user `pi' to group `www' ... Adding user pi to group www Done. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cat group root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi fax:x:21: voice:x:22: cdrom:x:24:pi floppy:x:25: tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi sasl:x:45: plugdev:x:46:pi staff:x:50: games:x:60:pi users:x:100:pi nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: epmd:x:124: geoclue:x:125: systemd-coredump:x:996: www:x:126:pi pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Success, Group "www" has a user "(pi)" and is also less than 1000, (the number will probably be different than 124). pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd ~/freedom/Acme.com/thttpd-2.29 pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ ls aclocal.m4 config.log extras INSTALL Makefile.in mime_types.h scripts thttpd.8 TODO cgi-bin config.status fdwatch.c install-sh match.c mime_types.txt strerror.c thttpd.c version.h cgi-src config.sub fdwatch.h libhttpd.c match.h mmc.c tdate_parse.c thttpd.o config.cache configure fdwatch.o libhttpd.h match.o mmc.h tdate_parse.h timers.c config.guess configure.in FILES libhttpd.o mime_encodings.h mmc.o tdate_parse.o timers.h config.h contrib index.html Makefile mime_encodings.txt README thttpd timers.o pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ***** Starting the compile. ***** pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ make clean # Step one. for i in cgi-src extras ; do ( \ cd $i ; \ pwd ; \ make clean \ ) ; done /home/pi/freedom/Acme.com/thttpd-2.29/cgi-src make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' rm -f *.o redirect ssi phf make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' /home/pi/freedom/Acme.com/thttpd-2.29/extras make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' rm -f *.o makeweb htpasswd make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' rm -f thttpd thttpd.o libhttpd.o fdwatch.o mmc.o timers.o match.o tdate_parse.o mime_encodings.h mime_types.h pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ ./configure # Step two. loading cache ./config.cache checking host system type... Invalid configuration `armv6l-pc-linux-gnuoldld': machine `armv6l-pc' not recognized checking target system type... Invalid configuration `armv6l-pc-linux-gnuoldld': machine `armv6l-pc' not recognized checking build system type... Invalid configuration `armv6l-pc-linux-gnuoldld': machine `armv6l-pc' not recognized checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking gcc version... (cached) 10 checking how to link static binaries... (cached) unknown checking for __progname... (cached) yes checking how to run the C preprocessor... (cached) gcc -E checking for fcntl.h... (cached) yes checking for grp.h... (cached) yes checking for memory.h... (cached) yes checking for paths.h... (cached) yes checking for poll.h... (cached) yes checking for sys/poll.h... (cached) yes checking for sys/devpoll.h... (cached) no checking for sys/event.h... (cached) no checking for osreldate.h... (cached) no checking whether time.h and sys/time.h may both be included... (cached) yes checking for dirent.h that defines DIR... (cached) yes checking for opendir in -ldir... (cached) no checking for /usr/local/v6/lib... no checking for gethostbyname... (cached) yes checking for socket... (cached) yes checking for main in -linet6... (cached) no checking for crypt... (cached) no checking for crypt in -lcrypt... (cached) yes checking for hstrerror... (cached) yes checking for strerror... (cached) yes checking for waitpid... (cached) yes checking for vsnprintf... (cached) yes checking for daemon... (cached) yes checking for setsid... (cached) yes checking for setlogin... (cached) no checking for getaddrinfo... (cached) yes checking for getnameinfo... (cached) yes checking for gai_strerror... (cached) yes checking for kqueue... (cached) no checking for sigset... (cached) yes checking for atoll... (cached) yes checking for unistd.h... (cached) yes checking for getpagesize... (cached) yes checking for working mmap... (cached) yes checking for select... (cached) yes checking for poll... (cached) yes checking if struct tm has tm_gmtoff member... (cached) yes checking if int64_t exists... (cached) yes checking if socklen_t exists... (cached) yes checking whether make sets ${MAKE}... (cached) yes checking for a BSD compatible install... (cached) /usr/bin/install -c creating ./config.status creating Makefile creating cgi-src/Makefile creating extras/Makefile pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ make # ******************* # Step three. gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c thttpd.c thttpd.c: In function ‘main’: thttpd.c:611:12: warning: implicit declaration of function ‘sigset’; did you mean ‘isset’? [-Wimplicit-function-declaration] 611 | (void) sigset( SIGTERM, handle_term ); | ^~~~~~ | isset rm -f mime_encodings.h sed < mime_encodings.txt > mime_encodings.h \ -e 's/#.*//' -e 's/[ ]*$//' -e '/^$/d' \ -e 's/[ ][ ]*/", 0, "/' -e 's/^/{ "/' -e 's/$/", 0 },/' rm -f mime_types.h sed < mime_types.txt > mime_types.h \ -e 's/#.*//' -e 's/[ ]*$//' -e '/^$/d' \ -e 's/[ ][ ]*/", 0, "/' -e 's/^/{ "/' -e 's/$/", 0 },/' gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c libhttpd.c libhttpd.c: In function ‘cgi_child’: libhttpd.c:3557:12: warning: implicit declaration of function ‘sigset’; did you mean ‘isset’? [-Wimplicit-function-declaration] 3557 | (void) sigset( SIGPIPE, SIG_DFL ); | ^~~~~~ | isset libhttpd.c: In function ‘ls’: libhttpd.c:2846:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] 2846 | (void) strncpy( nameptrs[nnames], de->d_name, namlen ); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ libhttpd.c:64:25: note: length computed here 64 | # define NAMLEN(dirent) strlen((dirent)->d_name) | ^~~~~~~~~~~~~~~~~~~~~~~~ libhttpd.c:2845:12: note: in expansion of macro ‘NAMLEN’ 2845 | namlen = NAMLEN(de); | ^~~~~~ gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c fdwatch.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c mmc.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c timers.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c match.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -c tdate_parse.c gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I. -o thttpd thttpd.o libhttpd.o fdwatch.o mmc.o timers.o match.o tdate_parse.o -lcrypt for i in cgi-src extras ; do ( \ cd $i ; \ pwd ; \ make \ WEBDIR=/home/local/www \ CGIBINDIR=/home/local/www/cgi-bin \ MANDIR=/home/local/man \ WEBGROUP=www \ ) ; done /home/pi/freedom/Acme.com/thttpd-2.29/cgi-src make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -c redirect.c gcc redirect.o -lcrypt -o redirect gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -c ssi.c ssi.c: In function ‘get_filename.constprop’: ssi.c:183:9: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] 183 | (void) strncpy( fn, filename, fl - vl ); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ssi.c:169:10: note: length computed here 169 | fl = strlen( filename ); | ^~~~~~~~~~~~~~~~~~ gcc ssi.o ../match.o -lcrypt -o ssi gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -c phf.c gcc phf.o -lcrypt -o phf make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' /home/pi/freedom/Acme.com/thttpd-2.29/extras make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -DWEBDIR=\"/home/local/www\" -c makeweb.c gcc makeweb.o -o makeweb -lcrypt gcc -O2 -DHAVE__PROGNAME=1 -DHAVE_FCNTL_H=1 -DHAVE_GRP_H=1 -DHAVE_MEMORY_H=1 -DHAVE_PATHS_H=1 -DHAVE_POLL_H=1 -DHAVE_SYS_POLL_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_LIBCRYPT=1 -DHAVE_STRERROR=1 -DHAVE_WAITPID=1 -DHAVE_VSNPRINTF=1 -DHAVE_DAEMON=1 -DHAVE_SETSID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETNAMEINFO=1 -DHAVE_GAI_STRERROR=1 -DHAVE_SIGSET=1 -DHAVE_ATOLL=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_POLL=1 -DHAVE_TM_GMTOFF=1 -DHAVE_INT64T=1 -DHAVE_SOCKLENT=1 -I.. -DWEBDIR=\"/home/local/www\" -c htpasswd.c gcc htpasswd.o -o htpasswd -lcrypt make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ******************* # Step four. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # The last step demands being "root" so it is: sudo make install # which should end with something like this: pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ sudo make install mkdir -p /home/local/sbin /usr/bin/install -c -m 555 -o bin -g bin thttpd /home/local/sbin mkdir -p /home/local/man/man1 mkdir -p /home/local/man/man8 /usr/bin/install -c -m 444 -o bin -g bin thttpd.8 /home/local/man/man8 for i in cgi-src extras ; do ( \ cd $i ; \ pwd ; \ make \ WEBDIR=/home/local/www \ CGIBINDIR=/home/local/www/cgi-bin \ MANDIR=/home/local/man \ WEBGROUP=www \ install \ ) ; done /home/pi/freedom/Acme.com/thttpd-2.29/cgi-src make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' mkdir -p /home/local/www/cgi-bin rm -f /home/local/www/cgi-bin/redirect cp redirect /home/local/www/cgi-bin/redirect rm -f /home/local/man/man8/redirect.8 cp redirect.8 /home/local/man/man8/redirect.8 rm -f /home/local/www/cgi-bin/ssi cp ssi /home/local/www/cgi-bin/ssi rm -f /home/local/man/man8/ssi.8 cp ssi.8 /home/local/man/man8/ssi.8 rm -f /home/local/www/cgi-bin/phf cp phf /home/local/www/cgi-bin/phf make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/cgi-src' /home/pi/freedom/Acme.com/thttpd-2.29/extras make[1]: Entering directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' rm -f /home/local/sbin/makeweb /home/local/sbin/htpasswd /home/local/sbin/syslogtocern cp makeweb /home/local/sbin/makeweb chgrp www /home/local/sbin/makeweb chmod 2755 /home/local/sbin/makeweb cp htpasswd /home/local/sbin/htpasswd cp syslogtocern /home/local/sbin/syslogtocern rm -f /home/local/man/man1/makeweb.1 cp makeweb.1 /home/local/man/man1/makeweb.1 rm -f /home/local/man/man1/htpasswd.1 cp htpasswd.1 /home/local/man/man1/htpasswd.1 rm -f /home/local/man/man8/syslogtocern.8 cp syslogtocern.8 /home/local/man/man8/syslogtocern.8 make[1]: Leaving directory '/home/pi/freedom/Acme.com/thttpd-2.29/extras' pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # ***************************** pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # "thttpd" is now installed. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ # The next thing is to add directories "logs" and "users" to the "www" directory. pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ pi@raspberrypi:~/freedom/Acme.com/thttpd-2.29 $ cd /home/local/www pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ls -al total 12 drwxr-xr-x 3 root root 4096 Mar 25 12:04 . drwxr-xr-x 5 root root 4096 Mar 25 12:04 .. drwxr-xr-x 2 root root 4096 Mar 25 12:04 cgi-bin pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ sudo mkdir -v logs users mkdir: created directory 'logs' mkdir: created directory 'users' pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ls -al total 20 drwxr-xr-x 5 root root 4096 Mar 25 12:08 . drwxr-xr-x 5 root root 4096 Mar 25 12:04 .. drwxr-xr-x 2 root root 4096 Mar 25 12:04 cgi-bin drwxr-xr-x 2 root root 4096 Mar 25 12:08 logs drwxr-xr-x 2 root root 4096 Mar 25 12:08 users pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ # ********* We need this! pi@raspberrypi:/home/local/www $ # ***** Now we need to change the permissions on "users" so those in the "www" group can write to this directory!***** pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ sudo chmod -v 775 users mode of 'users' changed from 0755 (rwxr-xr-x) to 0775 (rwxrwxr-x) pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ ls -al total 20 drwxr-xr-x 5 root root 4096 Mar 25 12:08 . drwxr-xr-x 5 root root 4096 Mar 25 12:04 .. drwxr-xr-x 2 root root 4096 Mar 25 12:04 cgi-bin drwxr-xr-x 2 root root 4096 Mar 25 12:08 logs drwxrwxr-x 2 root root 4096 Mar 25 12:08 users pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ # Make sure users is now 0775 (drwxrwxr-x). pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ # Now we go back one level so we can change the owner and group on everything in the "www" directory from "root:root" to "root:www". pi@raspberrypi:/home/local/www $ pi@raspberrypi:/home/local/www $ cd ../ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ sudo chown -vR root:www www changed ownership of 'www/users' from root:root to root:www changed ownership of 'www/logs' from root:root to root:www changed ownership of 'www/cgi-bin/redirect' from root:root to root:www changed ownership of 'www/cgi-bin/phf' from root:root to root:www changed ownership of 'www/cgi-bin/ssi' from root:root to root:www changed ownership of 'www/cgi-bin' from root:root to root:www changed ownership of 'www' from root:root to root:www pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ ls -al total 20 drwxr-xr-x 5 root root 4096 Mar 25 12:04 . drwxr-xr-x 4 root root 4096 Mar 25 12:04 .. drwxr-xr-x 4 root root 4096 Mar 25 12:04 man drwxr-xr-x 2 root root 4096 Mar 25 12:04 sbin drwxr-xr-x 5 root www 4096 Mar 25 12:08 www pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ # We now change back to the "(pi)" home directory and are going to add a "user" that belongs in the "www" group, from the help on "adduser" we see what we have to type. pi@raspberrypi:/home/local $ pi@raspberrypi:/home/local $ cd pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ addgroup --help adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a normal user adduser --system [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--gecos GECOS] [--group | --ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a system user adduser --group [--gid ID] GROUP addgroup [--gid ID] GROUP Add a user group addgroup --system [--gid ID] GROUP Add a system group adduser USER GROUP Add an existing user to an existing group general options: --quiet | -q don't give process information to stdout --force-badname allow usernames which do not match the NAME_REGEX configuration variable --help | -h usage message --version | -v version number and copyright --conf | -c FILE use FILE as configuration file pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # For an example, I will add "ac0xl", my ham radio call sign, as a user for my website. One can think of these as different tabs or categories on your website. Use a different password for these "users" than the one you use for "(pi)" for more security. The information it asks for was for the "finger" program which most computers don't run for security reasons. I usually just use the "user" for the name and leave the rest blank. (This time I will use my real data.) pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --add_extra_groups ac0xl Adding user `ac0xl' ... Adding new group `ac0xl' (1001) ... Adding new user `ac0xl' (1001) with group `ac0xl' ... Creating home directory `/home/ac0xl' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for ac0xl Enter the new value, or press ENTER for the default Full Name []: Frank Anderson Room Number []: 651 N Broadway Work Phone []: 435-210-0710 Home Phone []: 970-424-1451 Other []: Green River UTah 84525-0615 Is the information correct? [Y/n] y Adding new user `ac0xl' to extra groups ... Adding user `ac0xl' to group `dialout' ... Adding user `ac0xl' to group `cdrom' ... Adding user `ac0xl' to group `floppy' ... Adding user `ac0xl' to group `audio' ... Adding user `ac0xl' to group `video' ... Adding user `ac0xl' to group `plugdev' ... Adding user `ac0xl' to group `users' ... pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cat /etc/group root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: epmd:x:124: geoclue:x:125: systemd-coredump:x:996: www:x:126:pi ac0xl:x:1001: pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # adduser USER GROUP pi@raspberrypi:~ $ # Add an existing user to an existing group pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser ac0xl www Adding user `ac0xl' to group `www' ... Adding user ac0xl to group www Done. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cat /etc/group root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: epmd:x:124: geoclue:x:125: systemd-coredump:x:996: www:x:126:pi,ac0xl ac0xl:x:1001: pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cat /etc/group root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: epmd:x:124: geoclue:x:125: systemd-coredump:x:996: www:x:126:pi,ac0xl ac0xl:x:1001: pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # ************** pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ ls -al total 20 drwxr-xr-x 5 root root 4096 Mar 25 12:18 . drwxr-xr-x 21 root root 4096 Mar 25 11:33 .. drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 25 12:18 ac0xl drwxr-xr-x 5 root root 4096 Mar 25 12:04 local drwxr-xr-x 16 pi pi 4096 Mar 25 11:15 pi pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ su ac0xl # we have to change to user "(ac0xl)" Password: ac0xl@raspberrypi:/home $ ac0xl@raspberrypi:/home $ ac0xl@raspberrypi:/home $ # here we are still in "/home", and the user is now "ac0xl". ac0xl@raspberrypi:/home $ ac0xl@raspberrypi:/home $ cd ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ # we are now in "(ac0xl)" ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 25 12:18 . drwxr-xr-x 5 root root 4096 Mar 25 12:18 .. -rw-r--r-- 1 ac0xl ac0xl 220 Mar 25 12:18 .bash_logout -rw-r--r-- 1 ac0xl ac0xl 3523 Mar 25 12:18 .bashrc -rw-r--r-- 1 ac0xl ac0xl 1670 Mar 25 12:18 .mkshrc -rw-r--r-- 1 ac0xl ac0xl 807 Mar 25 12:18 .profile ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ touch .1001 # Since the computer uses numbers instead of names this is one way to know what number a user is. ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ # if makeweb does not work (no permission) did you?: sudo chmod -v 0775 /home/local/www/users #? and it actually changed the permissions to (drwxrwxr-x)? ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/ac0xl Created symbolic link /home/ac0xl/public_html ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 25 12:34 . drwxr-xr-x 5 root root 4096 Mar 25 12:18 .. -rw-r--r-- 1 ac0xl ac0xl 0 Mar 25 12:32 .1001 -rw-r--r-- 1 ac0xl ac0xl 220 Mar 25 12:18 .bash_logout -rw-r--r-- 1 ac0xl ac0xl 3523 Mar 25 12:18 .bashrc -rw-r--r-- 1 ac0xl ac0xl 1670 Mar 25 12:18 .mkshrc -rw-r--r-- 1 ac0xl ac0xl 807 Mar 25 12:18 .profile lrwxrwxrwx 1 ac0xl www 27 Mar 25 12:34 public_html -> /home/local/www/users/ac0xl ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ ac0xl@raspberrypi:~ $ exit # changing back to (pi) and where we were. exit pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ cd /home/local/www/users pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ls -al total 12 drwxrwxr-x 3 root www 4096 Mar 25 12:34 . drwxr-xr-x 5 root www 4096 Mar 25 12:08 .. drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 25 12:34 ac0xl pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # Since I want to be able to access "ac0xl" from "pi" I will change the group on "ac0xl" to "www".pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ sudo chown -v ac0xl:www ac0xl changed ownership of 'ac0xl' from ac0xl:ac0xl to ac0xl:www pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ls -al total 12 drwxrwxr-x 3 root www 4096 Mar 25 12:34 . drwxr-xr-x 5 root www 4096 Mar 25 12:08 .. drwxr-xr-x 2 ac0xl www 4096 Mar 25 12:34 ac0xl pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # So far so good! We now have a main www user installed. pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ # I liked the "anvil_thttpd.gif" on the Acme.com website and chose it as my favicon.ico by renaming a copy to favicon.ico. An "anvil" is built to be hammered on without failing, and "thttpd" is built to take a hammering without failing. It is bullet proof! When you look at your logs you will see how "thttpd" will block all sorts of attempts to break your website! You will also get an idea of things to avoid on your website. pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ cd /home/local/sbin pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ ls -al total 136 drwxr-xr-x 2 root root 4096 Mar 25 12:04 . drwxr-xr-x 5 root root 4096 Mar 25 12:04 .. -rwxr-xr-x 1 root root 13692 Mar 25 12:04 htpasswd -rwxr-sr-x 1 root www 12996 Mar 25 12:04 makeweb -r-xr-xr-x 1 root root 2878 Mar 25 12:04 syslogtocern -r-xr-xr-x 1 bin bin 91232 Mar 25 12:04 thttpd pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ cd ~/freedom # (The directory "freedom" should be in "/home/(pi)/"). pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ ls -al total 808 drwxr-xr-x 6 pi pi 4096 Mar 24 18:33 . drwxr-xr-x 16 pi pi 4096 Mar 25 11:15 .. -r--r--r-- 1 pi pi 32014 Jan 8 2020 2010Website.pdf -r--r--r-- 1 pi pi 11024 Jan 8 2020 2019-09-05-Project.txt -r--r--r-- 1 pi pi 11941 Jan 8 2020 2019-10-01-website.txt -r--r--r-- 1 pi pi 6365 Jan 8 2020 2019-11-26-web-server.txt -r--r--r-- 1 pi pi 21340 Jan 8 2020 2019-12-06-Google-Search-Is-Broken.txt -r--r--r-- 1 pi pi 12787 Mar 18 2021 2020-07-17-thttpd.txt -r--r--r-- 1 pi pi 17955 Sep 10 2021 2021-09-01.txt -r--r--r-- 1 pi pi 17955 Sep 10 2021 2021-09-01.txt~ -r--r--r-- 1 pi pi 18393 Sep 11 2021 2021-09-07-Formatting-Drives-Greater-Than-512GB.txt -rw-r--r-- 1 pi pi 225785 Mar 23 18:33 2022-03-21-Install-thttpd-on-Raspberry-Pi-OS.txt -r--r--r-- 1 pi pi 225785 Mar 23 18:36 2022-03-21-Install-thttpd-on-Raspberry-Pi-OS.txt~ drwxr-xr-x 22 pi pi 4096 Mar 24 18:33 Acme.com -r--r--r-- 1 pi pi 140 Aug 23 2021 environment -r--r--r-- 1 pi pi 107 Aug 23 2021 environment~ drwxr-xr-x 4 pi pi 4096 Mar 24 18:33 'HTML Sampler_files' -r--r--r-- 1 pi pi 26907 Aug 16 2021 'HTML Sampler.html' drwxr-xr-x 2 pi pi 4096 Mar 24 18:33 os-debug -r--r--r-- 1 pi pi 40532 Sep 13 2021 readme.txt -r--r--r-- 1 pi pi 80728 Sep 8 2021 rfc3875-CGI.txt -r--r--r-- 1 pi pi 186 Jan 8 2020 sitemap.xml -r--r--r-- 1 pi pi 186 Jan 8 2020 sitemap.xml.txt -rwxr-xr-- 1 pi pi 472 Aug 31 2021 thttpd_config -r-xr-xr-- 1 pi pi 472 Aug 31 2021 thttpd_config~ drwxr-xr-x 2 pi pi 4096 Mar 24 18:33 thttpd-extras pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ sudo cp -rv thttpd-extras /home/local/sbin/ 'thttpd-extras' -> '/home/local/sbin/thttpd-extras' 'thttpd-extras/thttpd.sh' -> '/home/local/sbin/thttpd-extras/thttpd.sh' 'thttpd-extras/thttpd_config' -> '/home/local/sbin/thttpd-extras/thttpd_config' 'thttpd-extras/anvil_thttpd.gif' -> '/home/local/sbin/thttpd-extras/anvil_thttpd.gif' 'thttpd-extras/readme.txt' -> '/home/local/sbin/thttpd-extras/readme.txt' 'thttpd-extras/thttpd-rotate~' -> '/home/local/sbin/thttpd-extras/thttpd-rotate~' 'thttpd-extras/thttpd.sh~' -> '/home/local/sbin/thttpd-extras/thttpd.sh~' 'thttpd-extras/thttpd_config~' -> '/home/local/sbin/thttpd-extras/thttpd_config~' 'thttpd-extras/sitemap.xml' -> '/home/local/sbin/thttpd-extras/sitemap.xml' 'thttpd-extras/thttpd-rotate' -> '/home/local/sbin/thttpd-extras/thttpd-rotate' 'thttpd-extras/sitemap.xml.txt' -> '/home/local/sbin/thttpd-extras/sitemap.xml.txt' 'thttpd-extras/favicon.ico' -> '/home/local/sbin/thttpd-extras/favicon.ico' 'thttpd-extras/rc.local~' -> '/home/local/sbin/thttpd-extras/rc.local~' 'thttpd-extras/thttpd_wrapper' -> '/home/local/sbin/thttpd-extras/thttpd_wrapper' 'thttpd-extras/robots-site.txt' -> '/home/local/sbin/thttpd-extras/robots-site.txt' 'thttpd-extras/robots.txt' -> '/home/local/sbin/thttpd-extras/robots.txt' 'thttpd-extras/rc.local' -> '/home/local/sbin/thttpd-extras/rc.local' 'thttpd-extras/thttpd_wrapper~' -> '/home/local/sbin/thttpd-extras/thttpd_wrapper~' pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ sudo cp -rv os-debug /home/local/sbin/ 'os-debug' -> '/home/local/sbin/os-debug' 'os-debug/dead-thttpd' -> '/home/local/sbin/os-debug/dead-thttpd' 'os-debug/readme.txt' -> '/home/local/sbin/os-debug/readme.txt' 'os-debug/thttpd-rotate~' -> '/home/local/sbin/os-debug/thttpd-rotate~' 'os-debug/thttpd-rotate' -> '/home/local/sbin/os-debug/thttpd-rotate' 'os-debug/datelog~' -> '/home/local/sbin/os-debug/datelog~' 'os-debug/dead-thttpd~' -> '/home/local/sbin/os-debug/dead-thttpd~' 'os-debug/thttpd_wrapper' -> '/home/local/sbin/os-debug/thttpd_wrapper' 'os-debug/readme.txt~' -> '/home/local/sbin/os-debug/readme.txt~' 'os-debug/datelog' -> '/home/local/sbin/os-debug/datelog' 'os-debug/thttpd_wrapper~' -> '/home/local/sbin/os-debug/thttpd_wrapper~' pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ pi@raspberrypi:~/freedom $ cd /home/local/sbin/thttpd-extras pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al total 76 drwxr-xr-x 2 root root 4096 Mar 25 12:43 . drwxr-xr-x 4 root root 4096 Mar 25 12:45 .. -r--r--r-- 1 root root 533 Mar 25 12:43 anvil_thttpd.gif -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico -rwxr-xr-- 1 root root 485 Mar 25 12:43 rc.local -r-xr-xr-- 1 root root 485 Mar 25 12:43 rc.local~ -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -r--r--r-- 1 root root 73 Mar 25 12:43 robots-site.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt -rw-r--r-- 1 root root 186 Mar 25 12:43 sitemap.xml -r--r--r-- 1 root root 186 Mar 25 12:43 sitemap.xml.txt -rwxr-xr-- 1 root root 472 Mar 25 12:43 thttpd_config -r-xr-xr-- 1 root root 472 Mar 25 12:43 thttpd_config~ -rwxr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate -r-xr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate~ -rwxr-xr-- 1 root root 138 Mar 25 12:43 thttpd.sh -r-xr-xr-- 1 root root 138 Mar 25 12:43 thttpd.sh~ -rwxr-xr-- 1 root root 122 Mar 25 12:43 thttpd_wrapper -r-xr-xr-- 1 root root 122 Mar 25 12:43 thttpd_wrapper~ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat /etc/rc.local #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # Print the IP address _IP=$(hostname -I) || true if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi exit 0 pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***** rc.local is a file that is part of "systemd" which is in "/etc", and may or may not be empty. ***** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat rc.local # This is what we are going to replace /etc/rc.local with, if there are other things there make sure you add them in! #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # Print the IP address _IP=$(hostname -I) || true if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi # Start thttpd echo "Starting thttpd. \n" . /etc/thttpd.sh # exit 0 pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # If /etc/rc.local is not empty, check that nothing different is in it as we are adding the lines: # Starting thttpd, echo "Starting thttpd. \n", and . /etc/thttpd.sh, and #, before the exit 0 to the file to start thttpd. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav rc.local /etc/rc.local bash: pi@raspberrypi:/home/local/sbin/thttpd-extras: No such file or directory pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # since what was there matches what is above what we are adding we over write the file. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav rc.local /etc/rc.local cp: overwrite '/etc/rc.local'? y 'rc.local' -> '/etc/rc.local' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -l /etc/rc.local -rwxr-xr-- 1 root root 485 Mar 25 12:43 /etc/rc.local pi@raspberrypi:/home/local/sbin/thttpd-extras $ # (rc.local is still 0754) pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # We now need to copy thttpd.sh to /etc and make sure it is 0754. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd.sh /etc/ 'thttpd.sh' -> '/etc/thttpd.sh' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -l /etc/thttpd.sh -rwxr-xr-- 1 root root 138 Mar 25 12:43 /etc/thttpd.sh pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # (thttpd.sh is still 0754) pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd.sh #!/bin/sh # thttpd.sh if [ -x /home/local/sbin/thttpd_wrapper ] ; then echo -n " thttpd" /home/local/sbin/thttpd_wrapper & fi # exit 0 pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # thttpd.sh is looking for thttpd_wrapper to be in "/home/local/sbin/" and being 0754, so we will copy "thttpd_wrapper" up one level to there. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd_wrapper ../ 'thttpd_wrapper' -> '../thttpd_wrapper' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -l /home/local/sbin total 140 -rwxr-xr-x 1 root root 13692 Mar 25 12:04 htpasswd -rwxr-sr-x 1 root www 12996 Mar 25 12:04 makeweb drwxr-xr-x 2 root root 4096 Mar 25 12:45 os-debug -r-xr-xr-x 1 root root 2878 Mar 25 12:04 syslogtocern -r-xr-xr-x 1 bin bin 91232 Mar 25 12:04 thttpd drwxr-xr-x 2 root root 4096 Mar 25 12:43 thttpd-extras -rwxr-xr-- 1 root root 122 Mar 25 12:43 thttpd_wrapper pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # The purpose of the file "thttpd_wrapper" is to restart "thttpd" if it stops, and it checks every 10 seconds to see if "/home/local/sbin/thttpd" is running and it also loads the configuration file that is: "/home/local/www/thttpd_config". If one changes the config file, one only has to kill the "thttpd pid number" and the wrapper will restart it in 10 seconds with the new configuration. "sudo kill xxxx" will kill a program. To get all of the running "pid" numbers use "ps -e". If you forget to use "sudo" to manually start "thttpd" or even "rc.local" every 10 seconds you will get a message that "/home/local/www/logs/thttpd_log" can not be written to! (because it is now owned by nobody). What appears on your screen is not what you type in, but both the error message and what you type in. Type in "ps -e" and look for the number for "thttpd_wrapper" and then type in "sudo kill xxxx" with "xxxx" being the "pid" number. Been there, done that way too many times! pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd_wrapper #!/bin/sh # thttpd_wrapper while true ; do /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config sleep 10 done # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # Next "thttpd-rotate" needs to be moved to "/etc/cron.daily/" so our log files get moved every day. The time they get rotated is in "/etc/crontab" pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd-rotate /etc/cron.daily/ 'thttpd-rotate' -> '/etc/cron.daily/thttpd-rotate' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al /etc/cron.daily total 40 drwxr-xr-x 2 root root 4096 Mar 25 13:08 . drwxr-xr-x 128 root root 12288 Mar 25 13:01 .. -rwxr-xr-x 1 root root 1478 Jun 10 2021 apt-compat -rwxr-xr-x 1 root root 1298 Apr 29 2021 dpkg -rwxr-xr-x 1 root root 377 Feb 28 2021 logrotate -rwxr-xr-x 1 root root 1123 Feb 19 2021 man-db -rw-r--r-- 1 root root 102 Feb 22 2021 .placeholder -rwxr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # (thttpd_rotate is still 0754) pi@raspberrypi:/home/local/sbin/thttpd-extras $ bash: pi@raspberrypi:/home/local/sbin/thttpd-extras: No such file or directory pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd-rotate #!/bin/sh # /etc/cron.daily/thttpd-rotate cd /home/local/www/logs rm -f thttpd_log.50 mv thttpd_log.49 thttpd_log.50 mv thttpd_log.48 thttpd_log.49 mv thttpd_log.47 thttpd_log.48 mv thttpd_log.46 thttpd_log.47 mv thttpd_log.45 thttpd_log.46 mv thttpd_log.44 thttpd_log.45 mv thttpd_log.43 thttpd_log.44 mv thttpd_log.42 thttpd_log.43 mv thttpd_log.41 thttpd_log.42 mv thttpd_log.40 thttpd_log.41 mv thttpd_log.39 thttpd_log.40 mv thttpd_log.38 thttpd_log.39 mv thttpd_log.37 thttpd_log.38 mv thttpd_log.36 thttpd_log.37 mv thttpd_log.35 thttpd_log.36 mv thttpd_log.34 thttpd_log.35 mv thttpd_log.33 thttpd_log.34 mv thttpd_log.32 thttpd_log.33 mv thttpd_log.31 thttpd_log.32 mv thttpd_log.30 thttpd_log.31 mv thttpd_log.29 thttpd_log.30 mv thttpd_log.28 thttpd_log.29 mv thttpd_log.27 thttpd_log.28 mv thttpd_log.26 thttpd_log.27 mv thttpd_log.25 thttpd_log.26 mv thttpd_log.24 thttpd_log.25 mv thttpd_log.23 thttpd_log.24 mv thttpd_log.22 thttpd_log.23 mv thttpd_log.21 thttpd_log.22 mv thttpd_log.20 thttpd_log.21 mv thttpd_log.19 thttpd_log.20 mv thttpd_log.18 thttpd_log.19 mv thttpd_log.17 thttpd_log.18 mv thttpd_log.16 thttpd_log.17 mv thttpd_log.15 thttpd_log.16 mv thttpd_log.14 thttpd_log.15 mv thttpd_log.13 thttpd_log.14 mv thttpd_log.12 thttpd_log.13 mv thttpd_log.11 thttpd_log.12 mv thttpd_log.10 thttpd_log.11 mv thttpd_log.09 thttpd_log.10 mv thttpd_log.08 thttpd_log.09 mv thttpd_log.07 thttpd_log.08 mv thttpd_log.06 thttpd_log.07 mv thttpd_log.05 thttpd_log.06 mv thttpd_log.04 thttpd_log.05 mv thttpd_log.03 thttpd_log.04 mv thttpd_log.02 thttpd_log.03 mv thttpd_log.01 thttpd_log.02 date >> thttpd_log w >> thttpd_log mv thttpd_log thttpd_log.01 date > thttpd_log w >> thttpd_log kill -usr1 `cat /var/run/thttpd.pid` # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # To copy the log files to dates, I "cd /home/local/www/logs/" and then type ls -al to get a listing of the files and the dates for the files. Then to copy the files: "sudo cp -iav *log.xx 2020.01.01" with xx being the log number and then year.mo.da and then check that I have everything right before I press the enter key. Since the log files belong to nobody and nogroup one has to use "sudo" and "cp -iav" so root can then change the owner to something else. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # Example: pi@raspberrypi:/home/local/sbin/thttpd-extras $ # sudo cp -iv *log.xx year.mo.da # (one can use ? to replace one character, or * to replace the rest of the string for all matching files). pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # I don't need to copy the example. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # The last files to copy will be the "thttpd_config" files which go to "/home/local/www/". pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav thttpd_config* /home/local/www/ 'thttpd_config' -> '/home/local/www/thttpd_config' 'thttpd_config~' -> '/home/local/www/thttpd_config~' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al /home/local/www/ total 28 drwxr-xr-x 5 root www 4096 Mar 25 13:15 . drwxr-xr-x 5 root root 4096 Mar 25 12:04 .. drwxr-xr-x 2 root www 4096 Mar 25 12:04 cgi-bin drwxr-xr-x 2 root www 4096 Mar 25 12:08 logs -rwxr-xr-- 1 root root 472 Mar 25 12:43 thttpd_config -r-xr-xr-- 1 root root 472 Mar 25 12:43 thttpd_config~ drwxrwxr-x 3 root www 4096 Mar 25 12:34 users pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat thttpd_config # /home/local/www/thttpd_config dir=/home/local/www chroot #chroot jail data_dir=users #vhost # if you use a domain name you will have to uncomment (remove the # at the beginning) and then make a "user" directory using your external IPv4 address (xxx.xxx.xxx.xxx) and inside this directory make symbolic links back up to your other files in "users" (../"user-name"). cgipat=**.cgi logfile=/home/local/www/logs/thttpd_log pidfile=/var/run/thttpd.pid # pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ # ***************************** pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # TESTING: pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # We need the line from thttpd_wrapper without the wrapper. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd ../ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ cat thttpd_wrapper #!/bin/sh # thttpd_wrapper while true ; do /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config sleep 10 done # pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ pi@raspberrypi:/home/local/sbin $ cd # We are changing to pi home and will need to start a new terminal since it is going to lock up as soon as thttpd starts. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # ***** On a new terminal ***** pi@raspberrypi:~ $ pi@raspberrypi:~ $ # sudo /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config # copy the line without the first # and paste it on to the command prompt in a new terminal window, as it will lock up when thttpd starts running. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # On this terminal (in Geany), type: ps -e # to find the "PID"s so you can "kill" the processes after you do a test to see if entering "localhost" in your web browser brings up a green page with your web user. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ps -e PID TTY TIME CMD 1 ? 00:00:13 systemd 2 ? 00:00:00 kthreadd 6 ? 00:00:00 mm_percpu_wq 7 ? 00:00:00 rcu_tasks_rude_ 8 ? 00:00:00 rcu_tasks_trace 9 ? 00:00:16 ksoftirqd/0 10 ? 00:00:00 kdevtmpfs 11 ? 00:00:00 netns 13 ? 00:00:00 kauditd 15 ? 00:00:00 khungtaskd 16 ? 00:00:00 oom_reaper 17 ? 00:00:00 writeback 18 ? 00:00:07 kcompactd0 33 ? 00:00:00 kblockd 34 ? 00:00:00 blkcg_punt_bio 35 ? 00:00:00 watchdogd 36 ? 00:00:00 rpciod 37 ? 00:00:00 kworker/u3:0 38 ? 00:00:00 xprtiod 39 ? 00:00:09 kswapd0 40 ? 00:00:00 nfsiod 41 ? 00:00:00 iscsi_eh 42 ? 00:00:00 iscsi_destroy 43 ? 00:00:00 dwc_otg 44 ? 00:00:00 DWC Notificatio 45 ? 00:00:00 vchiq-slot/0 46 ? 00:00:00 vchiq-recy/0 47 ? 00:00:00 vchiq-sync/0 49 ? 00:00:00 zswap-shrink 52 ? 00:00:00 mmc_complete 54 ? 00:00:01 jbd2/mmcblk0p2- 55 ? 00:00:00 ext4-rsv-conver 59 ? 00:00:00 ipv6_addrconf 99 ? 00:00:05 systemd-journal 118 ? 00:00:02 systemd-udevd 134 ? 00:00:00 vchiq-keep/0 135 ? 00:00:00 SMIO 140 ? 00:00:00 mmal-vchiq 141 ? 00:00:00 mmal-vchiq 144 ? 00:00:00 mmal-vchiq 145 ? 00:00:00 mmal-vchiq 146 ? 00:00:00 mmal-vchiq 147 ? 00:00:00 mmal-vchiq 243 ? 00:00:01 avahi-daemon 244 ? 00:00:00 cron 245 ? 00:00:05 dbus-daemon 248 ? 00:00:00 avahi-daemon 262 ? 00:00:01 polkitd 291 ? 00:00:00 rsyslogd 301 ? 00:00:00 cfg80211 303 ? 00:00:00 dhcpcd 310 ? 00:00:01 systemd-logind 314 ? 00:00:31 thd 317 ? 00:00:01 udisksd 329 ? 00:00:00 wpa_supplicant 356 ? 00:00:01 ModemManager 358 ? 00:00:00 cupsd 359 ? 00:00:00 rngd 360 ? 00:00:00 epmd 371 ? 00:00:00 lightdm 373 ? 00:00:00 cups-browsed 390 tty1 00:00:00 login 391 ? 00:00:00 agetty 409 ? 00:00:01 systemd 414 ? 00:00:00 (sd-pam) 466 ? 00:00:00 pipewire 468 ? 00:00:03 pulseaudio 470 tty1 00:00:00 bash 471 ? 00:00:00 rtkit-daemon 486 tty7 00:15:18 Xorg 487 ? 00:00:01 dbus-daemon 488 ? 00:00:00 pipewire-media- 489 ? 00:00:00 cec-vc4 490 ? 00:00:00 irq/64-vc4 hdmi 491 ? 00:00:00 card0-crtc0 492 ? 00:00:00 card0-crtc1 493 ? 00:00:00 card0-crtc2 494 ? 00:00:00 card0-crtc3 529 ? 00:00:04 wpa_supplicant 578 ? 00:00:00 lightdm 583 ? 00:00:02 lxsession 636 ? 00:00:00 ssh-agent 670 ? 00:00:00 gvfsd 675 ? 00:00:00 gvfsd-fuse 699 ? 00:00:12 openbox 704 ? 00:00:00 lxpolkit 717 ? 00:22:35 lxpanel 721 ? 00:00:15 pcmanfm 753 ? 00:00:01 systemd-timesyn 755 ? 00:00:08 applet.py 773 ? 00:00:00 xcompmgr 775 ? 00:00:00 ssh-agent 778 ? 00:00:00 agent 846 ? 00:00:00 gvfs-udisks2-vo 852 ? 00:00:00 menu-cached 858 ? 00:00:00 gvfs-mtp-volume 862 ? 00:00:02 gvfs-afc-volume 867 ? 00:00:00 gvfs-gphoto2-vo 871 ? 00:00:00 gvfs-goa-volume 889 ? 00:00:00 gvfsd-trash 938 ? 00:03:28 packagekitd 947 ? 00:01:08 lxterminal 1024 pts/0 00:00:00 bash 2395 ? 00:02:26 mousepad 2403 ? 00:00:00 xfconfd 2407 ? 00:00:00 kworker/0:0-mm_percpu_wq 2411 ? 00:00:00 dconf-service 2425 ? 00:00:00 gvfsd-network 2440 ? 00:00:00 gvfsd-dnssd 2460 ? 00:18:23 geany 2467 pts/1 00:00:02 bash 2503 ? 00:00:01 kworker/0:0H-mmc_complete 3435 pts/2 00:00:00 bash 3457 ? 00:00:14 kworker/u2:0-events_unbound 3465 ? 00:00:03 kworker/u2:1-mt7601u 3466 ? 00:00:22 kworker/0:2-events_power_efficient 3475 ? 00:00:16 kworker/0:3+events_power_efficient 3479 ? 00:00:00 kworker/0:2H 3490 ? 00:00:05 kworker/u2:2-events_unbound 3494 ? 00:00:05 kworker/0:1-events 3496 pts/2 00:00:00 sudo 3497 ? 00:00:02 thttpd 3498 ? 00:00:00 kworker/0:1H 3499 pts/1 00:00:00 ps pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # On your web browser, type in localhost and see if a green screen comes up with your first web entry. Click on it to see if it will open. Then click on the (../) to see if it takes you back up one level. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # Everything should be working at this point. Test one OK. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # It took forever for Chromium to load and come up on a Raspberry Pi B Plus with 512 MB od RAM but it finally made it! pi@raspberrypi:~ $ pi@raspberrypi:~ $ # At this point we need to kill the two PID numbers for "sudo" and "thttpd" which in my case are: sudo 3496 and thttpd 3497 # sudo kill 3496 3497 and repeat it to make sure they are gone. Make sure you gut the numbers from the terminal! pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ ps p 3496 3497 PID TTY STAT TIME COMMAND 3496 pts/2 S+ 0:00 sudo /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config 3497 ? Rs 1:20 /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo kill 3496 3497 pi@raspberrypi:~ $ sudo kill 3496 3497 kill: (3496): No such process kill: (3497): No such process pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # I just discovered the "ps p then the 'PID' number"! It is good to verify what you are killing! pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home/local/www/logs pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al total 12 drwxr-xr-x 2 root www 4096 Mar 25 13:25 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. -rw-r--r-- 1 nobody nogroup 874 Mar 25 13:43 thttpd_log pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log ::1 - - [25/Mar/2022:19:37:13 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:41:03 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:41:39 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # The program thttpd is working OK. A little SLOW but it is working, even compiling it on a Raspberry Pi 4B+ with 512 MB RAM!!! pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ date Fri 25 Mar 2022 01:59:12 PM MDT pi@raspberrypi:/home/local/www/logs $ w 13:59:15 up 3:26, 2 users, load average: 1.75, 1.52, 2.49 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 18:39m 0.82s 0.66s -bash pi tty7 :0 Thu19 18:39m 16:36 2.79s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Now we need to add the files to "users" that are in "/home/local/sbin/thttpd-extras". pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cd /home/local/sbin/thttpd-extras/ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ ls -al total 76 drwxr-xr-x 2 root root 4096 Mar 25 12:43 . drwxr-xr-x 4 root root 4096 Mar 25 13:04 .. -r--r--r-- 1 root root 533 Mar 25 12:43 anvil_thttpd.gif -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico -rwxr-xr-- 1 root root 485 Mar 25 12:43 rc.local -r-xr-xr-- 1 root root 485 Mar 25 12:43 rc.local~ -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -r--r--r-- 1 root root 73 Mar 25 12:43 robots-site.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt -rw-r--r-- 1 root root 186 Mar 25 12:43 sitemap.xml -r--r--r-- 1 root root 186 Mar 25 12:43 sitemap.xml.txt -rwxr-xr-- 1 root root 472 Mar 25 12:43 thttpd_config -r-xr-xr-- 1 root root 472 Mar 25 12:43 thttpd_config~ -rwxr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate -r-xr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate~ -rwxr-xr-- 1 root root 138 Mar 25 12:43 thttpd.sh -r-xr-xr-- 1 root root 138 Mar 25 12:43 thttpd.sh~ -rwxr-xr-- 1 root root 122 Mar 25 12:43 thttpd_wrapper -r-xr-xr-- 1 root root 122 Mar 25 12:43 thttpd_wrapper~ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav favicon.ico /home/local/www/users/ 'favicon.ico' -> '/home/local/www/users/favicon.ico' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav readme.txt /home/local/www/users/ 'readme.txt' -> '/home/local/www/users/readme.txt' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo cp -iav robots.txt /home/local/www/users/ 'robots.txt' -> '/home/local/www/users/robots.txt' pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ sudo ls -al /home/local/www/users/ total 24 drwxrwxr-x 3 root www 4096 Mar 25 14:02 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. drwxr-xr-x 2 ac0xl www 4096 Mar 25 12:34 ac0xl -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat robots-site.txt User-agent: * Disallow: Sitemap: http://xxx.xxx.xxx.xxx/sitemap.xml/ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cat sitemap.xml http://xxx.xxx.xxx.xxx/ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ # You would use "robots-site.txt" replacing the XXX.xxx.xxx.xxx with your external static IPv4 address and then naming it "robots.txt". Likewise, with the "sitemap.xml" file and keep the same name for it. Adding both of these files to “/home/local/www/users/”, if you have an external static IP address. pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ pi@raspberrypi:/home/local/sbin/thttpd-extras $ cd /etc pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # **** If you don't use sudo here it will start looping every 10 seconds. Then you would have to find the pid number for thttpd_wrapper and sudo kill "pid-number" because it is trying to write to root files!!!, or just turn off the computer. **** pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo ./rc.local # (Starting thttpd from rc.local, REMEMBER the sudo!!!!!!) My IP address is 192.168.19.24 Starting thttpd. thttpdpi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # on the line above, (Notice the thttpd in front of pi@raspberrypi:/etc$ on the terminal screen, it is still running.) pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Here we see that my local IP Address is 192.168.19.24 and thttpd has started and is now running. so we will see if this IP Address will get to my web site. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Typing "192.168.19.15" on the browser, we get: pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ #Index of / #mode links bytes last-changed name # #dr-x 3 4096 Mar 25 20:02 ./ #dr-x 5 4096 Mar 25 19:15 ../ #dr-x 2 4096 Mar 25 18:34 ac0xl/ #-r-- 1 533 Mar 25 18:43 favicon.ico #-r-- 1 308 Mar 25 18:43 readme.txt #-r-- 1 27 Mar 25 18:43 robots.txt # pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # Now I can see why we used to use text programs on the web! Chromium is REALLY SLOW!!! pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cat /home/local/www/logs/*log ::1 - - [25/Mar/2022:19:37:13 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:41:03 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:41:39 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:20:00 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ # At this point I want to do a log rotate and check it out. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ cd cron.daily pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls apt-compat dpkg logrotate man-db thttpd-rotate pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al total 40 drwxr-xr-x 2 root root 4096 Mar 25 13:08 . drwxr-xr-x 128 root root 12288 Mar 25 13:01 .. -rwxr-xr-x 1 root root 1478 Jun 10 2021 apt-compat -rwxr-xr-x 1 root root 1298 Apr 29 2021 dpkg -rwxr-xr-x 1 root root 377 Feb 28 2021 logrotate -rwxr-xr-x 1 root root 1123 Feb 19 2021 man-db -rw-r--r-- 1 root root 102 Feb 22 2021 .placeholder -rwxr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo ./thttpd-rotate mv: cannot stat 'thttpd_log.49': No such file or directory mv: cannot stat 'thttpd_log.48': No such file or directory mv: cannot stat 'thttpd_log.47': No such file or directory mv: cannot stat 'thttpd_log.46': No such file or directory mv: cannot stat 'thttpd_log.45': No such file or directory mv: cannot stat 'thttpd_log.44': No such file or directory mv: cannot stat 'thttpd_log.43': No such file or directory mv: cannot stat 'thttpd_log.42': No such file or directory mv: cannot stat 'thttpd_log.41': No such file or directory mv: cannot stat 'thttpd_log.40': No such file or directory mv: cannot stat 'thttpd_log.39': No such file or directory mv: cannot stat 'thttpd_log.38': No such file or directory mv: cannot stat 'thttpd_log.37': No such file or directory mv: cannot stat 'thttpd_log.36': No such file or directory mv: cannot stat 'thttpd_log.35': No such file or directory mv: cannot stat 'thttpd_log.34': No such file or directory mv: cannot stat 'thttpd_log.33': No such file or directory mv: cannot stat 'thttpd_log.32': No such file or directory mv: cannot stat 'thttpd_log.31': No such file or directory mv: cannot stat 'thttpd_log.30': No such file or directory mv: cannot stat 'thttpd_log.29': No such file or directory mv: cannot stat 'thttpd_log.28': No such file or directory mv: cannot stat 'thttpd_log.27': No such file or directory mv: cannot stat 'thttpd_log.26': No such file or directory mv: cannot stat 'thttpd_log.25': No such file or directory mv: cannot stat 'thttpd_log.24': No such file or directory mv: cannot stat 'thttpd_log.23': No such file or directory mv: cannot stat 'thttpd_log.22': No such file or directory mv: cannot stat 'thttpd_log.21': No such file or directory mv: cannot stat 'thttpd_log.20': No such file or directory mv: cannot stat 'thttpd_log.19': No such file or directory mv: cannot stat 'thttpd_log.18': No such file or directory mv: cannot stat 'thttpd_log.17': No such file or directory mv: cannot stat 'thttpd_log.16': No such file or directory mv: cannot stat 'thttpd_log.15': No such file or directory mv: cannot stat 'thttpd_log.14': No such file or directory mv: cannot stat 'thttpd_log.13': No such file or directory mv: cannot stat 'thttpd_log.12': No such file or directory mv: cannot stat 'thttpd_log.11': No such file or directory mv: cannot stat 'thttpd_log.10': No such file or directory mv: cannot stat 'thttpd_log.09': No such file or directory mv: cannot stat 'thttpd_log.08': No such file or directory mv: cannot stat 'thttpd_log.07': No such file or directory mv: cannot stat 'thttpd_log.06': No such file or directory mv: cannot stat 'thttpd_log.05': No such file or directory mv: cannot stat 'thttpd_log.04': No such file or directory mv: cannot stat 'thttpd_log.03': No such file or directory mv: cannot stat 'thttpd_log.02': No such file or directory mv: cannot stat 'thttpd_log.01': No such file or directory pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # One has to use sudo because they are owned by root. The period "." stands for "do" then it needs a space, hence the "/". pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ Since thttpd is still running, I will try connecting with my Android phone. bash: Since: command not found pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Well that was almost insantaneous since my phone is really old and sometimes very slow!!! pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ps -e PID TTY TIME CMD 1 ? 00:00:14 systemd 2 ? 00:00:00 kthreadd 6 ? 00:00:00 mm_percpu_wq 7 ? 00:00:00 rcu_tasks_rude_ 8 ? 00:00:00 rcu_tasks_trace 9 ? 00:00:46 ksoftirqd/0 10 ? 00:00:00 kdevtmpfs 11 ? 00:00:00 netns 13 ? 00:00:00 kauditd 15 ? 00:00:00 khungtaskd 16 ? 00:00:00 oom_reaper 17 ? 00:00:00 writeback 18 ? 00:00:31 kcompactd0 33 ? 00:00:00 kblockd 34 ? 00:00:00 blkcg_punt_bio 35 ? 00:00:00 watchdogd 36 ? 00:00:00 rpciod 37 ? 00:00:00 kworker/u3:0 38 ? 00:00:00 xprtiod 39 ? 00:02:49 kswapd0 40 ? 00:00:00 nfsiod 41 ? 00:00:00 iscsi_eh 42 ? 00:00:00 iscsi_destroy 43 ? 00:00:00 dwc_otg 44 ? 00:00:00 DWC Notificatio 45 ? 00:00:00 vchiq-slot/0 46 ? 00:00:00 vchiq-recy/0 47 ? 00:00:00 vchiq-sync/0 49 ? 00:00:00 zswap-shrink 52 ? 00:00:00 mmc_complete 54 ? 00:00:01 jbd2/mmcblk0p2- 55 ? 00:00:00 ext4-rsv-conver 59 ? 00:00:00 ipv6_addrconf 99 ? 00:00:07 systemd-journal 118 ? 00:00:02 systemd-udevd 134 ? 00:00:00 vchiq-keep/0 135 ? 00:00:00 SMIO 140 ? 00:00:00 mmal-vchiq 141 ? 00:00:00 mmal-vchiq 144 ? 00:00:00 mmal-vchiq 145 ? 00:00:00 mmal-vchiq 146 ? 00:00:00 mmal-vchiq 147 ? 00:00:00 mmal-vchiq 243 ? 00:00:02 avahi-daemon 244 ? 00:00:00 cron 245 ? 00:00:05 dbus-daemon 248 ? 00:00:00 avahi-daemon 262 ? 00:00:01 polkitd 291 ? 00:00:00 rsyslogd 301 ? 00:00:00 cfg80211 303 ? 00:00:00 dhcpcd 310 ? 00:00:01 systemd-logind 314 ? 00:00:39 thd 317 ? 00:00:01 udisksd 329 ? 00:00:00 wpa_supplicant 356 ? 00:00:01 ModemManager 358 ? 00:00:00 cupsd 359 ? 00:00:00 rngd 360 ? 00:00:01 epmd 371 ? 00:00:00 lightdm 373 ? 00:00:00 cups-browsed 390 tty1 00:00:00 login 391 ? 00:00:00 agetty 409 ? 00:00:01 systemd 414 ? 00:00:00 (sd-pam) 466 ? 00:00:00 pipewire 468 ? 00:00:03 pulseaudio 470 tty1 00:00:00 bash 471 ? 00:00:01 rtkit-daemon 486 tty7 00:19:13 Xorg 487 ? 00:00:01 dbus-daemon 488 ? 00:00:00 pipewire-media- 489 ? 00:00:00 cec-vc4 490 ? 00:00:00 irq/64-vc4 hdmi 491 ? 00:00:00 card0-crtc0 492 ? 00:00:00 card0-crtc1 493 ? 00:00:00 card0-crtc2 494 ? 00:00:00 card0-crtc3 529 ? 00:00:07 wpa_supplicant 578 ? 00:00:00 lightdm 583 ? 00:00:03 lxsession 636 ? 00:00:00 ssh-agent 670 ? 00:00:00 gvfsd 675 ? 00:00:00 gvfsd-fuse 699 ? 00:00:17 openbox 704 ? 00:00:00 lxpolkit 717 ? 00:32:42 lxpanel 721 ? 00:00:15 pcmanfm 753 ? 00:00:01 systemd-timesyn 755 ? 00:00:08 applet.py 773 ? 00:00:00 xcompmgr 775 ? 00:00:00 ssh-agent 778 ? 00:00:00 agent 846 ? 00:00:00 gvfs-udisks2-vo 852 ? 00:00:00 menu-cached 858 ? 00:00:00 gvfs-mtp-volume 862 ? 00:00:03 gvfs-afc-volume 867 ? 00:00:00 gvfs-gphoto2-vo 871 ? 00:00:00 gvfs-goa-volume 889 ? 00:00:00 gvfsd-trash 938 ? 00:03:28 packagekitd 947 ? 00:01:09 lxterminal 1024 pts/0 00:00:00 bash 2395 ? 00:02:27 mousepad 2403 ? 00:00:00 xfconfd 2411 ? 00:00:00 dconf-service 2425 ? 00:00:00 gvfsd-network 2440 ? 00:00:00 gvfsd-dnssd 2460 ? 00:22:48 geany 2467 pts/1 00:00:03 bash 3435 pts/2 00:00:00 bash 3502 ? 00:03:57 chromium-browse 3522 ? 00:00:01 chrome_crashpad 3524 ? 00:00:00 chrome_crashpad 3528 ? 00:00:01 chromium-browse 3529 ? 00:00:00 chromium-browse 3531 ? 00:00:00 chromium-browse 3620 ? 00:00:03 chromium-browse 3621 ? 00:00:29 chromium-browse 3677 ? 00:01:45 chromium-browse 3679 ? 00:00:00 chromium-browse 3778 ? 00:00:35 kworker/u2:0-phy0 3896 ? 00:01:00 kworker/0:1-events_power_efficient 3906 pts/1 00:00:00 thttpd_wrapper 3914 ? 00:00:22 kworker/0:0H-mmc_complete 3972 ? 00:00:17 chromium-browse 4006 ? 00:00:17 kworker/0:2-events 4066 ? 00:00:36 thttpd 4078 ? 00:00:00 kworker/0:1H 4080 ? 00:00:00 kworker/0:0-events_power_efficient 4085 ? 00:00:04 kworker/u2:1-events_unbound 4088 ? 00:00:00 kworker/0:2H 4090 ? 00:00:02 kworker/0:3-events 4092 ? 00:00:00 kworker/u2:2-events_unbound 4093 ? 00:00:00 kworker/u2:3-events_unbound 4094 pts/1 00:00:00 ps pi@raspberrypi:/etc/cron.daily $ # This time thttpd_wrapper is 3906 and thttpd is 4066. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ps p 3906 4066 PID TTY STAT TIME COMMAND 3906 pts/1 S 0:00 /bin/sh /home/local/sbin/thttpd_wrapper 4066 ? Ss 0:42 /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo kill 3906 4066 pi@raspberrypi:/etc/cron.daily $ sudo kill 3906 4066 kill: (3906): No such process kill: (4066): No such process pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ cd pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ man makeweb pi@raspberrypi:~ $ pi@raspberrypi:~ $ man htpasswd pi@raspberrypi:~ $ pi@raspberrypi:~ $ man syslogtocern pi@raspberrypi:~ $ pi@raspberrypi:~ $ man thttpd pi@raspberrypi:~ $ pi@raspberrypi:~ $ man redirect pi@raspberrypi:~ $ pi@raspberrypi:~ $ man ssi pi@raspberrypi:~ $ pi@raspberrypi:~ $ man strftime pi@raspberrypi:~ $ pi@raspberrypi:~ $ man weblog_parse No manual entry for weblog_parse pi@raspberrypi:~ $ pi@raspberrypi:~ $ man http_get No manual entry for http_get pi@raspberrypi:~ $ pi@raspberrypi:~ $ # It looks like all of the man pages that come with thttpd are working. Some systems will not find the path to the man pages and those systems can use: sudo cp -iav /home/local/man/* /usr/local/man # to copy them over into "/usr/local/man" (see below). pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # Now to go and see what our log files look like! pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home/local/www/logs pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al total 16 drwxr-xr-x 2 root www 4096 Mar 25 14:32 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. -rw-r--r-- 1 nobody nogroup 1973 Mar 25 14:38 thttpd_log -rw-r--r-- 1 nobody nogroup 1803 Mar 25 14:32 thttpd_log.01 pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.01 ::1 - - [25/Mar/2022:19:37:13 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:41:03 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:41:39 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:20:00 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" Fri 25 Mar 2022 02:32:06 PM MDT 14:32:06 up 3:59, 2 users, load average: 1.64, 1.88, 2.56 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 19:12m 0.82s 0.66s -bash pi tty7 :0 Thu19 19:12m 18:54 3.00s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log Fri 25 Mar 2022 02:32:06 PM MDT 14:32:06 up 3:59, 2 users, load average: 1.64, 1.88, 2.56 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 19:12m 0.82s 0.66s -bash pi tty7 :0 Thu19 19:12m 18:54 3.00s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.12 - - [25/Mar/2022:20:37:25 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.3.0) Gecko/68.3.0 Firefox/68.3.0" 192.168.19.12 - - [25/Mar/2022:20:37:30 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.12 - - [25/Mar/2022:20:37:40 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:50 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:57 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:06 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:11 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:14 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:17 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Not most of the time stamps are only a few seconds appart, and that was trying to select them on my phone. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Since I was having problems with my setup I decided I needed more information in my logs to be able to see when I had to restart my computer when my power went down, I am on batteries and an inverter, and other problems so I built the "os-debug" directory under /home/local/sbin/. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cd /home/local/sbin/os-debug/ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ # The files in os-debug have additional thttpd pid numbers to help with OS problems. pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ ls -al total 48 drwxr-xr-x 2 root root 4096 Mar 25 12:45 . drwxr-xr-x 4 root root 4096 Mar 25 13:04 .. -rwxr-xr-- 1 root root 185 Mar 25 12:45 datelog -r-xr-xr-- 1 root root 185 Mar 25 12:45 datelog~ -rwxr-xr-- 1 root root 385 Mar 25 12:45 dead-thttpd -r-xr-xr-- 1 root root 385 Mar 25 12:45 dead-thttpd~ -r--r--r-- 1 root root 805 Mar 25 12:45 readme.txt -r--r--r-- 1 root root 805 Mar 25 12:45 readme.txt~ -rwxr-xr-- 1 root root 1965 Mar 25 12:45 thttpd-rotate -r-xr-xr-- 1 root root 1965 Mar 25 12:45 thttpd-rotate~ -rwxr-xr-- 1 root root 153 Mar 25 12:45 thttpd_wrapper -r-xr-xr-- 1 root root 153 Mar 25 12:45 thttpd_wrapper~ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat readme.txt readme.txt The files in os-debug have additional thttpd pid numbers to help with OS problems. frank@frank-desktop:~$ frank@frank-desktop:~$ cd /home/local/sbin/os-debug/ frank@frank-desktop:/home/local/sbin/os-debug$ frank@frank-desktop:/home/local/sbin/os-debug$ sudo cp -iav d* thttp*r ../ 'datelog' -> '../datelog' 'dead-thttpd' -> '../dead-thttpd' 'thttpd_wrapper' -> '../thttpd_wrapper' frank@frank-desktop:/home/local/sbin/os-debug$ Now we have to replace thttpd-rotate in /etc/cron.daily. frank@frank-desktop:/home/local/sbin/os-debug$ frank@frank-desktop:/home/local/sbin/os-debug$ sudo cp -iav thttpd-rotate /etc/cron.daily # this will ask to overwrite the file, we are adding lines for thttpd pid information, answer: y. frank@frank-desktop:/home/local/sbin/os-debug$ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ sudo cp -iav d* thttp*r ../ 'datelog' -> '../datelog' 'datelog~' -> '../datelog~' 'dead-thttpd' -> '../dead-thttpd' 'dead-thttpd~' -> '../dead-thttpd~' cp: overwrite '../thttpd_wrapper'? y 'thttpd_wrapper' -> '../thttpd_wrapper' pi@raspberrypi:/home/local/sbin/os-debug $ # We need to overwrite thttpd_wrapper since there is a change in it. pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat thttpd_wrapper #!/bin/sh # thttpd_wrapper while true ; do /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config /home/local/sbin/dead-thttpd sleep 10 done # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat thttpd-rotate #!/bin/sh # /etc/cron.daily/thttpd-rotate cd /home/local/www/logs rm -f thttpd_log.50 mv thttpd_log.49 thttpd_log.50 mv thttpd_log.48 thttpd_log.49 mv thttpd_log.47 thttpd_log.48 mv thttpd_log.46 thttpd_log.47 mv thttpd_log.45 thttpd_log.46 mv thttpd_log.44 thttpd_log.45 mv thttpd_log.43 thttpd_log.44 mv thttpd_log.42 thttpd_log.43 mv thttpd_log.41 thttpd_log.42 mv thttpd_log.40 thttpd_log.41 mv thttpd_log.39 thttpd_log.40 mv thttpd_log.38 thttpd_log.39 mv thttpd_log.37 thttpd_log.38 mv thttpd_log.36 thttpd_log.37 mv thttpd_log.35 thttpd_log.36 mv thttpd_log.34 thttpd_log.35 mv thttpd_log.33 thttpd_log.34 mv thttpd_log.32 thttpd_log.33 mv thttpd_log.31 thttpd_log.32 mv thttpd_log.30 thttpd_log.31 mv thttpd_log.29 thttpd_log.30 mv thttpd_log.28 thttpd_log.29 mv thttpd_log.27 thttpd_log.28 mv thttpd_log.26 thttpd_log.27 mv thttpd_log.25 thttpd_log.26 mv thttpd_log.24 thttpd_log.25 mv thttpd_log.23 thttpd_log.24 mv thttpd_log.22 thttpd_log.23 mv thttpd_log.21 thttpd_log.22 mv thttpd_log.20 thttpd_log.21 mv thttpd_log.19 thttpd_log.20 mv thttpd_log.18 thttpd_log.19 mv thttpd_log.17 thttpd_log.18 mv thttpd_log.16 thttpd_log.17 mv thttpd_log.15 thttpd_log.16 mv thttpd_log.14 thttpd_log.15 mv thttpd_log.13 thttpd_log.14 mv thttpd_log.12 thttpd_log.13 mv thttpd_log.11 thttpd_log.12 mv thttpd_log.10 thttpd_log.11 mv thttpd_log.09 thttpd_log.10 mv thttpd_log.08 thttpd_log.09 mv thttpd_log.07 thttpd_log.08 mv thttpd_log.06 thttpd_log.07 mv thttpd_log.05 thttpd_log.06 mv thttpd_log.04 thttpd_log.05 mv thttpd_log.03 thttpd_log.04 mv thttpd_log.02 thttpd_log.03 mv thttpd_log.01 thttpd_log.02 date >> thttpd_log echo "log rotate end, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log mv thttpd_log thttpd_log.01 date > thttpd_log echo "old log rotate end, old thttpd pid = " `ps -C thttpd` >> thttpd_log kill -usr1 `cat /var/run/thttpd.pid` sleep 15 echo "log rotate new, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ # Now we have to replace thttpd-rotate in /etc/cron.daily. pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ sudo cp -iav thttpd-rotate /etc/cron.daily # this will ask to overwrite the file, we are adding lines for thttpd pid information, answer: y. cp: overwrite '/etc/cron.daily/thttpd-rotate'? y 'thttpd-rotate' -> '/etc/cron.daily/thttpd-rotate' pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat dead-thttpd #!/bin/sh # dead-thttpd echo "old dead-thttpd pid = " `cat /var/run/thttpd.pid` >> /home/local/www/logs/thttpd_log date >> /home/local/www/logs/thttpd_log w >> /home/local/www/logs/thttpd_log # sleep 15 # echo "dead-thttpd, new thttpd pid = " `ps -C thttpd` >> /home/local/www/logs/thttpd_log # date >> /home/local/www/logs/thttpd_log # w >> /home/local/www/logs/thttpd_log # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cat datelog #!/bin/sh # datelog echo "datelog, thttpd pid = " `ps -C thttpd` >> /home/local/www/logs/thttpd_log date >> /home/local/www/logs/thttpd_log w >> /home/local/www/logs/thttpd_log # pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ # sudo datelog is entered at the command prompt and there has been a problem with the system finding it, which I will test. When the commands are run from the system they all work but there seems to be a bug with them coming from the command line. pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ pi@raspberrypi:/home/local/sbin/os-debug $ cd /etc/cron.daily pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al total 40 drwxr-xr-x 2 root root 4096 Mar 25 13:08 . drwxr-xr-x 128 root root 12288 Mar 25 13:01 .. -rwxr-xr-x 1 root root 1478 Jun 10 2021 apt-compat -rwxr-xr-x 1 root root 1298 Apr 29 2021 dpkg -rwxr-xr-x 1 root root 377 Feb 28 2021 logrotate -rwxr-xr-x 1 root root 1123 Feb 19 2021 man-db -rw-r--r-- 1 root root 102 Feb 22 2021 .placeholder -rwxr-xr-- 1 root root 1746 Mar 25 12:43 thttpd-rotate pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ cat thttpd-rotate #!/bin/sh # /etc/cron.daily/thttpd-rotate cd /home/local/www/logs rm -f thttpd_log.50 mv thttpd_log.49 thttpd_log.50 mv thttpd_log.48 thttpd_log.49 mv thttpd_log.47 thttpd_log.48 mv thttpd_log.46 thttpd_log.47 mv thttpd_log.45 thttpd_log.46 mv thttpd_log.44 thttpd_log.45 mv thttpd_log.43 thttpd_log.44 mv thttpd_log.42 thttpd_log.43 mv thttpd_log.41 thttpd_log.42 mv thttpd_log.40 thttpd_log.41 mv thttpd_log.39 thttpd_log.40 mv thttpd_log.38 thttpd_log.39 mv thttpd_log.37 thttpd_log.38 mv thttpd_log.36 thttpd_log.37 mv thttpd_log.35 thttpd_log.36 mv thttpd_log.34 thttpd_log.35 mv thttpd_log.33 thttpd_log.34 mv thttpd_log.32 thttpd_log.33 mv thttpd_log.31 thttpd_log.32 mv thttpd_log.30 thttpd_log.31 mv thttpd_log.29 thttpd_log.30 mv thttpd_log.28 thttpd_log.29 mv thttpd_log.27 thttpd_log.28 mv thttpd_log.26 thttpd_log.27 mv thttpd_log.25 thttpd_log.26 mv thttpd_log.24 thttpd_log.25 mv thttpd_log.23 thttpd_log.24 mv thttpd_log.22 thttpd_log.23 mv thttpd_log.21 thttpd_log.22 mv thttpd_log.20 thttpd_log.21 mv thttpd_log.19 thttpd_log.20 mv thttpd_log.18 thttpd_log.19 mv thttpd_log.17 thttpd_log.18 mv thttpd_log.16 thttpd_log.17 mv thttpd_log.15 thttpd_log.16 mv thttpd_log.14 thttpd_log.15 mv thttpd_log.13 thttpd_log.14 mv thttpd_log.12 thttpd_log.13 mv thttpd_log.11 thttpd_log.12 mv thttpd_log.10 thttpd_log.11 mv thttpd_log.09 thttpd_log.10 mv thttpd_log.08 thttpd_log.09 mv thttpd_log.07 thttpd_log.08 mv thttpd_log.06 thttpd_log.07 mv thttpd_log.05 thttpd_log.06 mv thttpd_log.04 thttpd_log.05 mv thttpd_log.03 thttpd_log.04 mv thttpd_log.02 thttpd_log.03 mv thttpd_log.01 thttpd_log.02 date >> thttpd_log echo "log rotate end, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log mv thttpd_log thttpd_log.01 date > thttpd_log echo "old log rotate end, old thttpd pid = " `ps -C thttpd` >> thttpd_log kill -usr1 `cat /var/run/thttpd.pid` sleep 15 echo "log rotate new, thttpd pid = " `ps -C thttpd` >> thttpd_log w >> thttpd_log # pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # That looks better! there is a sleep 15 near the end and that is to wait for the new pid to be set up. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Notice that this program takes 15 seconds so that the new PID number will have time to come up. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Also, the lines are not written to the log file until they finish. The "kill -usr1 `cat /var/run/thttpd.pid`" stops thttpd from taking any more requests but lets the ones that are running finish before it starts again with a new log file. That is why at times one will see extra lines after the log rotate normal ending. pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo ./thttpd-rotate mv: cannot stat 'thttpd_log.49': No such file or directory mv: cannot stat 'thttpd_log.48': No such file or directory mv: cannot stat 'thttpd_log.47': No such file or directory mv: cannot stat 'thttpd_log.46': No such file or directory mv: cannot stat 'thttpd_log.45': No such file or directory mv: cannot stat 'thttpd_log.44': No such file or directory mv: cannot stat 'thttpd_log.43': No such file or directory mv: cannot stat 'thttpd_log.42': No such file or directory mv: cannot stat 'thttpd_log.41': No such file or directory mv: cannot stat 'thttpd_log.40': No such file or directory mv: cannot stat 'thttpd_log.39': No such file or directory mv: cannot stat 'thttpd_log.38': No such file or directory mv: cannot stat 'thttpd_log.37': No such file or directory mv: cannot stat 'thttpd_log.36': No such file or directory mv: cannot stat 'thttpd_log.35': No such file or directory mv: cannot stat 'thttpd_log.34': No such file or directory mv: cannot stat 'thttpd_log.33': No such file or directory mv: cannot stat 'thttpd_log.32': No such file or directory mv: cannot stat 'thttpd_log.31': No such file or directory mv: cannot stat 'thttpd_log.30': No such file or directory mv: cannot stat 'thttpd_log.29': No such file or directory mv: cannot stat 'thttpd_log.28': No such file or directory mv: cannot stat 'thttpd_log.27': No such file or directory mv: cannot stat 'thttpd_log.26': No such file or directory mv: cannot stat 'thttpd_log.25': No such file or directory mv: cannot stat 'thttpd_log.24': No such file or directory mv: cannot stat 'thttpd_log.23': No such file or directory mv: cannot stat 'thttpd_log.22': No such file or directory mv: cannot stat 'thttpd_log.21': No such file or directory mv: cannot stat 'thttpd_log.20': No such file or directory mv: cannot stat 'thttpd_log.19': No such file or directory mv: cannot stat 'thttpd_log.18': No such file or directory mv: cannot stat 'thttpd_log.17': No such file or directory mv: cannot stat 'thttpd_log.16': No such file or directory mv: cannot stat 'thttpd_log.15': No such file or directory mv: cannot stat 'thttpd_log.14': No such file or directory mv: cannot stat 'thttpd_log.13': No such file or directory mv: cannot stat 'thttpd_log.12': No such file or directory mv: cannot stat 'thttpd_log.11': No such file or directory mv: cannot stat 'thttpd_log.10': No such file or directory mv: cannot stat 'thttpd_log.09': No such file or directory mv: cannot stat 'thttpd_log.08': No such file or directory mv: cannot stat 'thttpd_log.07': No such file or directory mv: cannot stat 'thttpd_log.06': No such file or directory mv: cannot stat 'thttpd_log.05': No such file or directory mv: cannot stat 'thttpd_log.04': No such file or directory mv: cannot stat 'thttpd_log.03': No such file or directory mv: cannot stat 'thttpd_log.02': No such file or directory ./thttpd-rotate: 66: kill: No such process pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Forgot thttpd is not running now so no PID's!!! pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo datelog sudo: datelog: command not found pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # This is the problem when the command is entered from the command line and it is not in "/usr/local/sbin/" even though all of the other commands ran from "/home/local/sbin/"! So much for spelling the first time! pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo ls -al /home/local/sbin total 164 drwxr-xr-x 4 root root 4096 Mar 25 15:10 . drwxr-xr-x 5 root root 4096 Mar 25 12:04 .. -rwxr-xr-- 1 root root 185 Mar 25 12:45 datelog -r-xr-xr-- 1 root root 185 Mar 25 12:45 datelog~ -rwxr-xr-- 1 root root 385 Mar 25 12:45 dead-thttpd -r-xr-xr-- 1 root root 385 Mar 25 12:45 dead-thttpd~ -rwxr-xr-x 1 root root 13692 Mar 25 12:04 htpasswd -rwxr-sr-x 1 root www 12996 Mar 25 12:04 makeweb drwxr-xr-x 2 root root 4096 Mar 25 12:45 os-debug -r-xr-xr-x 1 root root 2878 Mar 25 12:04 syslogtocern -r-xr-xr-x 1 bin bin 91232 Mar 25 12:04 thttpd drwxr-xr-x 2 root root 4096 Mar 25 12:43 thttpd-extras -rwxr-xr-- 1 root root 153 Mar 25 12:45 thttpd_wrapper pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo cp -iav /home/local/sbin/* /usr/local/sbin '/home/local/sbin/datelog' -> '/usr/local/sbin/datelog' '/home/local/sbin/datelog~' -> '/usr/local/sbin/datelog~' '/home/local/sbin/dead-thttpd' -> '/usr/local/sbin/dead-thttpd' '/home/local/sbin/dead-thttpd~' -> '/usr/local/sbin/dead-thttpd~' '/home/local/sbin/htpasswd' -> '/usr/local/sbin/htpasswd' '/home/local/sbin/makeweb' -> '/usr/local/sbin/makeweb' '/home/local/sbin/os-debug' -> '/usr/local/sbin/os-debug' '/home/local/sbin/os-debug/dead-thttpd' -> '/usr/local/sbin/os-debug/dead-thttpd' '/home/local/sbin/os-debug/readme.txt' -> '/usr/local/sbin/os-debug/readme.txt' '/home/local/sbin/os-debug/thttpd-rotate~' -> '/usr/local/sbin/os-debug/thttpd-rotate~' '/home/local/sbin/os-debug/thttpd-rotate' -> '/usr/local/sbin/os-debug/thttpd-rotate' '/home/local/sbin/os-debug/datelog~' -> '/usr/local/sbin/os-debug/datelog~' '/home/local/sbin/os-debug/dead-thttpd~' -> '/usr/local/sbin/os-debug/dead-thttpd~' '/home/local/sbin/os-debug/thttpd_wrapper' -> '/usr/local/sbin/os-debug/thttpd_wrapper' '/home/local/sbin/os-debug/readme.txt~' -> '/usr/local/sbin/os-debug/readme.txt~' '/home/local/sbin/os-debug/datelog' -> '/usr/local/sbin/os-debug/datelog' '/home/local/sbin/os-debug/thttpd_wrapper~' -> '/usr/local/sbin/os-debug/thttpd_wrapper~' '/home/local/sbin/syslogtocern' -> '/usr/local/sbin/syslogtocern' '/home/local/sbin/thttpd' -> '/usr/local/sbin/thttpd' '/home/local/sbin/thttpd-extras' -> '/usr/local/sbin/thttpd-extras' '/home/local/sbin/thttpd-extras/thttpd.sh' -> '/usr/local/sbin/thttpd-extras/thttpd.sh' '/home/local/sbin/thttpd-extras/thttpd_config' -> '/usr/local/sbin/thttpd-extras/thttpd_config' '/home/local/sbin/thttpd-extras/anvil_thttpd.gif' -> '/usr/local/sbin/thttpd-extras/anvil_thttpd.gif' '/home/local/sbin/thttpd-extras/readme.txt' -> '/usr/local/sbin/thttpd-extras/readme.txt' '/home/local/sbin/thttpd-extras/thttpd-rotate~' -> '/usr/local/sbin/thttpd-extras/thttpd-rotate~' '/home/local/sbin/thttpd-extras/thttpd.sh~' -> '/usr/local/sbin/thttpd-extras/thttpd.sh~' '/home/local/sbin/thttpd-extras/thttpd_config~' -> '/usr/local/sbin/thttpd-extras/thttpd_config~' '/home/local/sbin/thttpd-extras/sitemap.xml' -> '/usr/local/sbin/thttpd-extras/sitemap.xml' '/home/local/sbin/thttpd-extras/thttpd-rotate' -> '/usr/local/sbin/thttpd-extras/thttpd-rotate' '/home/local/sbin/thttpd-extras/sitemap.xml.txt' -> '/usr/local/sbin/thttpd-extras/sitemap.xml.txt' '/home/local/sbin/thttpd-extras/favicon.ico' -> '/usr/local/sbin/thttpd-extras/favicon.ico' '/home/local/sbin/thttpd-extras/rc.local~' -> '/usr/local/sbin/thttpd-extras/rc.local~' '/home/local/sbin/thttpd-extras/thttpd_wrapper' -> '/usr/local/sbin/thttpd-extras/thttpd_wrapper' '/home/local/sbin/thttpd-extras/robots-site.txt' -> '/usr/local/sbin/thttpd-extras/robots-site.txt' '/home/local/sbin/thttpd-extras/robots.txt' -> '/usr/local/sbin/thttpd-extras/robots.txt' '/home/local/sbin/thttpd-extras/rc.local' -> '/usr/local/sbin/thttpd-extras/rc.local' '/home/local/sbin/thttpd-extras/thttpd_wrapper~' -> '/usr/local/sbin/thttpd-extras/thttpd_wrapper~' '/home/local/sbin/thttpd_wrapper' -> '/usr/local/sbin/thttpd_wrapper' pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ ls -al /usr/local/sbin total 164 drwxr-xr-x 4 root root 4096 Mar 25 15:49 . drwxr-xr-x 10 root root 4096 Jan 27 18:02 .. -rwxr-xr-- 1 root root 185 Mar 25 12:45 datelog -r-xr-xr-- 1 root root 185 Mar 25 12:45 datelog~ -rwxr-xr-- 1 root root 385 Mar 25 12:45 dead-thttpd -r-xr-xr-- 1 root root 385 Mar 25 12:45 dead-thttpd~ -rwxr-xr-x 1 root root 13692 Mar 25 12:04 htpasswd -rwxr-sr-x 1 root www 12996 Mar 25 12:04 makeweb drwxr-xr-x 2 root root 4096 Mar 25 12:45 os-debug -r-xr-xr-x 1 root root 2878 Mar 25 12:04 syslogtocern -r-xr-xr-x 1 bin bin 91232 Mar 25 12:04 thttpd drwxr-xr-x 2 root root 4096 Mar 25 12:43 thttpd-extras -rwxr-xr-- 1 root root 153 Mar 25 12:45 thttpd_wrapper pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ sudo datelog pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ # Magic!! Now sudo datelog works!!! The only thing different is the command is coming from the command line and not from a program which all of the other commands come from and work without being under /usr/local/sbin/!!! pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ pi@raspberrypi:/etc/cron.daily $ cd /home/local/www/logs pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al total 20 drwxr-xr-x 2 root www 4096 Mar 25 15:40 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. -rw-r--r-- 1 root root 848 Mar 25 15:50 thttpd_log -rw-r--r-- 1 nobody nogroup 2373 Mar 25 15:40 thttpd_log.01 -rw-r--r-- 1 nobody nogroup 1803 Mar 25 14:32 thttpd_log.02 pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.02 ::1 - - [25/Mar/2022:19:37:13 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:41:03 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:41:39 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:20:00 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" Fri 25 Mar 2022 02:32:06 PM MDT 14:32:06 up 3:59, 2 users, load average: 1.64, 1.88, 2.56 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 19:12m 0.82s 0.66s -bash pi tty7 :0 Thu19 19:12m 18:54 3.00s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.01 Fri 25 Mar 2022 02:32:06 PM MDT 14:32:06 up 3:59, 2 users, load average: 1.64, 1.88, 2.56 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 19:12m 0.82s 0.66s -bash pi tty7 :0 Thu19 19:12m 18:54 3.00s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.12 - - [25/Mar/2022:20:37:25 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.3.0) Gecko/68.3.0 Firefox/68.3.0" 192.168.19.12 - - [25/Mar/2022:20:37:30 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.12 - - [25/Mar/2022:20:37:40 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:50 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:57 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:06 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:11 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:14 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:17 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" Fri 25 Mar 2022 03:40:52 PM MDT log rotate end, thttpd pid = PID TTY TIME CMD 15:40:52 up 5:07, 2 users, load average: 1.84, 1.47, 1.34 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:21m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:20m 24:05 3.25s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log Fri 25 Mar 2022 03:40:52 PM MDT old log rotate end, old thttpd pid = PID TTY TIME CMD log rotate new, thttpd pid = PID TTY TIME CMD 15:41:08 up 5:08, 2 users, load average: 1.85, 1.50, 1.35 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:21m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:21m 24:05 3.25s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi datelog, thttpd pid = PID TTY TIME CMD Fri 25 Mar 2022 03:50:58 PM MDT 15:50:59 up 5:17, 2 users, load average: 1.29, 1.23, 1.23 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:31m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:30m 24:41 3.28s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Because thttpd is not running there are no PID numbers! pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # ***************************** pi@raspberrypi:/home/local/www/logs $ # ***************************** pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ date Fri 25 Mar 2022 03:55:47 PM MDT pi@raspberrypi:/home/local/www/logs $ w 15:55:50 up 5:22, 2 users, load average: 1.67, 1.28, 1.24 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:36m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:35m 25:05 3.29s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Adding more Web Users, (Headings). pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Other ideas for web "users" could be: documents, downloads, games, memes, music, notices, pictures, videos, etc., just categories of what you want on your website, or what you want to share. This time we will use a different process to add only www users. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ addgroup --help adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a normal user adduser --system [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID] [--gecos GECOS] [--group | --ingroup GROUP | --gid ID] [--disabled-password] [--disabled-login] [--add_extra_groups] USER Add a system user adduser --group [--gid ID] GROUP addgroup [--gid ID] GROUP Add a user group addgroup --system [--gid ID] GROUP Add a system group adduser USER GROUP Add an existing user to an existing group general options: --quiet | -q don't give process information to stdout --force-badname allow usernames which do not match the NAME_REGEX configuration variable --help | -h usage message --version | -v version number and copyright --conf | -c FILE use FILE as configuration file pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Again the process: pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # sudo adduser --ingroup www videos # (new web user "videos") pi@raspberrypi:/home/local/www/logs $ # (use a password that is different from the one for "(pi)") pi@raspberrypi:/home/local/www/logs $ # su videos # (shell to user "videos") pi@raspberrypi:/home/local/www/logs $ # cd pi@raspberrypi:/home/local/www/logs $ # touch .user-number # that is a period and the number all in one. pi@raspberrypi:/home/local/www/logs $ # makeweb pi@raspberrypi:/home/local/www/logs $ # ls -al pi@raspberrypi:/home/local/www/logs $ # exit # (exit the shell back to where you were) pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # ********* pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # This is where if you have a list of typed "users" you can just copy the "name" and then be able to paste it several times without having to re-type it, or making typing mistakes. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ # Since I am rebuilding my site I will add delinquent-accounts/ just to keep my numbers the same. pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ w 16:07:57 up 5:34, 2 users, load average: 1.15, 1.43, 1.32 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:48m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:47m 26:17 3.39s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cd pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www delinquent-accounts Adding user `delinquent-accounts' ... Adding new user `delinquent-accounts' (1002) with group `www' ... Creating home directory `/home/delinquent-accounts' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for delinquent-accounts Enter the new value, or press ENTER for the default Full Name []: delinquent-accounts Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su delinquent-accounts Password: delinquent-accounts@raspberrypi:/home/pi $ delinquent-accounts@raspberrypi:/home/pi $ delinquent-accounts@raspberrypi:/home/pi $ cd delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ touch .1002 delinquent-accounts@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/delinquent-accounts Created symbolic link /home/delinquent-accounts/public_html delinquent-accounts@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 delinquent-accounts www 4096 Mar 25 16:12 . drwxr-xr-x 6 root root 4096 Mar 25 16:08 .. -rw-r--r-- 1 delinquent-accounts www 0 Mar 25 16:11 .1002 -rw-r--r-- 1 delinquent-accounts www 220 Mar 25 16:08 .bash_logout -rw-r--r-- 1 delinquent-accounts www 3523 Mar 25 16:08 .bashrc -rw-r--r-- 1 delinquent-accounts www 1670 Mar 25 16:08 .mkshrc -rw-r--r-- 1 delinquent-accounts www 807 Mar 25 16:08 .profile lrwxrwxrwx 1 delinquent-accounts www 41 Mar 25 16:12 public_html -> /home/local/www/users/delinquent-accounts delinquent-accounts@raspberrypi:~ $ delinquent-accounts@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # This is where if you have a list of typed "users" you can just copy the "name" and then be able to paste it several times without having to re-type it, or making typing mistakes. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # ******************** Lets try adding "documents". pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www documents Adding user `documents' ... Adding new user `documents' (1003) with group `www' ... Creating home directory `/home/documents' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for documents Enter the new value, or press ENTER for the default Full Name []: documents Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su documents Password: documents@raspberrypi:/home/pi $ documents@raspberrypi:/home/pi $ cd documents@raspberrypi:~ $ documents@raspberrypi:~ $ touch .1003 documents@raspberrypi:~ $ documents@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/documents Created symbolic link /home/documents/public_html documents@raspberrypi:~ $ documents@raspberrypi:~ $ documents@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 documents www 4096 Mar 25 16:17 . drwxr-xr-x 7 root root 4096 Mar 25 16:14 .. -rw-r--r-- 1 documents www 0 Mar 25 16:17 .1003 -rw-r--r-- 1 documents www 220 Mar 25 16:14 .bash_logout -rw-r--r-- 1 documents www 3523 Mar 25 16:14 .bashrc -rw-r--r-- 1 documents www 1670 Mar 25 16:14 .mkshrc -rw-r--r-- 1 documents www 807 Mar 25 16:14 .profile lrwxrwxrwx 1 documents www 31 Mar 25 16:17 public_html -> /home/local/www/users/documents documents@raspberrypi:~ $ documents@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www downloads Adding user `downloads' ... Adding new user `downloads' (1004) with group `www' ... Creating home directory `/home/downloads' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for downloads Enter the new value, or press ENTER for the default Full Name []: downloads Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su downloads Password: downloads@raspberrypi:/home/pi $ downloads@raspberrypi:/home/pi $ downloads@raspberrypi:/home/pi $ cd downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ touch .1004 downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/downloads Created symbolic link /home/downloads/public_html downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 downloads www 4096 Mar 25 16:20 . drwxr-xr-x 8 root root 4096 Mar 25 16:18 .. -rw-r--r-- 1 downloads www 0 Mar 25 16:19 .1004 -rw-r--r-- 1 downloads www 220 Mar 25 16:18 .bash_logout -rw-r--r-- 1 downloads www 3523 Mar 25 16:18 .bashrc -rw-r--r-- 1 downloads www 1670 Mar 25 16:18 .mkshrc -rw-r--r-- 1 downloads www 807 Mar 25 16:18 .profile lrwxrwxrwx 1 downloads www 31 Mar 25 16:20 public_html -> /home/local/www/users/downloads downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ downloads@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www freedom Adding user `freedom' ... Adding new user `freedom' (1005) with group `www' ... Creating home directory `/home/freedom' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for freedom Enter the new value, or press ENTER for the default Full Name []: freedom Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su freedom Password: freedom@raspberrypi:/home/pi $ freedom@raspberrypi:/home/pi $ freedom@raspberrypi:/home/pi $ touch .1005 touch: cannot touch '.1005': Permission denied freedom@raspberrypi:/home/pi $ freedom@raspberrypi:/home/pi $ cd freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ touch .1005 freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/freedom Created symbolic link /home/freedom/public_html freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 freedom www 4096 Mar 25 16:22 . drwxr-xr-x 9 root root 4096 Mar 25 16:21 .. -rw-r--r-- 1 freedom www 0 Mar 25 16:22 .1005 -rw-r--r-- 1 freedom www 220 Mar 25 16:21 .bash_logout -rw-r--r-- 1 freedom www 3523 Mar 25 16:21 .bashrc -rw-r--r-- 1 freedom www 1670 Mar 25 16:21 .mkshrc -rw-r--r-- 1 freedom www 807 Mar 25 16:21 .profile lrwxrwxrwx 1 freedom www 29 Mar 25 16:22 public_html -> /home/local/www/users/freedom freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ freedom@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www memes Adding user `memes' ... Adding new user `memes' (1006) with group `www' ... Creating home directory `/home/memes' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for memes Enter the new value, or press ENTER for the default Full Name []: memes Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su memes Password: memes@raspberrypi:/home/pi $ memes@raspberrypi:/home/pi $ cd memes@raspberrypi:~ $ memes@raspberrypi:~ $ touch 1006 memes@raspberrypi:~ $ touch .1006 memes@raspberrypi:~ $ rm -v 1006 removed '1006' memes@raspberrypi:~ $ memes@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/memes Created symbolic link /home/memes/public_html memes@raspberrypi:~ $ memes@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 memes www 4096 Mar 25 16:26 . drwxr-xr-x 10 root root 4096 Mar 25 16:23 .. -rw-r--r-- 1 memes www 0 Mar 25 16:26 .1006 -rw-r--r-- 1 memes www 220 Mar 25 16:23 .bash_logout -rw-r--r-- 1 memes www 3523 Mar 25 16:23 .bashrc -rw-r--r-- 1 memes www 1670 Mar 25 16:23 .mkshrc -rw-r--r-- 1 memes www 807 Mar 25 16:23 .profile lrwxrwxrwx 1 memes www 27 Mar 25 16:26 public_html -> /home/local/www/users/memes memes@raspberrypi:~ $ memes@raspberrypi:~ $ memes@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www music Adding user `music' ... Adding new user `music' (1007) with group `www' ... Creating home directory `/home/music' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for music Enter the new value, or press ENTER for the default Full Name []: music Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su music Password: music@raspberrypi:/home/pi $ music@raspberrypi:/home/pi $ music@raspberrypi:/home/pi $ cd music@raspberrypi:~ $ music@raspberrypi:~ $ touch .1007 music@raspberrypi:~ $ music@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/music Created symbolic link /home/music/public_html music@raspberrypi:~ $ music@raspberrypi:~ $ music@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 music www 4096 Mar 25 16:29 . drwxr-xr-x 11 root root 4096 Mar 25 16:27 .. -rw-r--r-- 1 music www 0 Mar 25 16:29 .1007 -rw-r--r-- 1 music www 220 Mar 25 16:27 .bash_logout -rw-r--r-- 1 music www 3523 Mar 25 16:27 .bashrc -rw-r--r-- 1 music www 1670 Mar 25 16:27 .mkshrc -rw-r--r-- 1 music www 807 Mar 25 16:27 .profile lrwxrwxrwx 1 music www 27 Mar 25 16:29 public_html -> /home/local/www/users/music music@raspberrypi:~ $ music@raspberrypi:~ $ music@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www notices Adding user `notices' ... Adding new user `notices' (1008) with group `www' ... Creating home directory `/home/notices' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for notices Enter the new value, or press ENTER for the default Full Name []: notices Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su notices Password: notices@raspberrypi:/home/pi $ notices@raspberrypi:/home/pi $ notices@raspberrypi:/home/pi $ cd notices@raspberrypi:~ $ notices@raspberrypi:~ $ notices@raspberrypi:~ $ touch .1008 notices@raspberrypi:~ $ notices@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/notices Created symbolic link /home/notices/public_html notices@raspberrypi:~ $ notices@raspberrypi:~ $ notices@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 notices www 4096 Mar 25 16:31 . drwxr-xr-x 12 root root 4096 Mar 25 16:30 .. -rw-r--r-- 1 notices www 0 Mar 25 16:31 .1008 -rw-r--r-- 1 notices www 220 Mar 25 16:30 .bash_logout -rw-r--r-- 1 notices www 3523 Mar 25 16:30 .bashrc -rw-r--r-- 1 notices www 1670 Mar 25 16:30 .mkshrc -rw-r--r-- 1 notices www 807 Mar 25 16:30 .profile lrwxrwxrwx 1 notices www 29 Mar 25 16:31 public_html -> /home/local/www/users/notices notices@raspberrypi:~ $ notices@raspberrypi:~ $ notices@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www pictures Adding user `pictures' ... Adding new user `pictures' (1009) with group `www' ... Creating home directory `/home/pictures' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for pictures Enter the new value, or press ENTER for the default Full Name []: pictures Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su pictures Password: pictures@raspberrypi:/home/pi $ pictures@raspberrypi:/home/pi $ pictures@raspberrypi:/home/pi $ cd pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ touch .1009 pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/pictures Created symbolic link /home/pictures/public_html pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 pictures www 4096 Mar 25 16:34 . drwxr-xr-x 13 root root 4096 Mar 25 16:32 .. -rw-r--r-- 1 pictures www 0 Mar 25 16:34 .1009 -rw-r--r-- 1 pictures www 220 Mar 25 16:32 .bash_logout -rw-r--r-- 1 pictures www 3523 Mar 25 16:32 .bashrc -rw-r--r-- 1 pictures www 1670 Mar 25 16:32 .mkshrc -rw-r--r-- 1 pictures www 807 Mar 25 16:32 .profile lrwxrwxrwx 1 pictures www 30 Mar 25 16:34 public_html -> /home/local/www/users/pictures pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ pictures@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www rome Adding user `rome' ... Adding new user `rome' (1010) with group `www' ... Creating home directory `/home/rome' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for rome Enter the new value, or press ENTER for the default Full Name []: rome Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su rome Password: rome@raspberrypi:/home/pi $ rome@raspberrypi:/home/pi $ rome@raspberrypi:/home/pi $ cd rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ touch .1010 rome@raspberrypi:~ $ rome@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/rome Created symbolic link /home/rome/public_html rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 rome www 4096 Mar 25 16:36 . drwxr-xr-x 14 root root 4096 Mar 25 16:35 .. -rw-r--r-- 1 rome www 0 Mar 25 16:36 .1010 -rw-r--r-- 1 rome www 220 Mar 25 16:35 .bash_logout -rw-r--r-- 1 rome www 3523 Mar 25 16:35 .bashrc -rw-r--r-- 1 rome www 1670 Mar 25 16:35 .mkshrc -rw-r--r-- 1 rome www 807 Mar 25 16:35 .profile lrwxrwxrwx 1 rome www 26 Mar 25 16:36 public_html -> /home/local/www/users/rome rome@raspberrypi:~ $ rome@raspberrypi:~ $ rome@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www searles-sav-on-propane Adding user `searles-sav-on-propane' ... Adding new user `searles-sav-on-propane' (1011) with group `www' ... Creating home directory `/home/searles-sav-on-propane' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for searles-sav-on-propane Enter the new value, or press ENTER for the default Full Name []: searles-sav-on-propane Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su searles-sav-on-propane Password: searles-sav-on-propane@raspberrypi:/home/pi $ searles-sav-on-propane@raspberrypi:/home/pi $ searles-sav-on-propane@raspberrypi:/home/pi $ cd searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ touch .1011 searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/searles-sav-on-propane Created symbolic link /home/searles-sav-on-propane/public_html searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 25 16:38 . drwxr-xr-x 15 root root 4096 Mar 25 16:37 .. -rw-r--r-- 1 searles-sav-on-propane www 0 Mar 25 16:38 .1011 -rw-r--r-- 1 searles-sav-on-propane www 220 Mar 25 16:37 .bash_logout -rw-r--r-- 1 searles-sav-on-propane www 3523 Mar 25 16:37 .bashrc -rw-r--r-- 1 searles-sav-on-propane www 1670 Mar 25 16:37 .mkshrc -rw-r--r-- 1 searles-sav-on-propane www 807 Mar 25 16:37 .profile lrwxrwxrwx 1 searles-sav-on-propane www 44 Mar 25 16:38 public_html -> /home/local/www/users/searles-sav-on-propane searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ searles-sav-on-propane@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www va Adding user `va' ... Adding new user `va' (1012) with group `www' ... Creating home directory `/home/va' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for va Enter the new value, or press ENTER for the default Full Name []: va Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su va Password: va@raspberrypi:/home/pi $ va@raspberrypi:/home/pi $ va@raspberrypi:/home/pi $ cd va@raspberrypi:~ $ va@raspberrypi:~ $ va@raspberrypi:~ $ touch .1012 va@raspberrypi:~ $ va@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/va Created symbolic link /home/va/public_html va@raspberrypi:~ $ va@raspberrypi:~ $ va@raspberrypi:~ $ ls -al total 24 drwxr-xr-x 2 va www 4096 Mar 25 16:41 . drwxr-xr-x 16 root root 4096 Mar 25 16:40 .. -rw-r--r-- 1 va www 0 Mar 25 16:41 .1012 -rw-r--r-- 1 va www 220 Mar 25 16:40 .bash_logout -rw-r--r-- 1 va www 3523 Mar 25 16:40 .bashrc -rw-r--r-- 1 va www 1670 Mar 25 16:40 .mkshrc -rw-r--r-- 1 va www 807 Mar 25 16:40 .profile lrwxrwxrwx 1 va www 24 Mar 25 16:41 public_html -> /home/local/www/users/va va@raspberrypi:~ $ va@raspberrypi:~ $ va@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ sudo adduser --ingroup www videos Adding user `videos' ... Adding new user `videos' (1013) with group `www' ... Creating home directory `/home/videos' ... Copying files from `/etc/skel' ... New password: Retype new password: passwd: password updated successfully Changing the user information for videos Enter the new value, or press ENTER for the default Full Name []: videos Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n] y pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ su videos Password: videos@raspberrypi:/home/pi $ videos@raspberrypi:/home/pi $ videos@raspberrypi:/home/pi $ videos@raspberrypi:/home/pi $ cd videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ touch .1013 videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ makeweb Created web directory /home/local/www/users/videos Created symbolic link /home/videos/public_html videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ exit exit pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /home pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ ls -al total 68 drwxr-xr-x 17 root root 4096 Mar 25 16:42 . drwxr-xr-x 21 root root 4096 Mar 25 11:33 .. drwxr-xr-x 2 ac0xl ac0xl 4096 Mar 25 12:35 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 25 16:12 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 25 16:17 documents drwxr-xr-x 2 downloads www 4096 Mar 25 16:20 downloads drwxr-xr-x 2 freedom www 4096 Mar 25 16:23 freedom drwxr-xr-x 5 root root 4096 Mar 25 12:04 local drwxr-xr-x 2 memes www 4096 Mar 25 16:26 memes drwxr-xr-x 2 music www 4096 Mar 25 16:29 music drwxr-xr-x 2 notices www 4096 Mar 25 16:31 notices drwxr-xr-x 17 pi pi 4096 Mar 25 13:32 pi drwxr-xr-x 2 pictures www 4096 Mar 25 16:34 pictures drwxr-xr-x 2 rome www 4096 Mar 25 16:36 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 25 16:39 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 25 16:41 va drwxr-xr-x 2 videos www 4096 Mar 25 16:43 videos pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ cat /etc/group root:x:0: daemon:x:1: bin:x:2: sys:x:3: adm:x:4:pi tty:x:5: disk:x:6: lp:x:7: mail:x:8: news:x:9: uucp:x:10: man:x:12: proxy:x:13: kmem:x:15: dialout:x:20:pi,ac0xl fax:x:21: voice:x:22: cdrom:x:24:pi,ac0xl floppy:x:25:ac0xl tape:x:26: sudo:x:27:pi audio:x:29:pi,pulse,ac0xl dip:x:30: www-data:x:33: backup:x:34: operator:x:37: list:x:38: irc:x:39: src:x:40: gnats:x:41: shadow:x:42: utmp:x:43: video:x:44:pi,ac0xl sasl:x:45: plugdev:x:46:pi,ac0xl staff:x:50: games:x:60:pi users:x:100:pi,ac0xl nogroup:x:65534: systemd-timesync:x:101: systemd-journal:x:102: systemd-network:x:103: systemd-resolve:x:104: input:x:105:pi kvm:x:106: render:x:107:pi crontab:x:108: netdev:x:109:pi pi:x:1000: messagebus:x:110: ssh:x:111: bluetooth:x:112: avahi:x:113: spi:x:999:pi i2c:x:998:pi gpio:x:997:pi lightdm:x:114: rdma:x:115: rtkit:x:116: lpadmin:x:117:root,pi ssl-cert:x:118: pulse:x:119: pulse-access:x:120: scanner:x:121:saned saned:x:122: colord:x:123: epmd:x:124: geoclue:x:125: systemd-coredump:x:996: www:x:126:pi,ac0xl ac0xl:x:1001: pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ # Notice pi and ac0xl are the only "users" that are listed, thus the idea of using touch to put the user number in the directory so it will be available if one moves to a different system and just ends up with numbers for the user and the group. pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ cd /home/local/www/users pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ ls -al total 72 drwxrwxr-x 15 root www 4096 Mar 25 16:43 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. drwxr-xr-x 2 ac0xl www 4096 Mar 25 12:34 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 25 16:12 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 25 16:17 documents drwxr-xr-x 2 downloads www 4096 Mar 25 16:20 downloads -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico drwxr-xr-x 2 freedom www 4096 Mar 25 16:22 freedom drwxr-xr-x 2 memes www 4096 Mar 25 16:26 memes drwxr-xr-x 2 music www 4096 Mar 25 16:29 music drwxr-xr-x 2 notices www 4096 Mar 25 16:31 notices drwxr-xr-x 2 pictures www 4096 Mar 25 16:34 pictures -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt drwxr-xr-x 2 rome www 4096 Mar 25 16:36 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 25 16:38 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 25 16:41 va drwxr-xr-x 2 videos www 4096 Mar 25 16:43 videos pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ pi@raspberrypi:/home/local/www/users $ cd pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ date Fri 25 Mar 2022 04:50:45 PM MDT pi@raspberrypi:~ $ w 16:50:50 up 6:17, 2 users, load average: 0.95, 1.36, 1.35 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 21:31m 0.82s 0.66s -bash pi tty7 :0 Thu19 21:30m 30:12 3.61s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # Now I will copy some of my old web pages to see how fast thttpd can go. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ # It looks like I ran past the maximum lines for the terminal in Geany, so this is what I have. I did the editing on my Raspberry Pi 400 since it is a little faster than trying to edit on the Raspberry Pi B Plus with 512 MB RAM. The original microSD card is in a USB 2.0 Card Reader. These are the files from the directory "ac0xl/" and then all of the directory "www/". One can see the files are in "/home/ac0xl/" and "/home/videos/" on the original drive that I did all of the install on.using the Raspberry Pi B Plus with 512 MB RAM. "Chrome" ran extreamly SLOW, but "thttpd" ran surprisingly fast! I found that "pluma" has a spell checker so one could do: "sudo apt install pluma" and have a spell checker. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /media/pi/rootfs/home/ac0xl/ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ ls -al total 32 drwxr-xr-x 3 1001 126 4096 Mar 25 18:21 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 1001 126 0 Mar 25 12:32 .1001 -rw------- 1 1001 126 658 Mar 25 20:19 .bash_history -rw-r--r-- 1 1001 126 220 Mar 25 12:18 .bash_logout -rw-r--r-- 1 1001 126 3523 Mar 25 12:18 .bashrc -rw-r--r-- 1 1001 126 1670 Mar 25 12:18 .mkshrc -rw-r--r-- 1 1001 126 807 Mar 25 12:18 .profile lrwxrwxrwx 1 1001 126 27 Mar 25 12:34 public_html -> /home/local/www/users/ac0xl drwxr-xr-x 14 1001 126 4096 Nov 10 21:07 www pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ du -hd4 3.4M ./www/2002-ArchHunterBooks/SJSlides 540K ./www/2002-ArchHunterBooks/images 3.9M ./www/2002-ArchHunterBooks 2.1M ./www/1999-ArchHunterBooks/images 88K ./www/1999-ArchHunterBooks/old.htm 2.4M ./www/1999-ArchHunterBooks 12K ./www/slackbook/system-configuration 20K ./www/slackbook/booting 44K ./www/slackbook/basic-network-commands 12K ./www/slackbook/emacs 20K ./www/slackbook/package-management 8.0K ./www/slackbook/vi 112K ./www/slackbook/installation 12K ./www/slackbook/imagelib/admon 16K ./www/slackbook/imagelib 36K ./www/slackbook/x-window-system 1.7M ./www/slackbook 35M ./www/2005-museumarchives/James-Ramsay/Student_Papers 74M ./www/2005-museumarchives/James-Ramsay/Green-River-Articles 108M ./www/2005-museumarchives/James-Ramsay 123M ./www/2005-museumarchives/River-History/Tejas_Edwards 123M ./www/2005-museumarchives/River-History 146M ./www/2005-museumarchives/Missile-Base 116M ./www/2005-museumarchives/Charlotte/2005-07-01 121M ./www/2005-museumarchives/Charlotte/2005-06-11 115M ./www/2005-museumarchives/Charlotte/2005-05-22 142M ./www/2005-museumarchives/Charlotte/2005-07-13 121M ./www/2005-museumarchives/Charlotte/2005-06-30 613M ./www/2005-museumarchives/Charlotte 495M ./www/2005-museumarchives/Raw-Data/1960.GR.Yearbook 644M ./www/2005-museumarchives/Raw-Data/1946.Green.River.Yearbook 28M ./www/2005-museumarchives/Raw-Data/1909.GR.News 42M ./www/2005-museumarchives/Raw-Data/gallery-pictures 4.4G ./www/2005-museumarchives/Raw-Data/0-Raw-Data 33M ./www/2005-museumarchives/Raw-Data/1962.GRHS.YrBk 242M ./www/2005-museumarchives/Raw-Data/Harris-Ekker-Recordings 5.9G ./www/2005-museumarchives/Raw-Data 244M ./www/2005-museumarchives/Elgin-Cemetery/2004-11-15 244M ./www/2005-museumarchives/Elgin-Cemetery 40M ./www/2005-museumarchives/Green-River-History/Green_River_History_Book 28M ./www/2005-museumarchives/Green-River-History/GreenRiver-Bacon 68M ./www/2005-museumarchives/Green-River-History 7.2G ./www/2005-museumarchives 12K ./www/SlackBook14-1/html/system-configuration 20K ./www/SlackBook14-1/html/booting 44K ./www/SlackBook14-1/html/basic-network-commands 12K ./www/SlackBook14-1/html/emacs 20K ./www/SlackBook14-1/html/package-management 8.0K ./www/SlackBook14-1/html/vi 112K ./www/SlackBook14-1/html/installation 16K ./www/SlackBook14-1/html/imagelib 36K ./www/SlackBook14-1/html/x-window-system 1.7M ./www/SlackBook14-1/html 3.5M ./www/SlackBook14-1 2.5M ./www/2009-GreenRiver.UT/johnwesleypowell.com/images 4.6M ./www/2009-GreenRiver.UT/johnwesleypowell.com 11M ./www/2009-GreenRiver.UT/sterling.webiness.com/law 8.7M ./www/2009-GreenRiver.UT/sterling.webiness.com/codebook 24M ./www/2009-GreenRiver.UT/sterling.webiness.com/Green River,UT 4.7M ./www/2009-GreenRiver.UT/sterling.webiness.com/law2 48M ./www/2009-GreenRiver.UT/sterling.webiness.com 40K ./www/2009-GreenRiver.UT/greenriverutah.com/minutes 4.7M ./www/2009-GreenRiver.UT/greenriverutah.com/Melon Days 12K ./www/2009-GreenRiver.UT/greenriverutah.com/Scripts 388K ./www/2009-GreenRiver.UT/greenriverutah.com/agenda 292K ./www/2009-GreenRiver.UT/greenriverutah.com/archives 320K ./www/2009-GreenRiver.UT/greenriverutah.com/images 28K ./www/2009-GreenRiver.UT/greenriverutah.com/calendar 30M ./www/2009-GreenRiver.UT/greenriverutah.com/brochures 37M ./www/2009-GreenRiver.UT/greenriverutah.com 89M ./www/2009-GreenRiver.UT 14M ./www/2003-ArchHunterBooks/images 14M ./www/2003-ArchHunterBooks 3.4M ./www/2001-ArchHunterBooks/SJSlides 540K ./www/2001-ArchHunterBooks/images 3.9M ./www/2001-ArchHunterBooks 2.3M ./www/Slack8Book_files 32K ./www/The Revised Slackware Book Project_files 252K ./www/Slackware Linux Essentials_files 68K ./www/Web-demo~1994/maze/rooms 568K ./www/Web-demo~1994/maze/pix 648K ./www/Web-demo~1994/maze 664K ./www/Web-demo~1994 7.3G ./www 7.3G . pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/ac0xl $ cd ../local/www/users/ pi@raspberrypi:/media/pi/rootfs/home/local/www/users $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users $ ls -al total 72 drwxrwxr-x 15 root 126 4096 Mar 25 16:43 . drwxr-xr-x 5 root 126 4096 Mar 25 13:15 .. drwxr-xr-x 3 1001 126 4096 Mar 25 18:26 ac0xl drwxr-xr-x 2 1002 126 4096 Mar 25 16:12 delinquent-accounts drwxr-xr-x 2 1003 126 4096 Mar 25 16:17 documents drwxr-xr-x 2 1004 126 4096 Mar 25 16:20 downloads -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico drwxr-xr-x 2 1005 126 4096 Mar 25 16:22 freedom drwxr-xr-x 2 1006 126 4096 Mar 25 16:26 memes drwxr-xr-x 2 1007 126 4096 Mar 25 16:29 music drwxr-xr-x 2 1008 126 4096 Mar 25 16:31 notices drwxr-xr-x 2 1009 126 4096 Mar 25 16:34 pictures -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt drwxr-xr-x 2 1010 126 4096 Mar 25 16:36 rome drwxr-xr-x 2 1011 126 4096 Mar 25 16:38 searles-sav-on-propane drwxr-xr-x 2 1012 126 4096 Mar 25 16:41 va drwxr-xr-x 3 1013 126 4096 Mar 25 21:32 videos pi@raspberrypi:/media/pi/rootfs/home/local/www/users $ cd ac0xl/ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ ls -al total 12 drwxr-xr-x 3 1001 126 4096 Mar 25 18:26 . drwxrwxr-x 15 root 126 4096 Mar 25 16:43 .. drwxr-xr-x 14 1001 126 4096 Nov 10 21:07 www pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ du -hd4 3.4M ./www/2002-ArchHunterBooks/SJSlides 540K ./www/2002-ArchHunterBooks/images 3.9M ./www/2002-ArchHunterBooks 2.1M ./www/1999-ArchHunterBooks/images 88K ./www/1999-ArchHunterBooks/old.htm 2.4M ./www/1999-ArchHunterBooks 12K ./www/slackbook/system-configuration 20K ./www/slackbook/booting 44K ./www/slackbook/basic-network-commands 12K ./www/slackbook/emacs 20K ./www/slackbook/package-management 8.0K ./www/slackbook/vi 112K ./www/slackbook/installation 12K ./www/slackbook/imagelib/admon 16K ./www/slackbook/imagelib 36K ./www/slackbook/x-window-system 1.7M ./www/slackbook 35M ./www/2005-museumarchives/James-Ramsay/Student_Papers 74M ./www/2005-museumarchives/James-Ramsay/Green-River-Articles 108M ./www/2005-museumarchives/James-Ramsay 123M ./www/2005-museumarchives/River-History/Tejas_Edwards 123M ./www/2005-museumarchives/River-History 146M ./www/2005-museumarchives/Missile-Base 116M ./www/2005-museumarchives/Charlotte/2005-07-01 121M ./www/2005-museumarchives/Charlotte/2005-06-11 115M ./www/2005-museumarchives/Charlotte/2005-05-22 142M ./www/2005-museumarchives/Charlotte/2005-07-13 121M ./www/2005-museumarchives/Charlotte/2005-06-30 613M ./www/2005-museumarchives/Charlotte 495M ./www/2005-museumarchives/Raw-Data/1960.GR.Yearbook 644M ./www/2005-museumarchives/Raw-Data/1946.Green.River.Yearbook 28M ./www/2005-museumarchives/Raw-Data/1909.GR.News 42M ./www/2005-museumarchives/Raw-Data/gallery-pictures 4.4G ./www/2005-museumarchives/Raw-Data/0-Raw-Data 33M ./www/2005-museumarchives/Raw-Data/1962.GRHS.YrBk 242M ./www/2005-museumarchives/Raw-Data/Harris-Ekker-Recordings 5.9G ./www/2005-museumarchives/Raw-Data 244M ./www/2005-museumarchives/Elgin-Cemetery/2004-11-15 244M ./www/2005-museumarchives/Elgin-Cemetery 40M ./www/2005-museumarchives/Green-River-History/Green_River_History_Book 28M ./www/2005-museumarchives/Green-River-History/GreenRiver-Bacon 68M ./www/2005-museumarchives/Green-River-History 7.2G ./www/2005-museumarchives 12K ./www/SlackBook14-1/html/system-configuration 20K ./www/SlackBook14-1/html/booting 44K ./www/SlackBook14-1/html/basic-network-commands 12K ./www/SlackBook14-1/html/emacs 20K ./www/SlackBook14-1/html/package-management 8.0K ./www/SlackBook14-1/html/vi 112K ./www/SlackBook14-1/html/installation 16K ./www/SlackBook14-1/html/imagelib 36K ./www/SlackBook14-1/html/x-window-system 1.7M ./www/SlackBook14-1/html 3.5M ./www/SlackBook14-1 2.5M ./www/2009-GreenRiver.UT/johnwesleypowell.com/images 4.6M ./www/2009-GreenRiver.UT/johnwesleypowell.com 11M ./www/2009-GreenRiver.UT/sterling.webiness.com/law 8.7M ./www/2009-GreenRiver.UT/sterling.webiness.com/codebook 24M ./www/2009-GreenRiver.UT/sterling.webiness.com/Green River,UT 4.7M ./www/2009-GreenRiver.UT/sterling.webiness.com/law2 48M ./www/2009-GreenRiver.UT/sterling.webiness.com 40K ./www/2009-GreenRiver.UT/greenriverutah.com/minutes 4.7M ./www/2009-GreenRiver.UT/greenriverutah.com/Melon Days 12K ./www/2009-GreenRiver.UT/greenriverutah.com/Scripts 388K ./www/2009-GreenRiver.UT/greenriverutah.com/agenda 292K ./www/2009-GreenRiver.UT/greenriverutah.com/archives 320K ./www/2009-GreenRiver.UT/greenriverutah.com/images 28K ./www/2009-GreenRiver.UT/greenriverutah.com/calendar 30M ./www/2009-GreenRiver.UT/greenriverutah.com/brochures 37M ./www/2009-GreenRiver.UT/greenriverutah.com 89M ./www/2009-GreenRiver.UT 14M ./www/2003-ArchHunterBooks/images 14M ./www/2003-ArchHunterBooks 3.4M ./www/2001-ArchHunterBooks/SJSlides 540K ./www/2001-ArchHunterBooks/images 3.9M ./www/2001-ArchHunterBooks 2.3M ./www/Slack8Book_files 32K ./www/The Revised Slackware Book Project_files 252K ./www/Slackware Linux Essentials_files 68K ./www/Web-demo~1994/maze/rooms 568K ./www/Web-demo~1994/maze/pix 648K ./www/Web-demo~1994/maze 664K ./www/Web-demo~1994 7.3G ./www 7.3G . pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ pi@raspberrypi:/media/pi/rootfs/home/local/www/users/ac0xl $ Notice the files now show the group to be "epmd" instead or "www" since they were running on a different computer. It there is not a matching name to the numbers the computer uses, then the "user" and "group" number will be displayed. pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ ls -al total 5349380 drwxrwxr-x 3 videos epmd 4096 Jan 31 20:47 . drwxr-xr-x 3 root root 4096 Mar 25 17:41 .. -rw-rw-r-- 1 videos epmd 33041900 Jan 29 14:20 '01 - THESECRETOFBANKING The Secret of banking_480p.mp4' -rw-rw-r-- 1 videos epmd 162323250 Jan 29 14:34 '02 - ILLUSION OF POWER_480p.mp4' -rw-rw-r-- 1 videos epmd 160323446 Jan 29 14:54 '03 - PROCLAMATION License To Be Killed_480p.mp4' -rw-rw-r-- 1 videos epmd 73699188 Jan 29 15:02 '04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' -rw-rw-r-- 1 videos epmd 87736046 Jan 29 15:10 '05 - THELEDGERBAIT_480p.mp4' -rw-rw-r-- 1 videos epmd 133596855 Jan 29 15:26 '06 - PRESUMPTIONOFLAW_480p.mp4' -rw-rw-r-- 1 videos epmd 70610915 Jan 29 15:33 '07 - NAME_480p.mp4' -rw-rw-r-- 1 videos epmd 149688018 Jan 29 15:46 '08 - DECEIVEDINTOCONSENT_480p.mp4' -rw-rw-r-- 1 videos epmd 63108474 Jan 29 15:59 '09 - DEADLEDGERTEXT_480p.mp4' -rw-rw-r-- 1 videos epmd 171746704 Jan 29 16:17 '10 - Hierarchy_480p.mp4' -rw-rw-r-- 1 videos epmd 79396030 Jan 29 16:25 '11 - GOAT_480p.mp4' -rw-rw-r-- 1 videos epmd 54946509 Jan 29 16:31 '12 - DAVIDJOHNWALTER_480p.mp4' -rw-rw-r-- 1 videos epmd 151988460 Jan 29 16:43 '13 - THEPERFECTCRIME_480p.mp4' -rw-rw-r-- 1 videos epmd 42860933 Jan 29 16:48 '14 - COGNIZANCE_480p.mp4' -rw-rw-r-- 1 videos epmd 92497187 Jan 29 16:57 '15 - THEREMEDYWITHIN_480p.mp4' -rw-rw-r-- 1 videos epmd 29837051 Jan 29 17:00 '16 - SOLDOUT_480p.mp4' -rw-rw-r-- 1 videos epmd 167711995 Jan 29 17:15 '17 - THEWARNING_480p.mp4' -rw-rw-r-- 1 videos epmd 59990207 Jan 29 17:23 '18 - CAPITALINVESTMENTALLOWANCE_480p.mp4' -rw-rw-r-- 1 videos epmd 70611578 Jan 29 17:29 '19 - David John Walter 12 10 2018 Court Matter_480p.mp4' -rw-rw-r-- 1 videos epmd 159585040 Jan 29 17:43 '20 - BIRTHINGCERTIFICATES_480p.mp4' -rw-rw-r-- 1 videos epmd 63222150 Jan 29 17:51 '21 - TRAVEL_480p.mp4' -rw-rw-r-- 1 videos epmd 290583219 Jan 29 18:14 '22 - HIDDEN SYSTEM_480p.mp4' -rw-rw-r-- 1 videos epmd 58154523 Jan 29 18:26 '23 - HIDDEN FOREIGN MILITARY_480p.mp4' -rw-rw-r-- 1 videos epmd 230466772 Jan 29 18:51 '24 - ROMANDROHANTALK_480p.mp4' -rw-rw-r-- 1 videos epmd 71443265 Jan 29 19:06 '25 - NEWWORLDORDERFRAUD_480p.mp4' -rw-rw-r-- 1 videos epmd 100289651 Jan 29 19:16 '26 - CORPORATEBIRTHCERTIFICATE_480p.mp4' -rw-rw-r-- 1 videos epmd 151767693 Jan 29 19:37 '27 - THECORPUSJURIS and the Magna Carta_480p.mp4' -rw-rw-r-- 1 videos epmd 61786493 Jan 29 19:48 '28 - CORPORATIONSOUL_480p.mp4.mp4' -rw-rw-r-- 1 videos epmd 50670204 Jan 29 19:54 '29 - POLICEARENOTGOVERNMENT_480p.mp4' -rw-rw-r-- 1 videos epmd 137763414 Jan 29 20:08 '30 - HOW CORPORATE GOVERNMENTS KILL THEIR CITIZENS_480p.mp4' -rw-rw-r-- 1 videos epmd 202730462 Jan 29 20:31 '31 - HYPHENGLITCH_480p.mp4' -rw-rw-r-- 1 videos epmd 395948111 Jan 29 21:17 '32 - LANGUAGEOFBABYLON_480p.mp4' -rw-rw-r-- 1 videos epmd 201720810 Jan 29 22:58 '33 - WHYYOUAREDEAD_480p.mp4' -rw-rw-r-- 1 videos epmd 30876399 Jan 29 23:02 '34 - ANOLDERCODE_480p.mp4' -rw-rw-r-- 1 videos epmd 32724848 Jan 29 23:06 '35 - COUNTERFEITGOVERNMENT_480p.mp4' -rw-rw-r-- 1 videos epmd 60057308 Jan 29 23:12 '36 - AQUEENSDECEPTION_480p.mp4' -rw-rw-r-- 1 videos epmd 26114994 Jan 29 23:17 '37 - WORKINGTHEBOARD Happy New Year 2020 From Justinian Deception Youtube Channel_480p.mp4' -rw-rw-r-- 1 videos epmd 215626738 Jan 29 23:34 '38 - 2020_480p.mp4' -rw-rw-r-- 1 videos epmd 22960341 Jan 29 23:38 '39 - DIGLOSSIALANGUAGEOFTHESNAKE_480p.mp4' -rw-rw-r-- 1 videos epmd 122356958 Jan 29 23:48 '40 - WHATISAUSTRALIA_480p.mp4' -rw-rw-r-- 1 videos epmd 46110454 Jan 29 23:53 '41 - HOCUSPOCUS_480p.mp4' -rw-rw-r-- 1 videos epmd 124277110 Jan 30 00:04 '42 - DANGERWORDOFDOUBLESPEAKINCLUDE_480p.mp4' -rw-rw-r-- 1 videos epmd 178652812 Jan 30 00:19 '43 - TREASURYISLAND What Includes Australia_480p.mp4' -rw-rw-r-- 1 videos epmd 291950853 Jan 30 00:42 '44 - GNOSTICCONTROL_480p.mp4' -rw-rw-r-- 1 videos epmd 83116835 Jan 30 00:52 '45 - WORM_480p.mp4' -rw-rw-r-- 1 videos epmd 37269539 Jan 30 00:56 '46 - THEGODSOFFICTIONGOVERNMENT_480p.mp4' -rw-rw-r-- 1 videos epmd 42016819 Jan 30 01:00 '47 - MESSAGE_480p.mp4' -rw-rw-r-- 1 videos epmd 8077732 Jan 30 01:01 '48 - WHAT IS COMMUNISM Rumble Link_480p.mp4' -rw-rw-r-- 1 videos epmd 123425371 Jan 31 20:16 '49 - WHATISCOMMUNISM_480p.mp4' -rw-r--r-- 1 videos epmd 834 Oct 5 14:30 Justinian-Deception.html drwxr-xr-x 12 videos epmd 4096 Jan 2 2021 justiniandeception.wordpress.com pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ sudo cp -av justiniandeception.wordpress.com/* /home/videos/Justinian-Deception/justiniandeception.wordpress.com/ cp: target '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/' is not a directory pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ sudo mkdir -v /home/videos/Justinian-Deception/justiniandeception.wordpress.com/ mkdir: created directory '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/' pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ sudo cp -av justiniandeception.wordpress.com/* /home/videos/Justinian-Deception/justiniandeception.wordpress.com/ 'justiniandeception.wordpress.com/2016' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016' 'justiniandeception.wordpress.com/2016/04' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04' 'justiniandeception.wordpress.com/2016/04/21' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed/index.html' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html' 'justiniandeception.wordpress.com/2016/07' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07' 'justiniandeception.wordpress.com/2016/07/14' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html.orig' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed/index.html' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html' 'justiniandeception.wordpress.com/2016/12' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12' 'justiniandeception.wordpress.com/2016/12/01' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html.orig' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed/index.html' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html' 'justiniandeception.wordpress.com/2016/11' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11' 'justiniandeception.wordpress.com/2016/11/23' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html.orig' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.orig' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.orig' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.html' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.html' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed/index.html' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html' 'justiniandeception.wordpress.com/2016/11/18' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html.orig' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed/index.html' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html' 'justiniandeception.wordpress.com/2016/11/16' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html.orig' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed/index.html' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html' 'justiniandeception.wordpress.com/2016/11/14' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html.orig' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed/index.html' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html' 'justiniandeception.wordpress.com/2016/11/12' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html.orig' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed/index.html' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html' 'justiniandeception.wordpress.com/2016/11/09' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html.orig' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed/index.html' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html' 'justiniandeception.wordpress.com/2016/11/07' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html.orig' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed/index.html' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html' 'justiniandeception.wordpress.com/2016/11/04' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html.orig' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed/index.html' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html' 'justiniandeception.wordpress.com/2016/10' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10' 'justiniandeception.wordpress.com/2016/10/31' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html.orig' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed/index.html' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html' 'justiniandeception.wordpress.com/2016/10/28' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html.orig' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed/index.html' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html' 'justiniandeception.wordpress.com/2016/10/27' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html.orig' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed/index.html' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html.orig' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed/index.html' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html' 'justiniandeception.wordpress.com/2016/10/24' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html.orig' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed/index.html' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html' 'justiniandeception.wordpress.com/2016/10/12' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html.orig' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed/index.html' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html' 'justiniandeception.wordpress.com/2016/09' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09' 'justiniandeception.wordpress.com/2016/09/19' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html.orig' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed/index.html' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html.orig' 'justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html' 'justiniandeception.wordpress.com/2017' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017' 'justiniandeception.wordpress.com/2017/11' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11' 'justiniandeception.wordpress.com/2017/11/24' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html.orig' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed/index.html' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html' 'justiniandeception.wordpress.com/2017/11/22' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html.orig' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.orig' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.orig' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.html' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.html' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed/index.html' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html' 'justiniandeception.wordpress.com/2017/09' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09' 'justiniandeception.wordpress.com/2017/09/11' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html.orig' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed/index.html' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html' 'justiniandeception.wordpress.com/2017/08' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08' 'justiniandeception.wordpress.com/2017/08/18' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html.orig' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed/index.html' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html' 'justiniandeception.wordpress.com/2017/07' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07' 'justiniandeception.wordpress.com/2017/07/11' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html.orig' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed/index.html' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html' 'justiniandeception.wordpress.com/2017/07/06' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html.orig' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed/index.html' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html.orig' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed/index.html' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html' 'justiniandeception.wordpress.com/2017/06' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06' 'justiniandeception.wordpress.com/2017/06/06' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html.orig' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed/index.html' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html' 'justiniandeception.wordpress.com/2017/05' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05' 'justiniandeception.wordpress.com/2017/05/30' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html.orig' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed/index.html' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html' 'justiniandeception.wordpress.com/2017/05/19' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html.orig' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.orig' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.orig' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.orig' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.orig' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.html' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.html' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.html' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.html' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed/index.html' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html.orig' 'justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html' 'justiniandeception.wordpress.com/about' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/about' 'justiniandeception.wordpress.com/about/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/about/index.html.orig' 'justiniandeception.wordpress.com/about/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/about/index.html' 'justiniandeception.wordpress.com/author' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author' 'justiniandeception.wordpress.com/author/justiniandeception' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception' 'justiniandeception.wordpress.com/author/justiniandeception/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html.orig' 'justiniandeception.wordpress.com/author/justiniandeception/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html' 'justiniandeception.wordpress.com/author/justiniandeception/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed' 'justiniandeception.wordpress.com/author/justiniandeception/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed/index.html' 'justiniandeception.wordpress.com/author/justiniandeception/page' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page' 'justiniandeception.wordpress.com/author/justiniandeception/page/2' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2' 'justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html.orig' 'justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html' 'justiniandeception.wordpress.com/author/justiniandeception/page/3' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3' 'justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html.orig' 'justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html' 'justiniandeception.wordpress.com/category' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category' 'justiniandeception.wordpress.com/category/uncategorized' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized' 'justiniandeception.wordpress.com/category/uncategorized/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html.orig' 'justiniandeception.wordpress.com/category/uncategorized/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html' 'justiniandeception.wordpress.com/category/uncategorized/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed' 'justiniandeception.wordpress.com/category/uncategorized/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed/index.html' 'justiniandeception.wordpress.com/category/uncategorized/page' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page' 'justiniandeception.wordpress.com/category/uncategorized/page/2' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2' 'justiniandeception.wordpress.com/category/uncategorized/page/2/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html.orig' 'justiniandeception.wordpress.com/category/uncategorized/page/2/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html' 'justiniandeception.wordpress.com/category/uncategorized/page/3' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3' 'justiniandeception.wordpress.com/category/uncategorized/page/3/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html.orig' 'justiniandeception.wordpress.com/category/uncategorized/page/3/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html' 'justiniandeception.wordpress.com/comments' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/comments' 'justiniandeception.wordpress.com/comments/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/comments/feed' 'justiniandeception.wordpress.com/comments/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/comments/feed/index.html' 'justiniandeception.wordpress.com/contact' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/contact' 'justiniandeception.wordpress.com/contact/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/contact/index.html.orig' 'justiniandeception.wordpress.com/contact/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/contact/index.html' 'justiniandeception.wordpress.com/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/feed' 'justiniandeception.wordpress.com/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/feed/index.html' 'justiniandeception.wordpress.com/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/index.html' 'justiniandeception.wordpress.com/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/index.html.orig' 'justiniandeception.wordpress.com/osd.xml' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/osd.xml' 'justiniandeception.wordpress.com/page' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page' 'justiniandeception.wordpress.com/page/2' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page/2' 'justiniandeception.wordpress.com/page/2/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html.orig' 'justiniandeception.wordpress.com/page/2/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html' 'justiniandeception.wordpress.com/page/3' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page/3' 'justiniandeception.wordpress.com/page/3/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html.orig' 'justiniandeception.wordpress.com/page/3/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html' 'justiniandeception.wordpress.com/type' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/type' 'justiniandeception.wordpress.com/type/audio' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/type/audio' 'justiniandeception.wordpress.com/type/audio/index.html.orig' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html.orig' 'justiniandeception.wordpress.com/type/audio/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html' 'justiniandeception.wordpress.com/type/audio/feed' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed' 'justiniandeception.wordpress.com/type/audio/feed/index.html' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed/index.html' 'justiniandeception.wordpress.com/xmlrpc.php?rsd' -> '/home/videos/Justinian-Deception/justiniandeception.wordpress.com/xmlrpc.php?rsd' pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ ls -al /home/videos/Justinian-Deception/justiniandeception.wordpress.com/ total 504 drwxr-xr-x 12 root root 4096 Mar 25 20:54 . drwxr-xr-x 3 videos epmd 4096 Mar 25 20:53 .. drwxr-xr-x 8 videos epmd 4096 Jan 2 2021 2016 drwxr-xr-x 8 videos epmd 4096 Jan 2 2021 2017 drwxr-xr-x 2 videos epmd 4096 Jan 2 2021 about drwxr-xr-x 3 videos epmd 4096 Jan 2 2021 author drwxr-xr-x 3 videos epmd 4096 Jan 2 2021 category drwxr-xr-x 3 videos epmd 4096 Jan 2 2021 comments drwxr-xr-x 2 videos epmd 4096 Jan 2 2021 contact drwxr-xr-x 2 videos epmd 4096 Jan 2 2021 feed -rw-r--r-- 1 videos epmd 226143 Jan 2 2021 index.html -rw-r--r-- 1 videos epmd 227703 Jan 2 2021 index.html.orig -rw-r--r-- 1 videos epmd 1516 Jan 2 2021 osd.xml drwxr-xr-x 4 videos epmd 4096 Jan 2 2021 page drwxr-xr-x 3 videos epmd 4096 Jan 2 2021 type -rw-r--r-- 1 videos epmd 915 Jan 2 2021 'xmlrpc.php?rsd' pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 29G 23G 4.6G 84% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 7.4M 208M 4% /dev/shm tmpfs 86M 1.2M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 44K 43M 1% /run/user/1000 /dev/sdb1 253M 49M 204M 20% /media/pi/boot /dev/sdb2 29G 21G 6.7G 76% /media/pi/rootfs pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ du -hd3 /home/videos/ 6.7M /home/videos/Justinian-Deception/justiniandeception.wordpress.com/2017 14M /home/videos/Justinian-Deception/justiniandeception.wordpress.com/2016 24K /home/videos/Justinian-Deception/justiniandeception.wordpress.com/comments 756K /home/videos/Justinian-Deception/justiniandeception.wordpress.com/page 100K /home/videos/Justinian-Deception/justiniandeception.wordpress.com/contact 1.1M /home/videos/Justinian-Deception/justiniandeception.wordpress.com/author 92K /home/videos/Justinian-Deception/justiniandeception.wordpress.com/about 1.1M /home/videos/Justinian-Deception/justiniandeception.wordpress.com/category 72K /home/videos/Justinian-Deception/justiniandeception.wordpress.com/feed 424K /home/videos/Justinian-Deception/justiniandeception.wordpress.com/type 25M /home/videos/Justinian-Deception/justiniandeception.wordpress.com 25M /home/videos/Justinian-Deception 4.0K /home/videos/JustinianDeception 25M /home/videos/ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ ls -al 0* -rw-rw-r-- 1 videos epmd 33041900 Jan 29 14:20 '01 - THESECRETOFBANKING The Secret of banking_480p.mp4' -rw-rw-r-- 1 videos epmd 162323250 Jan 29 14:34 '02 - ILLUSION OF POWER_480p.mp4' -rw-rw-r-- 1 videos epmd 160323446 Jan 29 14:54 '03 - PROCLAMATION License To Be Killed_480p.mp4' -rw-rw-r-- 1 videos epmd 73699188 Jan 29 15:02 '04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' -rw-rw-r-- 1 videos epmd 87736046 Jan 29 15:10 '05 - THELEDGERBAIT_480p.mp4' -rw-rw-r-- 1 videos epmd 133596855 Jan 29 15:26 '06 - PRESUMPTIONOFLAW_480p.mp4' -rw-rw-r-- 1 videos epmd 70610915 Jan 29 15:33 '07 - NAME_480p.mp4' -rw-rw-r-- 1 videos epmd 149688018 Jan 29 15:46 '08 - DECEIVEDINTOCONSENT_480p.mp4' -rw-rw-r-- 1 videos epmd 63108474 Jan 29 15:59 '09 - DEADLEDGERTEXT_480p.mp4' pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ du -h 0* 32M 01 - THESECRETOFBANKING The Secret of banking_480p.mp4 155M 02 - ILLUSION OF POWER_480p.mp4 153M 03 - PROCLAMATION License To Be Killed_480p.mp4 71M 04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4 84M 05 - THELEDGERBAIT_480p.mp4 128M 06 - PRESUMPTIONOFLAW_480p.mp4 68M 07 - NAME_480p.mp4 143M 08 - DECEIVEDINTOCONSENT_480p.mp4 61M 09 - DEADLEDGERTEXT_480p.mp4 pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ sudo cp -iav 0* /home/videos/JustinianDeception/ '01 - THESECRETOFBANKING The Secret of banking_480p.mp4' -> '/home/videos/JustinianDeception/01 - THESECRETOFBANKING The Secret of banking_480p.mp4' '02 - ILLUSION OF POWER_480p.mp4' -> '/home/videos/JustinianDeception/02 - ILLUSION OF POWER_480p.mp4' '03 - PROCLAMATION License To Be Killed_480p.mp4' -> '/home/videos/JustinianDeception/03 - PROCLAMATION License To Be Killed_480p.mp4' '04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' -> '/home/videos/JustinianDeception/04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' '05 - THELEDGERBAIT_480p.mp4' -> '/home/videos/JustinianDeception/05 - THELEDGERBAIT_480p.mp4' '06 - PRESUMPTIONOFLAW_480p.mp4' -> '/home/videos/JustinianDeception/06 - PRESUMPTIONOFLAW_480p.mp4' '07 - NAME_480p.mp4' -> '/home/videos/JustinianDeception/07 - NAME_480p.mp4' '08 - DECEIVEDINTOCONSENT_480p.mp4' -> '/home/videos/JustinianDeception/08 - DECEIVEDINTOCONSENT_480p.mp4' '09 - DEADLEDGERTEXT_480p.mp4' -> '/home/videos/JustinianDeception/09 - DEADLEDGERTEXT_480p.mp4' pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 29G 24G 3.7G 87% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 7.4M 208M 4% /dev/shm tmpfs 86M 1.2M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 44K 43M 1% /run/user/1000 /dev/sdb1 253M 49M 204M 20% /media/pi/boot /dev/sdb2 29G 21G 6.7G 76% /media/pi/rootfs pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ # Since I am getting very short on room I will put this much up on the web. pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ su videos Password: videos@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ videos@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ videos@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ videos@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ cd videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ ls -al total 40 drwxr-xr-x 4 videos www 4096 Mar 25 20:34 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 91 Mar 25 20:24 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos epmd 4096 Mar 25 20:53 Justinian-Deception drwxr-xr-x 2 root root 4096 Mar 25 21:04 JustinianDeception -rw-r--r-- 1 videos epmd 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos videos@raspberrypi:~ $ sudo chown -vR videos:www * We trust you have received the usual lecture from the local System Administrator. It usually boils down to these three things: #1) Respect the privacy of others. #2) Think before you type. #3) With great power comes great responsibility. videos@raspberrypi:~ $ videos@raspberrypi:~ $ exit exit pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ sudo cd /home/videos sudo: cd: command not found pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ pi@raspberrypi:/media/pi/rootfs/videos/JustinianDeception $ cd /home/videos pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ ls -al total 40 drwxr-xr-x 4 videos www 4096 Mar 25 20:34 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 134 Mar 25 21:08 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos epmd 4096 Mar 25 20:53 Justinian-Deception drwxr-xr-x 2 root root 4096 Mar 25 21:04 JustinianDeception -rw-r--r-- 1 videos epmd 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos pi@raspberrypi:/home/videos $ sudo chown -v videos:www Jus* # This should have been "sudo chown -vR videos:www Jus*" changed ownership of 'Justinian-Deception' from videos:epmd to videos:www changed ownership of 'JustinianDeception' from root:root to videos:www changed ownership of 'Justinian-Deception.html' from videos:epmd to videos:www pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ ls -al total 40 drwxr-xr-x 4 videos www 4096 Mar 25 20:34 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 134 Mar 25 21:08 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos www 4096 Mar 25 20:53 Justinian-Deception drwxr-xr-x 2 videos www 4096 Mar 25 21:04 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ sudo chown -vR videos:www Jus* changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09/11' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/09' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08/18' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/08' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/30' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05/19' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/05' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/11' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07/06' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/07' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/24' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11/22' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/11' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06/06' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017/06' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2017' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09/19' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/09' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04/21' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/04' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12/01' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/12' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/28' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/24' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/12' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/27' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10/31' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/10' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07/14' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/07' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/09' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/04' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/18' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/16' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/12' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/14' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/23' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11/07' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016/11' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/2016' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/comments/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/comments/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/comments' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page/2' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page/3' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/page' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/xmlrpc.php?rsd' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/contact/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/contact/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/contact' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/author' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/about/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/about/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/about' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/osd.xml' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/category' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html.orig' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed/index.html' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/type/audio' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com/type' from videos:epmd to videos:www changed ownership of 'Justinian-Deception/justiniandeception.wordpress.com' from root:root to videos:www ownership of 'Justinian-Deception' retained as videos:www changed ownership of 'JustinianDeception/01 - THESECRETOFBANKING The Secret of banking_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/08 - DECEIVEDINTOCONSENT_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/02 - ILLUSION OF POWER_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/07 - NAME_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/03 - PROCLAMATION License To Be Killed_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/06 - PRESUMPTIONOFLAW_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/09 - DEADLEDGERTEXT_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' from videos:epmd to videos:www changed ownership of 'JustinianDeception/05 - THELEDGERBAIT_480p.mp4' from videos:epmd to videos:www ownership of 'JustinianDeception' retained as videos:www ownership of 'Justinian-Deception.html' retained as videos:www pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ # I forgot I needed to change the lower levels also. pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ ls -al total 40 drwxr-xr-x 4 videos www 4096 Mar 25 20:34 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 134 Mar 25 21:08 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos www 4096 Mar 25 20:53 Justinian-Deception drwxr-xr-x 2 videos www 4096 Mar 25 21:04 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ du -hd2 25M ./Justinian-Deception/justiniandeception.wordpress.com 25M ./Justinian-Deception 891M ./JustinianDeception 916M . pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ # It looks like I missed another lavel again! pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ pi@raspberrypi:/home/videos $ su videos Password: videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ cd videos@raspberrypi:~ $ videos@raspberrypi:~ $ ls -al total 40 drwxr-xr-x 4 videos www 4096 Mar 25 20:34 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 134 Mar 25 21:08 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos www 4096 Mar 25 20:53 Justinian-Deception drwxr-xr-x 2 videos www 4096 Mar 25 21:04 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ mv Justinian-Deception JustinianDeception/ videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ ls -al total 36 drwxr-xr-x 3 videos www 4096 Mar 25 21:19 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 134 Mar 25 21:08 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos www 4096 Mar 25 21:19 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ du -hd1 916M ./JustinianDeception 916M . videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ du -hd2 25M ./JustinianDeception/Justinian-Deception 916M ./JustinianDeception 916M . videos@raspberrypi:~ $ du -hd3 25M ./JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com 25M ./JustinianDeception/Justinian-Deception 916M ./JustinianDeception 916M . videos@raspberrypi:~ $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 29G 24G 3.7G 87% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 7.4M 208M 4% /dev/shm tmpfs 86M 1.2M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 44K 43M 1% /run/user/1000 videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ ls -al total 36 drwxr-xr-x 3 videos www 4096 Mar 25 21:19 . drwxr-xr-x 17 root root 4096 Mar 25 18:21 .. -rw-r--r-- 1 videos www 0 Mar 25 16:43 .1013 -rw------- 1 videos www 134 Mar 25 21:08 .bash_history -rw-r--r-- 1 videos www 220 Mar 25 16:42 .bash_logout -rw-r--r-- 1 videos www 3523 Mar 25 16:42 .bashrc drwxr-xr-x 3 videos www 4096 Mar 25 21:19 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html -rw-r--r-- 1 videos www 1670 Mar 25 16:42 .mkshrc -rw-r--r-- 1 videos www 807 Mar 25 16:42 .profile lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ cp -iav * ./public_html # Copy everything to the "Live Web". 'JustinianDeception' -> './public_html/JustinianDeception' 'JustinianDeception/01 - THESECRETOFBANKING The Secret of banking_480p.mp4' -> './public_html/JustinianDeception/01 - THESECRETOFBANKING The Secret of banking_480p.mp4' 'JustinianDeception/08 - DECEIVEDINTOCONSENT_480p.mp4' -> './public_html/JustinianDeception/08 - DECEIVEDINTOCONSENT_480p.mp4' 'JustinianDeception/02 - ILLUSION OF POWER_480p.mp4' -> './public_html/JustinianDeception/02 - ILLUSION OF POWER_480p.mp4' 'JustinianDeception/03 - PROCLAMATION License To Be Killed_480p.mp4' -> './public_html/JustinianDeception/03 - PROCLAMATION License To Be Killed_480p.mp4' 'JustinianDeception/04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' -> './public_html/JustinianDeception/04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' 'JustinianDeception/05 - THELEDGERBAIT_480p.mp4' -> './public_html/JustinianDeception/05 - THELEDGERBAIT_480p.mp4' 'JustinianDeception/06 - PRESUMPTIONOFLAW_480p.mp4' -> './public_html/JustinianDeception/06 - PRESUMPTIONOFLAW_480p.mp4' 'JustinianDeception/07 - NAME_480p.mp4' -> './public_html/JustinianDeception/07 - NAME_480p.mp4' 'JustinianDeception/09 - DEADLEDGERTEXT_480p.mp4' -> './public_html/JustinianDeception/09 - DEADLEDGERTEXT_480p.mp4' 'JustinianDeception/Justinian-Deception' -> './public_html/JustinianDeception/Justinian-Deception' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/osd.xml' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/osd.xml' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/xmlrpc.php?rsd' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/xmlrpc.php?rsd' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=77.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=103.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=103&_wpnonce=c0d4faf6f9.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=77&_wpnonce=483265ced3.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?like_comment=86&_wpnonce=5eb7c435da.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/index.html?replytocom=86.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/04/21/first-blog-post/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/07/14/dog-latin-foreign-corporate-governments-and-the-dog-latin-effect-the-poison-in-the-gloss/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/12/01/is-the-comic-the-joker-that-usurps-the-corruption-into-the-text-as-it-passes-through-passage/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?like_comment=36&_wpnonce=24a71492e0.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/index.html?replytocom=36.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/23/rohan-loran-dog-latin-corruption-in-the-king-james-bible/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/18/bob-katter-speech/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/16/the-destruction-of-the-nightclub-industry-in-queensland-and-australia-re-queensland-lockout-laws-by-the-criminal-queensland-corporate-private-foreign-government-treason/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/14/dick-yardley-answers-a-question-in-relation-to-treason-and-treachery/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/12/lucifer-real-meanings-of-the-words/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/09/are-you-a-mr-or-mrs-or-miss-than-you-really-are-a-dead-military-account-with-no-rights-to-any-form-of-justice-you-are-bound-by-orders-of-the-higher-ranking-officer-you-are-no-longer-p/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/07/rohan-lorian-queensland-police-fraud/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/11/04/slavery-or-servitude-by-consent/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/31/terror-used-to-enforce-false-grammar/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/28/what-is-unidroit/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/latin-translation-the-tool-for-comprehending-the-fraud-in-the-grammar/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/27/an-explanation-why-there-are-two-birthing-certificates-two-worlds-two-systems-debtor-and-creditor/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/24/how-to-find-the-commonwealth-of-australia-corporation-corporate-deceptions/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/10/12/thoughts-on-artificial-persons-and-natural-persons-and-split-title/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2016/09/19/banking-interview-with-romley-stewart/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/24/the-perfect-crime/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?replytocom=200.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?like_comment=200&_wpnonce=78a3603dd0.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/11/22/know-where-you-politically-stand-before-you-speak/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/09/11/new-you-tube-links/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/08/18/deceived-into-consent/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/11/presumption-of-law/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/the-ledger-bait/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/07/06/ivan-bortic-an-interesting-account-of-australian-political-standing/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/06/06/quasi-bible-of-the-new-world-order/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/30/what-is-proclamation-date/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=facebook.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?like_comment=90&_wpnonce=0a751b4ecc.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?share=twitter.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/index.html?replytocom=90.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/2017/05/19/illusions-of-power/amp/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/about' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/about' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/about/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/about/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/about/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/about/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/2/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/author/justiniandeception/page/3/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/2/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/category/uncategorized/page/3/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/comments' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/comments' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/comments/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/comments/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/comments/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/comments/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/contact' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/contact' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/contact/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/contact/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/contact/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/contact/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/feed/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/2' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/2' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/2/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/3' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/3' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/page/3/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html.orig' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html.orig' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/index.html' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed' 'JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed/index.html' -> './public_html/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/type/audio/feed/index.html' 'Justinian-Deception.html' -> './public_html/Justinian-Deception.html' 'public_html' -> './public_html/public_html' videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ # Notice the "public_html" was moved to the web site, but all of the lines starting with a period "." didn't get copied. videos@raspberrypi:~ $ videos@raspberrypi:~ $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 29G 25G 2.8G 90% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 7.4M 208M 4% /dev/shm tmpfs 86M 1.2M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 44K 43M 1% /run/user/1000 videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ # Time to go to the "users" on the web site. videos@raspberrypi:~ $ videos@raspberrypi:~ $ videos@raspberrypi:~ $ cd /home/local/www/users videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ ls -al total 72 drwxrwxr-x 15 root www 4096 Mar 25 16:43 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. drwxr-xr-x 3 ac0xl www 4096 Mar 25 18:26 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 25 16:12 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 25 16:17 documents drwxr-xr-x 2 downloads www 4096 Mar 25 16:20 downloads -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico drwxr-xr-x 2 freedom www 4096 Mar 25 16:22 freedom drwxr-xr-x 2 memes www 4096 Mar 25 16:26 memes drwxr-xr-x 2 music www 4096 Mar 25 16:29 music drwxr-xr-x 2 notices www 4096 Mar 25 16:31 notices drwxr-xr-x 2 pictures www 4096 Mar 25 16:34 pictures -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt drwxr-xr-x 2 rome www 4096 Mar 25 16:36 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 25 16:38 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 25 16:41 va drwxr-xr-x 3 videos www 4096 Mar 25 21:26 videos videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ cd ac0xl videos@raspberrypi:/home/local/www/users/ac0xl $ videos@raspberrypi:/home/local/www/users/ac0xl $ ls -al total 12 drwxr-xr-x 3 ac0xl www 4096 Mar 25 18:26 . drwxrwxr-x 15 root www 4096 Mar 25 16:43 .. drwxr-xr-x 14 ac0xl www 4096 Nov 10 21:07 www videos@raspberrypi:/home/local/www/users/ac0xl $ cd www videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ ls -al total 3240 drwxr-xr-x 14 ac0xl www 4096 Nov 10 21:07 . drwxr-xr-x 3 ac0xl www 4096 Mar 25 18:26 .. drwxr-xr-x 4 ac0xl www 4096 Jan 2 2021 1999-ArchHunterBooks drwxr-xr-x 4 ac0xl www 4096 Jan 2 2021 2001-ArchHunterBooks drwxr-xr-x 4 ac0xl www 4096 Oct 28 12:23 2002-ArchHunterBooks drwxr-xr-x 3 ac0xl www 4096 Jan 2 2021 2003-ArchHunterBooks drwxr-xr-x 9 ac0xl www 4096 Jan 2 2021 2005-museumarchives drwxr-xr-x 5 ac0xl www 4096 Jan 2 2021 2009-GreenRiver.UT drwxr-xr-x 2 ac0xl www 4096 Apr 2 2002 Slack8Book_files -rw-r--r-- 1 ac0xl www 868816 Mar 29 2002 Slack8Book.html drwxr-xr-x 11 ac0xl www 4096 Jan 2 2021 slackbook drwxr-xr-x 3 ac0xl www 4096 Dec 17 2014 SlackBook14-1 -rw-r--r-- 1 ac0xl www 1863038 May 16 2005 slackbook-2.0.pdf drwxr-xr-x 2 ac0xl www 4096 Nov 1 13:59 'Slackware Linux Essentials_files' -rw-rw-r-- 1 ac0xl www 519589 Nov 1 13:59 'Slackware Linux Essentials.html' drwxr-xr-x 2 ac0xl www 4096 Nov 1 13:41 'The Revised Slackware Book Project_files' -rw-rw-r-- 1 ac0xl www 4074 Nov 1 13:41 'The Revised Slackware Book Project.html' drwxr-xr-x 3 ac0xl www 4096 Jan 2 2021 Web-demo~1994 videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ # I didn't move everything so no "public_html" and everything looks good. videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ videos@raspberrypi:/home/local/www/users/ac0xl/www $ cd ../../videos videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ ls -al total 16 drwxr-xr-x 3 videos www 4096 Mar 25 21:26 . drwxrwxr-x 15 root www 4096 Mar 25 16:43 .. drwxr-xr-x 3 videos www 4096 Mar 25 21:19 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html lrwxrwxrwx 1 videos www 28 Mar 25 16:43 public_html -> /home/local/www/users/videos videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ rm -v public_html removed 'public_html' videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ # Since "pi" is a member of the group "www" we don't need sudo. If one starts a command like a directory listing, then hits the "Tab" key it should complete or go to where there is a choice. If it doesn't you might be in the wrong place or there are still multiple choices that one has to choose from. videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ ls -al total 16 drwxr-xr-x 3 videos www 4096 Mar 25 21:32 . drwxrwxr-x 15 root www 4096 Mar 25 16:43 .. drwxr-xr-x 3 videos www 4096 Mar 25 21:19 JustinianDeception -rw-r--r-- 1 videos www 834 Oct 5 14:30 Justinian-Deception.html videos@raspberrypi:/home/local/www/users/videos $ cd JustinianDeception/ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ ls -al total 912256 drwxr-xr-x 3 videos www 4096 Mar 25 21:19 . drwxr-xr-x 3 videos www 4096 Mar 25 21:32 .. -rw-rw-r-- 1 videos www 33041900 Jan 29 14:20 '01 - THESECRETOFBANKING The Secret of banking_480p.mp4' -rw-rw-r-- 1 videos www 162323250 Jan 29 14:34 '02 - ILLUSION OF POWER_480p.mp4' -rw-rw-r-- 1 videos www 160323446 Jan 29 14:54 '03 - PROCLAMATION License To Be Killed_480p.mp4' -rw-rw-r-- 1 videos www 73699188 Jan 29 15:02 '04 - QUASIBIBLEOFTHENEWWORLDORDER_480p.mp4' -rw-rw-r-- 1 videos www 87736046 Jan 29 15:10 '05 - THELEDGERBAIT_480p.mp4' -rw-rw-r-- 1 videos www 133596855 Jan 29 15:26 '06 - PRESUMPTIONOFLAW_480p.mp4' -rw-rw-r-- 1 videos www 70610915 Jan 29 15:33 '07 - NAME_480p.mp4' -rw-rw-r-- 1 videos www 149688018 Jan 29 15:46 '08 - DECEIVEDINTOCONSENT_480p.mp4' -rw-rw-r-- 1 videos www 63108474 Jan 29 15:59 '09 - DEADLEDGERTEXT_480p.mp4' drwxr-xr-x 3 videos www 4096 Mar 25 20:53 Justinian-Deception videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception $ cd Justinian-Deception/ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ ls -al total 12 drwxr-xr-x 3 videos www 4096 Mar 25 20:53 . drwxr-xr-x 3 videos www 4096 Mar 25 21:19 .. drwxr-xr-x 12 videos www 4096 Mar 25 20:54 justiniandeception.wordpress.com videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ # WordPress files take a long time to load and looking at this, one might see the reason why. videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ videos@raspberrypi:/home/local/www/users/videos/JustinianDeception/Justinian-Deception $ cd ../../ videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ videos@raspberrypi:/home/local/www/users/videos $ cd ../ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ ls -al total 72 drwxrwxr-x 15 root www 4096 Mar 25 16:43 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. drwxr-xr-x 3 ac0xl www 4096 Mar 25 18:26 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 25 16:12 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 25 16:17 documents drwxr-xr-x 2 downloads www 4096 Mar 25 16:20 downloads -rw-r--r-- 1 root root 533 Mar 25 12:43 favicon.ico drwxr-xr-x 2 freedom www 4096 Mar 25 16:22 freedom drwxr-xr-x 2 memes www 4096 Mar 25 16:26 memes drwxr-xr-x 2 music www 4096 Mar 25 16:29 music drwxr-xr-x 2 notices www 4096 Mar 25 16:31 notices drwxr-xr-x 2 pictures www 4096 Mar 25 16:34 pictures -rw-r--r-- 1 root root 308 Mar 25 12:43 readme.txt -rw-r--r-- 1 root root 27 Mar 25 12:43 robots.txt drwxr-xr-x 2 rome www 4096 Mar 25 16:36 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 25 16:38 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 25 16:41 va drwxr-xr-x 3 videos www 4096 Mar 25 21:32 videos videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ du -hd3 4.0K ./va 4.0K ./memes 4.0K ./pictures 4.0K ./searles-sav-on-propane 25M ./videos/JustinianDeception/Justinian-Deception 916M ./videos/JustinianDeception 916M ./videos 4.0K ./rome 4.0K ./music 4.0K ./delinquent-accounts 4.0K ./freedom 4.0K ./documents 4.0K ./notices 3.9M ./ac0xl/www/2002-ArchHunterBooks 2.4M ./ac0xl/www/1999-ArchHunterBooks 1.7M ./ac0xl/www/slackbook 7.2G ./ac0xl/www/2005-museumarchives 3.5M ./ac0xl/www/SlackBook14-1 89M ./ac0xl/www/2009-GreenRiver.UT 14M ./ac0xl/www/2003-ArchHunterBooks 3.9M ./ac0xl/www/2001-ArchHunterBooks 2.3M ./ac0xl/www/Slack8Book_files 32K ./ac0xl/www/The Revised Slackware Book Project_files 252K ./ac0xl/www/Slackware Linux Essentials_files 664K ./ac0xl/www/Web-demo~1994 7.3G ./ac0xl/www 7.3G ./ac0xl 4.0K ./downloads 8.2G . videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ # At this point there are 8.2 GB of files on our "World Wide Web" server, but until the computer is connected to the internet through the router, they are just on our local network. videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ # My Raspberry Pi B Plus with 512 MB of RAM only has four (4) USB 2.0 ports. One port I have a wireless keyboard and mouse on it. Another one has a Wi-Fi dongle that says "360, some Chinese, and WiFi3" on it from "www.360.cn", but it is in Chinese so I have no idea what speed it is, but again it is running on a USB port so it can't bee too fast. To transfer the files into the Pi, I used a USB 2.0 card reader and a microSD card to pull the files from my web server: http://162.259.19.7/ with my wireless internet connection being 2 Mbits/sec down and 1 Mbits/sec up which should run about 125 KBytes/sec. For my next test I will be using my Raspberry Pi 400 to access this B Plus wirelessly. videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ # Time to start the B Plus thttpd web server, which normally starts as the computer powers up. videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ videos@raspberrypi:/home/local/www/users $ # Maybe Geany's lines are a little shorter than what I gave it, the terminal in Geany maxes out at 5000 lines.. # Time to shut everything down and start thttpd. pi@raspberrypi:~ $ pi@raspberrypi:~ $ pi@raspberrypi:~ $ cd /etc pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo rc.local sudo: rc.local: command not found pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo ./rc.local My IP address is 192.168.19.24 Starting thttpd. thttpdpi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ ifconfig eth0: flags=4163 mtu 1500 inet 192.168.1.74 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::5924:587f:e4c7:a82c prefixlen 64 scopeid 0x20 ether b8:27:eb:c3:01:45 txqueuelen 1000 (Ethernet) RX packets 183 bytes 34739 (33.9 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 248 bytes 37288 (36.4 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 274 bytes 35765 (34.9 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 274 bytes 35765 (34.9 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 wlan0: flags=4163 mtu 1500 inet 192.168.19.24 netmask 255.255.255.0 broadcast 192.168.19.255 inet6 fe80::7f15:b8ad:6d80:1cc9 prefixlen 64 scopeid 0x20 ether 00:87:36:32:9b:81 txqueuelen 1000 (Ethernet) RX packets 315250 bytes 69769251 (66.5 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 612436 bytes 897401613 (855.8 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ sudo datelog pi@raspberrypi:/etc $ # I set up a gigabit router and did a couple of tests. The large pictures of arches just popped up while on the wireless 360 wireless they just scrolled down. It will be interesting to see how the log looks. pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ I will copy this and then restart the computer so I can see where the PID comes in as it loads. bash: I: command not found pi@raspberrypi:/etc $ pi@raspberrypi:/etc $ *************************************************************************************************************************** pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ date Sat 26 Mar 2022 07:31:39 PM MDT pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ ifconfig eth0: flags=4163 mtu 1500 inet 192.168.1.74 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::5924:587f:e4c7:a82c prefixlen 64 scopeid 0x20 ether b8:27:eb:c3:01:45 txqueuelen 1000 (Ethernet) RX packets 1403 bytes 270688 (264.3 KiB) RX errors 4 dropped 2 overruns 0 frame 4 TX packets 146 bytes 13765 (13.4 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 28 bytes 2798 (2.7 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 28 bytes 2798 (2.7 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 29G 25G 2.8G 90% / devtmpfs 87M 0 87M 0% /dev tmpfs 215M 0 215M 0% /dev/shm tmpfs 86M 1.1M 85M 2% /run tmpfs 5.0M 4.0K 5.0M 1% /run/lock /dev/mmcblk0p1 253M 49M 204M 20% /boot tmpfs 43M 32K 43M 1% /run/user/1000 pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ pi@raspberrypi:/ $ cd /home/local/www/logs pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al total 360 drwxr-xr-x 2 root www 4096 Mar 26 06:25 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. -rw-r--r-- 1 nobody nogroup 48631 Mar 26 18:28 thttpd_log -rw-r--r-- 1 nobody nogroup 300001 Mar 26 06:25 thttpd_log.01 -rw-r--r-- 1 nobody nogroup 2373 Mar 25 15:40 thttpd_log.02 -rw-r--r-- 1 nobody nogroup 1803 Mar 25 14:32 thttpd_log.03 pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.03 ::1 - - [25/Mar/2022:19:37:13 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:38:23 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:41:03 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:41:39 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://localhost/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" ::1 - - [25/Mar/2022:19:43:32 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:20:00 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:08 +0000] "UNKNOWN UNKNOWN" 408 0 "" "" 192.168.19.24 - - [25/Mar/2022:20:21:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (X11; CrOS armv6l 13597.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.106 Safari/537.36" Fri 25 Mar 2022 02:32:06 PM MDT 14:32:06 up 3:59, 2 users, load average: 1.64, 1.88, 2.56 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 19:12m 0.82s 0.66s -bash pi tty7 :0 Thu19 19:12m 18:54 3.00s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.02 Fri 25 Mar 2022 02:32:06 PM MDT 14:32:06 up 3:59, 2 users, load average: 1.64, 1.88, 2.56 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 19:12m 0.82s 0.66s -bash pi tty7 :0 Thu19 19:12m 18:54 3.00s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.12 - - [25/Mar/2022:20:37:25 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:25 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.3.0) Gecko/68.3.0 Firefox/68.3.0" 192.168.19.12 - - [25/Mar/2022:20:37:30 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.12 - - [25/Mar/2022:20:37:40 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:50 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:37:57 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:06 +0000] "GET /readme.txt HTTP/1.1" 200 308 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:11 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:14 +0000] "GET /robots.txt HTTP/1.1" 200 27 "http://192.168.19.24/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" 192.168.19.12 - - [25/Mar/2022:20:38:17 +0000] "GET / HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (Android 4.4.2; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0" Fri 25 Mar 2022 03:40:52 PM MDT log rotate end, thttpd pid = PID TTY TIME CMD 15:40:52 up 5:07, 2 users, load average: 1.84, 1.47, 1.34 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:21m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:20m 24:05 3.25s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log.02=1 cat: '*log.02=1': No such file or directory pi@raspberrypi:/home/local/www/logs $ cat *log.01 Fri 25 Mar 2022 03:40:52 PM MDT old log rotate end, old thttpd pid = PID TTY TIME CMD log rotate new, thttpd pid = PID TTY TIME CMD 15:41:08 up 5:08, 2 users, load average: 1.85, 1.50, 1.35 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:21m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:21m 24:05 3.25s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi datelog, thttpd pid = PID TTY TIME CMD Fri 25 Mar 2022 03:50:58 PM MDT 15:50:59 up 5:17, 2 users, load average: 1.29, 1.23, 1.23 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 20:31m 0.82s 0.66s -bash pi tty7 :0 Thu19 20:30m 24:41 3.28s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi datelog, thttpd pid = PID TTY TIME CMD 5825 ? 00:00:01 thttpd Fri 25 Mar 2022 10:26:11 PM MDT 22:26:11 up 11:53, 2 users, load average: 1.39, 1.78, 2.01 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 27:06m 0.82s 0.66s -bash pi tty7 :0 Thu19 27:06m 51:35 4.43s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.15 = Raspberry Pi 400 wlan0 LAN on 10/100 D-Link GO-RT-N300 Router. 192.168.19.24 = Raspberry Pi Model B Plus, Rev. 1.2, RAM 512, code: 0010, cpu part 0xb76, 700 MHz, 1 core, wlan0 LAN using "360 ?? WiFi 3" from "www.360.cn" dongle. 192.168.19.15 - - [26/Mar/2022:04:30:52 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:30:53 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:01 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.19.24/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:04 +0000] "GET /ac0xl/www/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:12 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/ HTTP/1.1" 200 477 "http://192.168.19.24/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:12 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/arch.htm HTTP/1.1" 200 2340 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:12 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/main.htm HTTP/1.1" 200 493 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:12 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/fill.jpg HTTP/1.1" 200 1264 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/arch.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:12 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/nav.jpg HTTP/1.1" 200 26915 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/arch.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:13 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/collagemain.jpg HTTP/1.1" 200 89726 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/main.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:16 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/company.htm HTTP/1.1" 200 5303 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/arch.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:16 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/about%20us.jpg HTTP/1.1" 200 12616 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/company.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:16 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/downloadie.gif HTTP/1.1" 200 1629 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/company.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:16 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/worldwideinstitute.gif HTTP/1.1" 200 3320 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/company.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:16 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/downloadne.gif HTTP/1.1" 200 1902 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/company.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:16 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/pic2.jpg HTTP/1.1" 200 26198 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/company.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/books.htm HTTP/1.1" 200 17035 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/arch.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image102_small.jpg HTTP/1.1" 200 3489 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/books.jpg HTTP/1.1" 200 13417 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image101_small.jpg HTTP/1.1" 200 23205 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image103_small.jpg HTTP/1.1" 200 3808 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image104_small.jpg HTTP/1.1" 200 4025 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image105_small.jpg HTTP/1.1" 200 2862 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image106_small.jpg HTTP/1.1" 200 3127 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image107_main.jpg HTTP/1.1" 200 4020 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image111_small.jpg HTTP/1.1" 200 2798 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image109_small.jpg HTTP/1.1" 200 5350 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image112_small.jpg HTTP/1.1" 200 2860 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image108_small.jpg HTTP/1.1" 200 3138 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image110_small.jpg HTTP/1.1" 200 4892 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image113_small.jpg HTTP/1.1" 200 6673 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:18 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/image114_small.jpg HTTP/1.1" 200 2891 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/books.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:20 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/links.htm HTTP/1.1" 200 5142 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/arch.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:20 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/links.jpg HTTP/1.1" 200 13163 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/links.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:20 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/layingbooksline.gif HTTP/1.1" 200 4168 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/links.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:27 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/contact.htm HTTP/1.1" 200 3928 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/arch.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:27 +0000] "GET /ac0xl/www/1999-ArchHunterBooks/images/contact_us.jpg HTTP/1.1" 200 16116 "http://192.168.19.24/ac0xl/www/1999-ArchHunterBooks/contact.htm" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:36 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/ HTTP/1.1" 200 3422 "http://192.168.19.24/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:36 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/photo-03.jpg HTTP/1.1" 200 32660 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:43 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/newbooks.html HTTP/1.1" 200 9345 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b4003.jpg HTTP/1.1" 200 28755 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b4005.jpg HTTP/1.1" 200 24575 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b4009.jpg HTTP/1.1" 200 28862 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0053.jpg HTTP/1.1" 200 22359 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0033.jpg HTTP/1.1" 200 33963 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0040.jpg HTTP/1.1" 200 18469 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0047.jpg HTTP/1.1" 200 44316 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0052.jpg HTTP/1.1" 200 24249 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:44 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0030.jpg HTTP/1.1" 200 31528 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0019.jpg HTTP/1.1" 200 24167 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0017.jpg HTTP/1.1" 200 24350 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0018.jpg HTTP/1.1" 200 50950 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/photo-02.jpg HTTP/1.1" 200 26453 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0204.jpg HTTP/1.1" 200 60458 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/b0034.jpg HTTP/1.1" 200 26114 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:51 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" /ac0xl/www/2001-ArchHunterBooks/links.html 192.168.19.15 - - [26/Mar/2022:04:31:57 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/links.html HTTP/1.1" 200 2255 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:31:57 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/photo-01.jpg HTTP/1.1" 200 20441 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/links.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" /ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html (small jpgs). 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html HTTP/1.1" 200 15833 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/links.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/02sphoto.jpg HTTP/1.1" 200 2018 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/01strans.jpg HTTP/1.1" 200 3301 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/03sphoto.jpg HTTP/1.1" 200 2125 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/06strans.jpg HTTP/1.1" 200 2372 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/05strans.jpg HTTP/1.1" 200 2531 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/07strans.jpg HTTP/1.1" 200 3105 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/04strans.jpg HTTP/1.1" 200 2068 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/09sphoto.jpg HTTP/1.1" 200 2462 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/08strans.jpg HTTP/1.1" 200 3441 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/14strans.jpg HTTP/1.1" 200 2752 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/11strans.jpg HTTP/1.1" 200 2538 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/15strans.jpg HTTP/1.1" 200 2616 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/13strans.jpg HTTP/1.1" 200 2709 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/12strans.jpg HTTP/1.1" 200 2163 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/10strans.jpg HTTP/1.1" 200 3230 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/16strans.jpg HTTP/1.1" 200 3038 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 58,302 bytes in 17 files transfered in less than one second. 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/20strans.jpg HTTP/1.1" 200 2259 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/19strans.jpg HTTP/1.1" 200 2844 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/21strans.jpg HTTP/1.1" 200 2227 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/18strans.jpg HTTP/1.1" 200 2197 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/17strans.jpg HTTP/1.1" 200 3029 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/26strans.jpg HTTP/1.1" 200 3120 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/25strans.jpg HTTP/1.1" 200 2056 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/27strans.jpg HTTP/1.1" 200 3133 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/22strans.jpg HTTP/1.1" 200 1800 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/23strans.jpg HTTP/1.1" 200 2776 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/24strans.jpg HTTP/1.1" 200 2904 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/32strans.jpg HTTP/1.1" 200 2735 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/31sphoto.jpg HTTP/1.1" 200 2123 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/33strans.jpg HTTP/1.1" 200 2092 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/28strans.jpg HTTP/1.1" 200 2369 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/29strans.jpg HTTP/1.1" 200 2336 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/30strans.jpg HTTP/1.1" 200 2648 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/36sphoto.jpg HTTP/1.1" 200 1911 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/38sphoto.jpg HTTP/1.1" 200 3107 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/39sphoto.jpg HTTP/1.1" 200 2891 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/35strans.jpg HTTP/1.1" 200 2962 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/34strans.jpg HTTP/1.1" 200 2736 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/37strans.jpg HTTP/1.1" 200 3016 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/44strans.jpg HTTP/1.1" 200 3021 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/43strans.jpg HTTP/1.1" 200 2752 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/40strans.jpg HTTP/1.1" 200 2600 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/45sphoto.jpg HTTP/1.1" 200 2168 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/41strans.jpg HTTP/1.1" 200 3289 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/42strans.jpg HTTP/1.1" 200 3167 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/49strans.jpg HTTP/1.1" 200 3338 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/46sphoto.jpg HTTP/1.1" 200 2030 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/47strans.jpg HTTP/1.1" 200 2526 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/50strans.jpg HTTP/1.1" 200 1751 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/48sphoto.jpg HTTP/1.1" 200 1976 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/51strans.jpg HTTP/1.1" 200 2509 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/53strans.jpg HTTP/1.1" 200 3425 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 93,823 bytes in 36 files transfered in less than 1 second. 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/52sphoto.jpg HTTP/1.1" 200 1831 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/54strans.jpg HTTP/1.1" 200 3562 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/55strans.jpg HTTP/1.1" 200 2965 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/56sslide.jpg HTTP/1.1" 200 1964 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/58strans.jpg HTTP/1.1" 200 2548 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/57strans.jpg HTTP/1.1" 200 2763 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/60strans.jpg HTTP/1.1" 200 3041 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/61strans.jpg HTTP/1.1" 200 2554 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/64sphoto.jpg HTTP/1.1" 200 1761 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/62strans.jpg HTTP/1.1" 200 2608 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/63strans.jpg HTTP/1.1" 200 2393 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/65strans.jpg HTTP/1.1" 200 2576 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/67sphoto.jpg HTTP/1.1" 200 2695 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/69strans.jpg HTTP/1.1" 200 1945 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/66strans.jpg HTTP/1.1" 200 2742 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/70strans.jpg HTTP/1.1" 200 2513 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/68strans.jpg HTTP/1.1" 200 2509 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/71strans.jpg HTTP/1.1" 200 2085 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/74strans.jpg HTTP/1.1" 200 1903 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/75strans.jpg HTTP/1.1" 200 3168 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/72strans.jpg HTTP/1.1" 200 2658 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/73strans.jpg HTTP/1.1" 200 2415 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/76strans.jpg HTTP/1.1" 200 3647 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/77strans.jpg HTTP/1.1" 200 3015 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/78strans.jpg HTTP/1.1" 200 2418 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:32:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/59strans.jpg HTTP/1.1" 200 2381 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 66,660 bytes in 26 file transfers in less than 1 second. large jpgs. 192.168.19.15 - - [26/Mar/2022:04:34:26 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/01-trans.jpg HTTP/1.1" 200 56745 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:34:31 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/02-photo.jpg HTTP/1.1" 200 37304 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:34:35 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/03-photo.jpg HTTP/1.1" 200 25391 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:34:39 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/04-trans.jpg HTTP/1.1" 200 31137 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:34:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/05-trans.jpg HTTP/1.1" 200 37257 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:34:51 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/06-trans.jpg HTTP/1.1" 200 29335 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:34:58 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/07-trans.jpg HTTP/1.1" 200 51876 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/08-trans.jpg HTTP/1.1" 200 52512 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:07 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/09-photo.jpg HTTP/1.1" 200 33895 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:12 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/10-trans.jpg HTTP/1.1" 200 51180 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/11-trans.jpg HTTP/1.1" 200 37723 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:25 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/12-trans.jpg HTTP/1.1" 200 24687 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:29 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/13-trans.jpg HTTP/1.1" 200 40822 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:33 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/14-trans.jpg HTTP/1.1" 200 43214 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:36 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/15-trans.jpg HTTP/1.1" 200 45162 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:40 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/16-trans.jpg HTTP/1.1" 200 50357 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/17-trans.jpg HTTP/1.1" 200 40803 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:48 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/18-trans.jpg HTTP/1.1" 200 33061 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:51 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/19-trans.jpg HTTP/1.1" 200 38464 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:54 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/20-trans.jpg HTTP/1.1" 200 33671 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:35:58 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/21-trans.jpg HTTP/1.1" 200 29425 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/22-trans.jpg HTTP/1.1" 200 16151 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:09 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/23-trans.jpg HTTP/1.1" 200 35119 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:13 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/24-trans.jpg HTTP/1.1" 200 41757 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:15 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/25-trans.jpg HTTP/1.1" 200 27244 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:18 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/26-trans.jpg HTTP/1.1" 200 48677 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:24 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/27-trans.jpg HTTP/1.1" 200 43956 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:29 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/28-trans.jpg HTTP/1.1" 200 36385 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:32 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/29-trans.jpg HTTP/1.1" 200 32917 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:35 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/30-trans.jpg HTTP/1.1" 200 41726 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:39 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/31-photo.jpg HTTP/1.1" 200 27664 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:43 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/32-trans.jpg HTTP/1.1" 200 37564 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:46 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/33-trans.jpg HTTP/1.1" 200 28212 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:54 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/34-trans.jpg HTTP/1.1" 200 39278 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:36:57 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/35-trans.jpg HTTP/1.1" 200 43930 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:00 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/36-photo.jpg HTTP/1.1" 200 25748 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/37-trans.jpg HTTP/1.1" 200 47174 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:09 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/38-photo.jpg HTTP/1.1" 200 53579 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:14 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/39-photo.jpg HTTP/1.1" 200 38756 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:19 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/40-trans.jpg HTTP/1.1" 200 36075 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:22 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/41-trans.jpg HTTP/1.1" 200 46288 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:25 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/42-trans.jpg HTTP/1.1" 200 44654 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:28 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/43-trans.jpg HTTP/1.1" 200 45573 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:36 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/44-trans.jpg HTTP/1.1" 200 42073 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:40 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/45-photo.jpg HTTP/1.1" 200 31646 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:47 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/46-photo.jpg HTTP/1.1" 200 43177 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:50 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/47-trans.jpg HTTP/1.1" 200 35455 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:53 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/48-photo.jpg HTTP/1.1" 200 26828 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:37:56 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/49-trans.jpg HTTP/1.1" 200 52424 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:00 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/50-trans.jpg HTTP/1.1" 200 21762 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/51-trans.jpg HTTP/1.1" 200 37027 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:10 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/52-photo.jpg HTTP/1.1" 200 28261 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:13 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/53-trans.jpg HTTP/1.1" 200 56428 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:16 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/54-trans.jpg HTTP/1.1" 200 53545 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:18 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/55-trans.jpg HTTP/1.1" 200 53322 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:22 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/56-slide.jpg HTTP/1.1" 200 40860 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:27 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/57-trans.jpg HTTP/1.1" 200 37189 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:34 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/58-trans.jpg HTTP/1.1" 200 34058 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:38 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/60-trans.jpg HTTP/1.1" 200 48010 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:41 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/59-trans.jpg HTTP/1.1" 200 34984 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/61-trans.jpg HTTP/1.1" 200 38501 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:48 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/62-trans.jpg HTTP/1.1" 200 39610 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:53 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/63-trans.jpg HTTP/1.1" 200 35265 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:38:58 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/64-photo.jpg HTTP/1.1" 200 21640 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:00 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/65-trans.jpg HTTP/1.1" 200 33892 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/66-trans.jpg HTTP/1.1" 200 43115 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:06 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/67-photo.jpg HTTP/1.1" 200 34356 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:10 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/68-trans.jpg HTTP/1.1" 200 35699 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:14 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/69-trans.jpg HTTP/1.1" 200 25458 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:22 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/70-trans.jpg HTTP/1.1" 200 36645 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:25 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/71-trans.jpg HTTP/1.1" 200 27039 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:29 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/72-trans.jpg HTTP/1.1" 200 41211 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:32 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/73-trans.jpg HTTP/1.1" 200 35347 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:37 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/74-trans.jpg HTTP/1.1" 200 21787 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:40 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/75-trans.jpg HTTP/1.1" 200 53193 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/76-trans.jpg HTTP/1.1" 200 59469 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:50 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/77-trans.jpg HTTP/1.1" 200 44513 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:39:53 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/78-trans.jpg HTTP/1.1" 200 32621 "http://192.168.19.24/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:16 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/ HTTP/1.1" 200 3553 "http://192.168.19.24/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" End of SJSlides - Beginning of 2002-ArchHunterBooks 192.168.19.15 - - [26/Mar/2022:04:40:17 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/photo-03.jpg HTTP/1.1" 200 32660 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/newbooks.html HTTP/1.1" 200 9436 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b4003.jpg HTTP/1.1" 200 28755 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b4005.jpg HTTP/1.1" 200 24575 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b4009.jpg HTTP/1.1" 200 28862 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0052.jpg HTTP/1.1" 200 24249 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0047.jpg HTTP/1.1" 200 44316 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0033.jpg HTTP/1.1" 200 33963 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:20 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0053.jpg HTTP/1.1" 200 22359 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0040.jpg HTTP/1.1" 200 18469 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0030.jpg HTTP/1.1" 200 31528 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0019.jpg HTTP/1.1" 200 24167 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0017.jpg HTTP/1.1" 200 24350 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0018.jpg HTTP/1.1" 200 50950 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0204.jpg HTTP/1.1" 200 60458 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/b0034.jpg HTTP/1.1" 200 26114 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:21 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/images/photo-02.jpg HTTP/1.1" 200 26453 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/newbooks.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" Beginning of 2002-ArchHunterBooks (small jpgs) 192.168.19.15 - - [26/Mar/2022:04:40:37 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html HTTP/1.1" 200 15833 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/05strans.jpg HTTP/1.1" 200 2531 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/04strans.jpg HTTP/1.1" 200 2068 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/06strans.jpg HTTP/1.1" 200 2372 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/01strans.jpg HTTP/1.1" 200 3301 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/02sphoto.jpg HTTP/1.1" 200 2018 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/03sphoto.jpg HTTP/1.1" 200 2125 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/09sphoto.jpg HTTP/1.1" 200 2462 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/08strans.jpg HTTP/1.1" 200 3441 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/07strans.jpg HTTP/1.1" 200 3105 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/11strans.jpg HTTP/1.1" 200 2538 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/12strans.jpg HTTP/1.1" 200 2163 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/10strans.jpg HTTP/1.1" 200 3230 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/14strans.jpg HTTP/1.1" 200 2752 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/13strans.jpg HTTP/1.1" 200 2709 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/15strans.jpg HTTP/1.1" 200 2616 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/16strans.jpg HTTP/1.1" 200 3038 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/18strans.jpg HTTP/1.1" 200 2197 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/17strans.jpg HTTP/1.1" 200 3029 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/19strans.jpg HTTP/1.1" 200 2844 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/20strans.jpg HTTP/1.1" 200 2259 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/21strans.jpg HTTP/1.1" 200 2227 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/22strans.jpg HTTP/1.1" 200 1800 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/24strans.jpg HTTP/1.1" 200 2904 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/23strans.jpg HTTP/1.1" 200 2776 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/25strans.jpg HTTP/1.1" 200 2056 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/30strans.jpg HTTP/1.1" 200 2648 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/29strans.jpg HTTP/1.1" 200 2336 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/32strans.jpg HTTP/1.1" 200 2735 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/28strans.jpg HTTP/1.1" 200 2369 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/33strans.jpg HTTP/1.1" 200 2092 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/27strans.jpg HTTP/1.1" 200 3133 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/31sphoto.jpg HTTP/1.1" 200 2123 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/34strans.jpg HTTP/1.1" 200 2736 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/39sphoto.jpg HTTP/1.1" 200 2891 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/38sphoto.jpg HTTP/1.1" 200 3107 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/37strans.jpg HTTP/1.1" 200 3016 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/36sphoto.jpg HTTP/1.1" 200 1911 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:38 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/35strans.jpg HTTP/1.1" 200 2962 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/40strans.jpg HTTP/1.1" 200 2600 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/44strans.jpg HTTP/1.1" 200 3021 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/43strans.jpg HTTP/1.1" 200 2752 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/42strans.jpg HTTP/1.1" 200 3167 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/45sphoto.jpg HTTP/1.1" 200 2168 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/41strans.jpg HTTP/1.1" 200 3289 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/46sphoto.jpg HTTP/1.1" 200 2030 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/50strans.jpg HTTP/1.1" 200 1751 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/51strans.jpg HTTP/1.1" 200 2509 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/47strans.jpg HTTP/1.1" 200 2526 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/48sphoto.jpg HTTP/1.1" 200 1976 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/49strans.jpg HTTP/1.1" 200 3338 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/52sphoto.jpg HTTP/1.1" 200 1831 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/56sslide.jpg HTTP/1.1" 200 1964 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/55strans.jpg HTTP/1.1" 200 2965 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/54strans.jpg HTTP/1.1" 200 3562 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/57strans.jpg HTTP/1.1" 200 2763 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/58strans.jpg HTTP/1.1" 200 2548 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/53strans.jpg HTTP/1.1" 200 3425 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/59strans.jpg HTTP/1.1" 200 2381 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/60strans.jpg HTTP/1.1" 200 3041 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/61strans.jpg HTTP/1.1" 200 2554 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/65strans.jpg HTTP/1.1" 200 2576 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/62strans.jpg HTTP/1.1" 200 2608 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/63strans.jpg HTTP/1.1" 200 2393 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/66strans.jpg HTTP/1.1" 200 2742 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/67sphoto.jpg HTTP/1.1" 200 2695 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/68strans.jpg HTTP/1.1" 200 2509 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/64sphoto.jpg HTTP/1.1" 200 1761 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/69strans.jpg HTTP/1.1" 200 1945 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:39 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/70strans.jpg HTTP/1.1" 200 2513 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/74strans.jpg HTTP/1.1" 200 1903 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/73strans.jpg HTTP/1.1" 200 2415 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/75strans.jpg HTTP/1.1" 200 3168 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/76strans.jpg HTTP/1.1" 200 3647 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/71strans.jpg HTTP/1.1" 200 2085 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/72strans.jpg HTTP/1.1" 200 2658 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/77strans.jpg HTTP/1.1" 200 3015 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/78strans.jpg HTTP/1.1" 200 2418 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:40:40 +0000] "GET /ac0xl/www/2002-ArchHunterBooks/SJSlides/26strans.jpg HTTP/1.1" 200 3120 "http://192.168.19.24/ac0xl/www/2002-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" Left page and went to 2003-ArchHunterBooks/ - a lot of pictures were never added (404) "Not Found". 192.168.19.15 - - [26/Mar/2022:04:40:45 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.15 - - [26/Mar/2022:04:41:05 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/ HTTP/1.1" 200 4547 "http://192.168.19.24/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:05 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:10 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/new01.html HTTP/1.1" 200 23790 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:10 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4014s.jpg HTTP/1.1" 200 3780 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0108s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0913s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1443s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7901s.jpg HTTP/1.1" 200 2388 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7902s.jpg HTTP/1.1" 200 1051 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2138s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1704s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1810s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1706s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1705s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3005s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2613s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2612s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2611s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2143s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3302s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3503s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4204s.jpg HTTP/1.1" 200 4289 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4201s.jpg HTTP/1.1" 200 2441 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4101s.jpg HTTP/1.1" 200 1922 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4301s.jpg HTTP/1.1" 200 3333 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4401s.jpg HTTP/1.1" 200 2302 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4015s.jpg HTTP/1.1" 200 1237 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4402s.jpg HTTP/1.1" 200 2845 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4403s.jpg HTTP/1.1" 200 2560 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4404s.jpg HTTP/1.1" 200 2465 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4408s.jpg HTTP/1.1" 200 3508 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4409s.jpg HTTP/1.1" 200 4265 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4406s.jpg HTTP/1.1" 200 3744 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4410s.jpg HTTP/1.1" 200 3659 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4411s.jpg HTTP/1.1" 200 2096 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4414s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5010s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4413s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4412s.jpg HTTP/1.1" 200 3631 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5107s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5608s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5607s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5606s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5602s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5601s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5702s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5701s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5610s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5609s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5901s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/6101s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5903s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5902s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/6301s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/6701s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/6601s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/6801s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/8007s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/8006s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/6903s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/8002s.jpg HTTP/1.1" 200 2429 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/8008s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/9033s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7202s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7201s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7101s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7203s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7301s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7501s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7401s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/9002s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7701s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7601s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0205s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7801s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7103s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3205s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7102s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:11 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3206s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:12 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3208s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:12 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3207s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:12 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0919s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:12 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2901s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:12 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1406s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:23 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/new02.html HTTP/1.1" 200 10746 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3010s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4006s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7501s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7401s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7301s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1422s.jpg HTTP/1.1" 200 2783 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7101s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0054s.jpg HTTP/1.1" 200 2586 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0047s.jpg HTTP/1.1" 200 4641 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5014s.jpg HTTP/1.1" 200 2707 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7201s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0107s.jpg HTTP/1.1" 200 3145 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7202s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/7203s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4009s.jpg HTTP/1.1" 200 2284 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1435s.jpg HTTP/1.1" 200 2700 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1433s.jpg HTTP/1.1" 200 2680 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/1417s.jpg HTTP/1.1" 200 3097 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/4010s.jpg HTTP/1.1" 200 1689 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0114s.jpg HTTP/1.1" 200 2723 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0113s.jpg HTTP/1.1" 200 2793 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0604s.jpg HTTP/1.1" 200 2812 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:27 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/2201s.jpg HTTP/1.1" 200 2295 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/new02.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:33 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/misc01.html HTTP/1.1" 200 6063 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/9018s.jpg HTTP/1.1" 200 2921 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5009s.jpg HTTP/1.1" 200 2596 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5012s.jpg HTTP/1.1" 200 2572 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5013s.jpg HTTP/1.1" 200 3133 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/9017s.jpg HTTP/1.1" 200 2371 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/3004s.jpg HTTP/1.1" 200 2185 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5302s.jpg HTTP/1.1" 200 3606 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5303s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5305s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/5304s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:41 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0099s.jpg HTTP/1.1" 200 3302 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/misc01.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:47 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:41:55 +0000] "GET /ac0xl/www/2003-ArchHunterBooks/images/0000s.jpg HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2003-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:02 +0000] "GET /ac0xl/www/2005-museumarchives/ HTTP/1.1" 200 3418 "http://192.168.19.24/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:12 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/0-index.html HTTP/1.1" 200 1263 "http://192.168.19.24/ac0xl/www/2005-museumarchives/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html HTTP/1.1" 200 2656 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0007s.jpg HTTP/1.1" 200 16783 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0009s.jpg HTTP/1.1" 200 15150 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0010s.jpg HTTP/1.1" 200 14843 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0012s.jpg HTTP/1.1" 200 12258 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0008s.jpg HTTP/1.1" 200 17324 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0011s.jpg HTTP/1.1" 200 15860 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0013s.jpg HTTP/1.1" 200 11494 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0014s.jpg HTTP/1.1" 200 9242 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0017s.jpg HTTP/1.1" 200 14519 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0015s.jpg HTTP/1.1" 200 8328 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0019s.jpg HTTP/1.1" 200 14936 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0016s.jpg HTTP/1.1" 200 17109 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:17 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0018s.jpg HTTP/1.1" 200 12159 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:28 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0007.jpg HTTP/1.1" 200 3253979 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:40 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0008.jpg HTTP/1.1" 200 3245088 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:42:54 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0009.jpg HTTP/1.1" 200 2511903 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:43:09 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0010.jpg HTTP/1.1" 200 2566701 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:43:24 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0011.jpg HTTP/1.1" 200 2846338 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:43:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0012.jpg HTTP/1.1" 200 2764924 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:43:51 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0013.jpg HTTP/1.1" 200 2267784 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:44:02 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0014.jpg HTTP/1.1" 200 2122903 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:44:12 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0015.jpg HTTP/1.1" 200 1799020 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:44:30 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0016.jpg HTTP/1.1" 200 3567113 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:44:40 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0017.jpg HTTP/1.1" 200 2432481 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:44:57 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0018.jpg HTTP/1.1" 200 3408151 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:11 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0019.jpg HTTP/1.1" 200 3168234 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0007-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html HTTP/1.1" 200 3543 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0022s.jpg HTTP/1.1" 200 11293 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0020s.jpg HTTP/1.1" 200 13767 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0021s.jpg HTTP/1.1" 200 16357 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0025s.jpg HTTP/1.1" 200 15004 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0027s.jpg HTTP/1.1" 200 13743 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0026s.jpg HTTP/1.1" 200 16938 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0023s.jpg HTTP/1.1" 200 16046 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0024s.jpg HTTP/1.1" 200 21973 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0028s.jpg HTTP/1.1" 200 16081 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0032s.jpg HTTP/1.1" 200 14187 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0030s.jpg HTTP/1.1" 200 14175 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0033s.jpg HTTP/1.1" 200 12328 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0031s.jpg HTTP/1.1" 200 13759 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0034s.jpg HTTP/1.1" 200 13392 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0029s.jpg HTTP/1.1" 200 16225 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0038s.jpg HTTP/1.1" 200 10784 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0037s.jpg HTTP/1.1" 200 9073 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0036s.jpg HTTP/1.1" 200 9090 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0035s.jpg HTTP/1.1" 200 15104 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:35 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0039s.jpg HTTP/1.1" 200 9753 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:44 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0020.jpg HTTP/1.1" 200 2806716 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:45:56 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0021.jpg HTTP/1.1" 200 2518777 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:46:10 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0022.jpg HTTP/1.1" 200 3094926 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:46:23 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0023.jpg HTTP/1.1" 200 3192480 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:46:56 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0024.jpg HTTP/1.1" 200 3033674 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:47:08 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0025.jpg HTTP/1.1" 200 2458119 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:47:21 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0026.jpg HTTP/1.1" 200 3469228 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:47:36 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0027.jpg HTTP/1.1" 200 3852425 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:47:56 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0028.jpg HTTP/1.1" 200 4242527 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:48:08 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0029.jpg HTTP/1.1" 200 2947829 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:48:19 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0030.jpg HTTP/1.1" 200 2864319 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:48:34 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0031.jpg HTTP/1.1" 200 3540853 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:48:55 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0032.jpg HTTP/1.1" 200 3245316 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:49:14 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0033.jpg HTTP/1.1" 200 3325842 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:49:27 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0034.jpg HTTP/1.1" 200 3395002 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:49:43 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0035.jpg HTTP/1.1" 200 3834232 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:49:56 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0036.jpg HTTP/1.1" 200 2280356 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:05 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0037.jpg HTTP/1.1" 200 2084235 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:13 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0038.jpg HTTP/1.1" 200 1668438 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:28 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0039.jpg HTTP/1.1" 200 1155257 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0020-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:40 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html HTTP/1.1" 200 4051 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0040s.jpg HTTP/1.1" 200 9827 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0041s.jpg HTTP/1.1" 200 11355 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0043s.jpg HTTP/1.1" 200 10053 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0045s.jpg HTTP/1.1" 200 12110 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0046s.jpg HTTP/1.1" 200 7958 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0042s.jpg HTTP/1.1" 200 10859 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0044s.jpg HTTP/1.1" 200 12368 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0047s.jpg HTTP/1.1" 200 11169 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0049s.jpg HTTP/1.1" 200 13850 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0052s.jpg HTTP/1.1" 200 11963 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0050s.jpg HTTP/1.1" 200 16484 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0051s.jpg HTTP/1.1" 200 10820 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0048s.jpg HTTP/1.1" 200 12036 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:41 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0053s.jpg HTTP/1.1" 200 20002 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0059s.jpg HTTP/1.1" 200 15871 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0054s.jpg HTTP/1.1" 200 11058 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0055s.jpg HTTP/1.1" 200 12711 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0056s.jpg HTTP/1.1" 200 9052 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0057s.jpg HTTP/1.1" 200 13537 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0058s.jpg HTTP/1.1" 200 17777 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0063s.jpg HTTP/1.1" 200 16957 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0061s.jpg HTTP/1.1" 200 17539 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0062s.jpg HTTP/1.1" 200 15089 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:42 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0060s.jpg HTTP/1.1" 200 14282 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:50:54 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0040.jpg HTTP/1.1" 200 2336761 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:51:07 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0041.jpg HTTP/1.1" 200 2215531 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:51:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0042.jpg HTTP/1.1" 200 2138673 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:51:27 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0043.jpg HTTP/1.1" 200 2170561 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:51:38 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0044.jpg HTTP/1.1" 200 2303931 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:51:51 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0045.jpg HTTP/1.1" 200 2255860 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:52:00 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0046.jpg HTTP/1.1" 200 2273723 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:52:16 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0047.jpg HTTP/1.1" 200 1882438 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:52:25 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0048.jpg HTTP/1.1" 200 2231456 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:52:47 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0049.jpg HTTP/1.1" 200 1997671 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:52:57 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0050.jpg HTTP/1.1" 200 1798012 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:53:06 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0051.jpg HTTP/1.1" 200 2213299 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:53:15 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0052.jpg HTTP/1.1" 200 2120045 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:53:30 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0053.jpg HTTP/1.1" 200 3404347 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:53:43 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0054.jpg HTTP/1.1" 200 2826073 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:54:00 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0055.jpg HTTP/1.1" 200 3778530 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:54:10 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0056.jpg HTTP/1.1" 200 1830065 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:54:19 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0057.jpg HTTP/1.1" 200 2319590 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:54:26 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0058.jpg HTTP/1.1" 200 1992880 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:54:40 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0059.jpg HTTP/1.1" 200 2681359 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:54:53 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0060.jpg HTTP/1.1" 200 2367284 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:55:02 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0061.jpg HTTP/1.1" 200 2546290 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:55:12 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0062.jpg HTTP/1.1" 200 2537804 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:55:22 +0000] "GET /ac0xl/www/2005-museumarchives/Missile-Base/scan0063.jpg HTTP/1.1" 200 2712458 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Missile-Base/0040-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:55:41 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:55:46 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:56:03 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:56:18 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/Bastian%2c%20Tyler%202.jpg HTTP/1.1" 200 3907436 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:56:29 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/Bastian%2c%20Tyler.jpg HTTP/1.1" 200 2877911 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:56:34 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/Green%20River%20Aviation%202.jpg HTTP/1.1" 200 356669 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:56:43 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/Helper%20State%20Bank%2c%20GR%202.jpg HTTP/1.1" 200 1260466 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:56:50 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/Helper%20State%20Bank%2c%20GR.jpg HTTP/1.1" 200 1031387 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/B.Families/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:57:05 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:57:27 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/Pirate%20Vol.%201%20no.%207%20%2766.rtf HTTP/1.1" 200 6148704 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:04:59:19 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/Pirate%20vol.%201%20no.%2010%20%2766.rtf HTTP/1.1" 200 4342537 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:01:22 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/Pirate%20vol.%201%20no.%202%20%2765.rtf HTTP/1.1" 200 3591387 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GRHS.Nwsp.65-66/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:02:50 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GR.Post.Office.pre.1910.UT.map/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:02:52 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GR.Post.Office.pre.1910.UT.map/1876.wpd HTTP/1.1" 200 13238 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GR.Post.Office.pre.1910.UT.map/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:03:37 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GR.Post.Office.pre.1910.UT.map/pre%201910%20Utah%20map.jpg HTTP/1.1" 200 396783 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/GR.Post.Office.pre.1910.UT.map/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:03:50 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/Harris-Ekker-Recordings/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:04:00 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/Harris-Ekker-Recordings/Audio/ HTTP/1.1" 200 25000 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/Harris-Ekker-Recordings/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:04:07 +0000] "GET /ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/Harris-Ekker-Recordings/Audio/HarrisSchool.wma HTTP/1.1" 200 676931 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Raw-Data/0-Raw-Data/Harris-Ekker-Recordings/Audio/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:08:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html HTTP/1.1" 200 1946 "http://192.168.19.24/ac0xl/www/2005-museumarchives/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:00 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html HTTP/1.1" 200 7495 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00249s.jpg HTTP/1.1" 200 13019 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00250s.jpg HTTP/1.1" 200 7458 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00251s.jpg HTTP/1.1" 200 15348 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00254s.jpg HTTP/1.1" 200 11292 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00256s.jpg HTTP/1.1" 200 16696 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00252s.jpg HTTP/1.1" 200 11712 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00255s.jpg HTTP/1.1" 200 17486 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00253s.jpg HTTP/1.1" 200 13017 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00260s.jpg HTTP/1.1" 200 10710 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00259s.jpg HTTP/1.1" 200 14005 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00258s.jpg HTTP/1.1" 200 16414 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00262s.jpg HTTP/1.1" 200 17835 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00257s.jpg HTTP/1.1" 200 17614 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00261s.jpg HTTP/1.1" 200 18240 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00263s.jpg HTTP/1.1" 200 15554 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00264s.jpg HTTP/1.1" 200 15051 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00265s.jpg HTTP/1.1" 200 16883 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00267s.jpg HTTP/1.1" 200 15471 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00266s.jpg HTTP/1.1" 200 15009 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00268s.jpg HTTP/1.1" 200 17685 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00269s.jpg HTTP/1.1" 200 16614 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00249.jpg HTTP/1.1" 200 1355676 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:25 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00250.jpg HTTP/1.1" 200 1288246 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:32 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00251.jpg HTTP/1.1" 200 1508039 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:45 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00252.jpg HTTP/1.1" 200 1400190 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:09:53 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.15 - - [26/Mar/2022:05:09:54 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00253.jpg HTTP/1.1" 200 1518316 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:10:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00254.jpg HTTP/1.1" 200 1455765 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:10:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00255.jpg HTTP/1.1" 200 1474937 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:10:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00256.jpg HTTP/1.1" 200 1480768 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:10:28 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00257.jpg HTTP/1.1" 200 1502688 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:10:38 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00258.jpg HTTP/1.1" 200 1371619 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:10:47 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00259.jpg HTTP/1.1" 200 1440193 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:00 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00260.jpg HTTP/1.1" 200 1349622 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:11 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00261.jpg HTTP/1.1" 200 1503050 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:23 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00262.jpg HTTP/1.1" 200 1467207 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:30 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00263.jpg HTTP/1.1" 200 1502869 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:38 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00264.jpg HTTP/1.1" 200 1450081 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:46 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00265.jpg HTTP/1.1" 200 1360256 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:11:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00266.jpg HTTP/1.1" 200 1466847 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00267.jpg HTTP/1.1" 200 1485871 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:24 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00268.jpg HTTP/1.1" 200 1503144 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:31 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00269.jpg HTTP/1.1" 200 1451113 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00249-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html HTTP/1.1" 200 5053 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00271s.jpg HTTP/1.1" 200 13828 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00272s.jpg HTTP/1.1" 200 14941 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00276s.jpg HTTP/1.1" 200 13056 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00270s.jpg HTTP/1.1" 200 16770 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00278s.jpg HTTP/1.1" 200 16386 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00277s.jpg HTTP/1.1" 200 16171 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00279s.jpg HTTP/1.1" 200 18669 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00281s.jpg HTTP/1.1" 200 14692 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00273s.jpg HTTP/1.1" 200 13837 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00280s.jpg HTTP/1.1" 200 18513 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00274s.jpg HTTP/1.1" 200 12641 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00286s.jpg HTTP/1.1" 200 13863 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00285s.jpg HTTP/1.1" 200 16093 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00287s.jpg HTTP/1.1" 200 14181 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00288s.jpg HTTP/1.1" 200 15105 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00283s.jpg HTTP/1.1" 200 10501 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00275s.jpg HTTP/1.1" 200 11660 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00289s.jpg HTTP/1.1" 200 15604 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00282s.jpg HTTP/1.1" 200 14838 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00284s.jpg HTTP/1.1" 200 16895 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:48 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00270.jpg HTTP/1.1" 200 1476424 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:12:57 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00271.jpg HTTP/1.1" 200 1499714 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:13:03 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00272.jpg HTTP/1.1" 200 1402378 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:13:13 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00273.jpg HTTP/1.1" 200 1349538 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:13:22 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00274.jpg HTTP/1.1" 200 1421138 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:13:28 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00275.jpg HTTP/1.1" 200 1409304 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:13:36 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00276.jpg HTTP/1.1" 200 1465532 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:13:48 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00277.jpg HTTP/1.1" 200 1396791 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:00 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00278.jpg HTTP/1.1" 200 1484229 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00279.jpg HTTP/1.1" 200 1454568 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:19 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00280.jpg HTTP/1.1" 200 1352192 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:27 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00281.jpg HTTP/1.1" 200 1418902 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:34 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00282.jpg HTTP/1.1" 200 1439367 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00283.jpg HTTP/1.1" 200 1346085 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:14:51 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00284.jpg HTTP/1.1" 200 1446642 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00285.jpg HTTP/1.1" 200 1389186 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:08 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00286.jpg HTTP/1.1" 200 1438550 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:15 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00287.jpg HTTP/1.1" 200 1405953 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:22 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00288.jpg HTTP/1.1" 200 1361796 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:32 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00289.jpg HTTP/1.1" 200 1429479 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00270-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html HTTP/1.1" 200 5179 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00290s.jpg HTTP/1.1" 200 13171 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00293s.jpg HTTP/1.1" 200 15662 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00291s.jpg HTTP/1.1" 200 15981 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00292s.jpg HTTP/1.1" 200 17811 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00295s.jpg HTTP/1.1" 200 13327 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00294s.jpg HTTP/1.1" 200 15734 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00296s.jpg HTTP/1.1" 200 15548 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00299s.jpg HTTP/1.1" 200 13274 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00298s.jpg HTTP/1.1" 200 14025 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00297s.jpg HTTP/1.1" 200 16249 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00300s.jpg HTTP/1.1" 200 18531 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00301s.jpg HTTP/1.1" 200 15829 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00302s.jpg HTTP/1.1" 200 10772 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00303s.jpg HTTP/1.1" 200 10037 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00306s.jpg HTTP/1.1" 200 10798 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00308s.jpg HTTP/1.1" 200 14025 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00309s.jpg HTTP/1.1" 200 12220 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00304s.jpg HTTP/1.1" 200 16584 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00307s.jpg HTTP/1.1" 200 13380 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00305s.jpg HTTP/1.1" 200 14841 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:15:54 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00290.jpg HTTP/1.1" 200 1435686 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00291.jpg HTTP/1.1" 200 1471548 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00292.jpg HTTP/1.1" 200 1406311 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00293.jpg HTTP/1.1" 200 1504450 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:28 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00294.jpg HTTP/1.1" 200 1471131 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00295.jpg HTTP/1.1" 200 1479381 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:51 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00296.jpg HTTP/1.1" 200 1473364 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:16:57 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00297.jpg HTTP/1.1" 200 1410379 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00298.jpg HTTP/1.1" 200 1411021 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:17 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00299.jpg HTTP/1.1" 200 1498871 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:28 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00300.jpg HTTP/1.1" 200 1492375 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00301.jpg HTTP/1.1" 200 1442307 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00302.jpg HTTP/1.1" 200 1455909 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:51 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00303.jpg HTTP/1.1" 200 1447516 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:17:59 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00304.jpg HTTP/1.1" 200 1482685 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:18:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00305.jpg HTTP/1.1" 200 1424418 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:18:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00306.jpg HTTP/1.1" 200 1515802 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:18:26 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00307.jpg HTTP/1.1" 200 1427067 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:18:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00308.jpg HTTP/1.1" 200 1458497 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:18:55 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00309.jpg HTTP/1.1" 200 1477048 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00290-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:05 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html HTTP/1.1" 200 5003 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00314s.jpg HTTP/1.1" 200 12985 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00313s.jpg HTTP/1.1" 200 13563 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00315s.jpg HTTP/1.1" 200 13274 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00310s.jpg HTTP/1.1" 200 13450 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00311s.jpg HTTP/1.1" 200 15667 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00312s.jpg HTTP/1.1" 200 16260 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00318s.jpg HTTP/1.1" 200 12407 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00316s.jpg HTTP/1.1" 200 10760 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00320s.jpg HTTP/1.1" 200 17888 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00322s.jpg HTTP/1.1" 200 12619 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00317s.jpg HTTP/1.1" 200 14756 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00321s.jpg HTTP/1.1" 200 14025 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00323s.jpg HTTP/1.1" 200 11863 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00324s.jpg HTTP/1.1" 200 13704 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00325s.jpg HTTP/1.1" 200 16213 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00327s.jpg HTTP/1.1" 200 14607 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00326s.jpg HTTP/1.1" 200 15713 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00329s.jpg HTTP/1.1" 200 16537 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00328s.jpg HTTP/1.1" 200 15898 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00319s.jpg HTTP/1.1" 200 16641 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00310.jpg HTTP/1.1" 200 1389995 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00311.jpg HTTP/1.1" 200 1476511 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:28 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00312.jpg HTTP/1.1" 200 1475225 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:36 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00313.jpg HTTP/1.1" 200 1413943 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:45 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00314.jpg HTTP/1.1" 200 1403654 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:19:57 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00315.jpg HTTP/1.1" 200 1499893 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:20:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00316.jpg HTTP/1.1" 200 1407450 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:20:25 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00317.jpg HTTP/1.1" 200 1406168 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:20:33 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00318.jpg HTTP/1.1" 200 1476531 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:20:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00319.jpg HTTP/1.1" 200 1510532 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:20:55 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00320.jpg HTTP/1.1" 200 1486956 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:21:11 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00321.jpg HTTP/1.1" 200 1495956 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:21:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00322.jpg HTTP/1.1" 200 1474368 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:21:26 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00323.jpg HTTP/1.1" 200 1423736 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:21:33 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00324.jpg HTTP/1.1" 200 1447594 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:21:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00325.jpg HTTP/1.1" 200 1476139 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:21:52 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00326.jpg HTTP/1.1" 200 1424728 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00327.jpg HTTP/1.1" 200 1513028 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:17 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00328.jpg HTTP/1.1" 200 1416698 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:24 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00329.jpg HTTP/1.1" 200 1443681 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00310-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:34 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html HTTP/1.1" 200 5395 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00330s.jpg HTTP/1.1" 200 16219 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00331s.jpg HTTP/1.1" 200 13054 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00333s.jpg HTTP/1.1" 200 12461 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00332s.jpg HTTP/1.1" 200 13217 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00335s.jpg HTTP/1.1" 200 13797 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00334s.jpg HTTP/1.1" 200 12131 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00336s.jpg HTTP/1.1" 200 15336 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00337s.jpg HTTP/1.1" 200 16312 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00340s.jpg HTTP/1.1" 200 16895 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00338s.jpg HTTP/1.1" 200 16152 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00339s.jpg HTTP/1.1" 200 16010 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00342s.jpg HTTP/1.1" 200 14548 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00344s.jpg HTTP/1.1" 200 12640 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00346s.jpg HTTP/1.1" 200 15454 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00348s.jpg HTTP/1.1" 200 12615 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00343s.jpg HTTP/1.1" 200 14604 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00345s.jpg HTTP/1.1" 200 11115 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00347s.jpg HTTP/1.1" 200 16422 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00349s.jpg HTTP/1.1" 200 14129 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:36 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00341s.jpg HTTP/1.1" 200 18525 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:45 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00330.jpg HTTP/1.1" 200 1410694 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:22:55 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00331.jpg HTTP/1.1" 200 1518089 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:23:04 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00332.jpg HTTP/1.1" 200 1508380 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:23:12 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00333.jpg HTTP/1.1" 200 1515303 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:23:23 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00334.jpg HTTP/1.1" 200 1445548 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:23:31 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00335.jpg HTTP/1.1" 200 1514181 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:23:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00336.jpg HTTP/1.1" 200 1492805 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:24:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00337.jpg HTTP/1.1" 200 1481522 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:24:15 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00338.jpg HTTP/1.1" 200 1456497 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:24:23 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00339.jpg HTTP/1.1" 200 1509631 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:24:31 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00340.jpg HTTP/1.1" 200 1500086 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:24:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00341.jpg HTTP/1.1" 200 1450555 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:24:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00342.jpg HTTP/1.1" 200 1470643 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:25:06 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00343.jpg HTTP/1.1" 200 1390995 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:25:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00344.jpg HTTP/1.1" 200 1422041 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:25:22 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00345.jpg HTTP/1.1" 200 1428300 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:25:32 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00346.jpg HTTP/1.1" 200 1512265 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:25:47 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00347.jpg HTTP/1.1" 200 1436846 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:25:57 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00348.jpg HTTP/1.1" 200 1466534 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00349.jpg HTTP/1.1" 200 1360071 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00330-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html HTTP/1.1" 200 5789 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00350s.jpg HTTP/1.1" 200 12845 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00351s.jpg HTTP/1.1" 200 14780 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00353s.jpg HTTP/1.1" 200 13332 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00356s.jpg HTTP/1.1" 200 13891 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00354s.jpg HTTP/1.1" 200 15966 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00357s.jpg HTTP/1.1" 200 13875 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00352s.jpg HTTP/1.1" 200 13954 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00355s.jpg HTTP/1.1" 200 15470 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00358s.jpg HTTP/1.1" 200 10541 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00362s.jpg HTTP/1.1" 200 14432 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00360s.jpg HTTP/1.1" 200 12780 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00361s.jpg HTTP/1.1" 200 14935 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00363s.jpg HTTP/1.1" 200 12066 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00359s.jpg HTTP/1.1" 200 18097 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00364s.jpg HTTP/1.1" 200 11965 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:20 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00368s.jpg HTTP/1.1" 200 12223 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00369s.jpg HTTP/1.1" 200 14204 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00365s.jpg HTTP/1.1" 200 11450 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00366s.jpg HTTP/1.1" 200 15406 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00367s.jpg HTTP/1.1" 200 11929 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:28 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00350.jpg HTTP/1.1" 200 1480967 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:36 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00351.jpg HTTP/1.1" 200 1366185 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00352.jpg HTTP/1.1" 200 1447919 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:26:55 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00353.jpg HTTP/1.1" 200 1482698 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:27:02 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00354.jpg HTTP/1.1" 200 1470984 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:27:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00355.jpg HTTP/1.1" 200 1360587 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:27:25 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00356.jpg HTTP/1.1" 200 1470305 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:27:39 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00357.jpg HTTP/1.1" 200 1466173 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:27:50 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00358.jpg HTTP/1.1" 200 1480350 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:28:03 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00359.jpg HTTP/1.1" 200 1453461 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:28:26 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00360.jpg HTTP/1.1" 200 1424503 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:28:39 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00361.jpg HTTP/1.1" 200 1380886 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:28:47 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00362.jpg HTTP/1.1" 200 1407379 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:29:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00363.jpg HTTP/1.1" 200 1473571 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:29:22 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00364.jpg HTTP/1.1" 200 1422836 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:29:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00365.jpg HTTP/1.1" 200 1411410 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:29:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00366.jpg HTTP/1.1" 200 1448338 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00367.jpg HTTP/1.1" 200 1497968 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:19 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00368.jpg HTTP/1.1" 200 1371284 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:30 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00369.jpg HTTP/1.1" 200 1514360 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00350-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html HTTP/1.1" 200 4105 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00370s.jpg HTTP/1.1" 200 13027 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00373s.jpg HTTP/1.1" 200 12450 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00375s.jpg HTTP/1.1" 200 17658 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00372s.jpg HTTP/1.1" 200 13917 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00371s.jpg HTTP/1.1" 200 11496 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00374s.jpg HTTP/1.1" 200 15124 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:42 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00376s.jpg HTTP/1.1" 200 14948 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00377s.jpg HTTP/1.1" 200 11801 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00381s.jpg HTTP/1.1" 200 15559 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00382s.jpg HTTP/1.1" 200 14738 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00380s.jpg HTTP/1.1" 200 11954 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00378s.jpg HTTP/1.1" 200 16174 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00383s.jpg HTTP/1.1" 200 16502 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00379s.jpg HTTP/1.1" 200 15926 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00384s.jpg HTTP/1.1" 200 14950 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00387s.jpg HTTP/1.1" 200 15647 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00386s.jpg HTTP/1.1" 200 14873 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00385s.jpg HTTP/1.1" 200 12551 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:43 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00388s.jpg HTTP/1.1" 200 15461 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:44 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00389s.jpg HTTP/1.1" 200 12549 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:30:54 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00370.jpg HTTP/1.1" 200 1467250 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:31:01 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00371.jpg HTTP/1.1" 200 1437558 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:31:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00372.jpg HTTP/1.1" 200 1421952 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:31:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00373.jpg HTTP/1.1" 200 1516474 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:31:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00374.jpg HTTP/1.1" 200 1487802 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:31:53 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00375.jpg HTTP/1.1" 200 1393106 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:32:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00376.jpg HTTP/1.1" 200 1400773 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:32:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00377.jpg HTTP/1.1" 200 1477221 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:32:25 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00378.jpg HTTP/1.1" 200 1495622 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:32:34 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00379.jpg HTTP/1.1" 200 1441293 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:32:47 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00380.jpg HTTP/1.1" 200 1461702 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:33:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00381.jpg HTTP/1.1" 200 1467971 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:33:18 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00382.jpg HTTP/1.1" 200 1471044 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:33:26 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00383.jpg HTTP/1.1" 200 1408387 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:33:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00384.jpg HTTP/1.1" 200 1492208 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:33:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00385.jpg HTTP/1.1" 200 1358386 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:05 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00386.jpg HTTP/1.1" 200 1482664 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:11 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00387.jpg HTTP/1.1" 200 1490224 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:19 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00388.jpg HTTP/1.1" 200 1451351 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:26 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00389.jpg HTTP/1.1" 200 1405374 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00370-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:39 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html HTTP/1.1" 200 3563 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00390s.jpg HTTP/1.1" 200 14944 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00391s.jpg HTTP/1.1" 200 14026 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00394s.jpg HTTP/1.1" 200 13908 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00392s.jpg HTTP/1.1" 200 13633 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00393s.jpg HTTP/1.1" 200 13674 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00395s.jpg HTTP/1.1" 200 13638 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00397s.jpg HTTP/1.1" 200 10918 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00399s.jpg HTTP/1.1" 200 14329 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00396s.jpg HTTP/1.1" 200 15904 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00398s.jpg HTTP/1.1" 200 11382 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00401s.jpg HTTP/1.1" 200 15349 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00402s.jpg HTTP/1.1" 200 12787 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00403s.jpg HTTP/1.1" 200 15263 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:40 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00400s.jpg HTTP/1.1" 200 15631 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00408s.jpg HTTP/1.1" 200 14765 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00409s.jpg HTTP/1.1" 200 12970 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00405s.jpg HTTP/1.1" 200 15814 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00404s.jpg HTTP/1.1" 200 15837 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00407s.jpg HTTP/1.1" 200 10879 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:41 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00406s.jpg HTTP/1.1" 200 14742 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:51 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00390.jpg HTTP/1.1" 200 1489204 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:34:58 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00391.jpg HTTP/1.1" 200 1453809 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:35:08 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00392.jpg HTTP/1.1" 200 1512661 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:35:16 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00393.jpg HTTP/1.1" 200 1440609 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:35:27 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00394.jpg HTTP/1.1" 200 1482221 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:35:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00395.jpg HTTP/1.1" 200 1521499 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:35:51 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00396.jpg HTTP/1.1" 200 1460569 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:35:58 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00397.jpg HTTP/1.1" 200 1411887 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:36:09 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00398.jpg HTTP/1.1" 200 1425449 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:36:24 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00399.jpg HTTP/1.1" 200 1429729 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:36:33 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00400.jpg HTTP/1.1" 200 1493036 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:36:45 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00401.jpg HTTP/1.1" 200 1519822 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:36:55 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00402.jpg HTTP/1.1" 200 1372739 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:37:07 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00403.jpg HTTP/1.1" 200 1478723 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:37:16 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00404.jpg HTTP/1.1" 200 1457260 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:37:24 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00405.jpg HTTP/1.1" 200 1363826 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:37:35 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00406.jpg HTTP/1.1" 200 1469378 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:37:48 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00407.jpg HTTP/1.1" 200 1391773 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:37:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00408.jpg HTTP/1.1" 200 1460068 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:04 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00409.jpg HTTP/1.1" 200 1443250 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00390-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:13 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html HTTP/1.1" 200 2673 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00411s.jpg HTTP/1.1" 200 12079 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00410s.jpg HTTP/1.1" 200 15738 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00416s.jpg HTTP/1.1" 200 12610 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00415s.jpg HTTP/1.1" 200 15846 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00414s.jpg HTTP/1.1" 200 15483 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00413s.jpg HTTP/1.1" 200 15134 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00412s.jpg HTTP/1.1" 200 15638 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00417s.jpg HTTP/1.1" 200 13818 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00418s.jpg HTTP/1.1" 200 14562 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00422s.jpg HTTP/1.1" 200 13592 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00419s.jpg HTTP/1.1" 200 15735 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00420s.jpg HTTP/1.1" 200 15221 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:14 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00421s.jpg HTTP/1.1" 200 15087 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00410.jpg HTTP/1.1" 200 1483268 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:29 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00411.jpg HTTP/1.1" 200 1462169 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00412.jpg HTTP/1.1" 200 1423354 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:46 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00413.jpg HTTP/1.1" 200 1446766 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:38:56 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00414.jpg HTTP/1.1" 200 1406016 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:39:08 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00415.jpg HTTP/1.1" 200 1440870 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:39:21 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00416.jpg HTTP/1.1" 200 1411480 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:39:31 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00417.jpg HTTP/1.1" 200 1376237 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:39:37 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00418.jpg HTTP/1.1" 200 1429825 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:39:48 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00419.jpg HTTP/1.1" 200 1465232 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:39:57 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00420.jpg HTTP/1.1" 200 1448240 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:40:10 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00421.jpg HTTP/1.1" 200 1484926 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:40:19 +0000] "GET /ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/dsc00422.jpg HTTP/1.1" 200 1526528 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Elgin-Cemetery/2004-11-15/00410-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:40 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/0-index.html HTTP/1.1" 200 5263 "http://192.168.19.24/ac0xl/www/2005-museumarchives/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html HTTP/1.1" 200 3818 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/0-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0001s.jpg HTTP/1.1" 200 14519 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0003s.jpg HTTP/1.1" 200 15601 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0009s.jpg HTTP/1.1" 200 16768 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0005s.jpg HTTP/1.1" 200 13993 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0006s.jpg HTTP/1.1" 200 14876 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0011s.jpg HTTP/1.1" 200 13948 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0007s.jpg HTTP/1.1" 200 16690 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0016s.jpg HTTP/1.1" 200 13331 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0020s.jpg HTTP/1.1" 200 7332 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0017s.jpg HTTP/1.1" 200 14165 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0022s.jpg HTTP/1.1" 200 9951 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0023s.jpg HTTP/1.1" 200 11999 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0021s.jpg HTTP/1.1" 200 9762 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0024s.jpg HTTP/1.1" 200 9266 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0029s.mov HTTP/1.1" 404 0 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0028s.jpg HTTP/1.1" 200 15167 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0026s.jpg HTTP/1.1" 200 10460 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0025s.jpg HTTP/1.1" 200 11840 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:43 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0027s.jpg HTTP/1.1" 200 16466 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:44 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/100_0081s.jpg HTTP/1.1" 200 10296 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:47 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0001.jpg HTTP/1.1" 200 664820 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:55 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0003.jpg HTTP/1.1" 200 592916 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:44:59 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0005.jpg HTTP/1.1" 200 558005 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:07 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0006.jpg HTTP/1.1" 200 529836 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:16 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0007.jpg HTTP/1.1" 200 589124 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:25 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0009.jpg HTTP/1.1" 200 637149 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:33 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0011.jpg HTTP/1.1" 200 593757 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:41 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0016.jpg HTTP/1.1" 200 546025 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:48 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0017.jpg HTTP/1.1" 200 594868 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:45:56 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0020.jpg HTTP/1.1" 200 461981 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:46:05 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0021.jpg HTTP/1.1" 200 958008 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:46:10 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0022.jpg HTTP/1.1" 200 895585 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:46:18 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0023.jpg HTTP/1.1" 200 982665 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:46:23 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0024.jpg HTTP/1.1" 200 576618 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:46:40 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0025.jpg HTTP/1.1" 200 823217 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:46:54 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0026.jpg HTTP/1.1" 200 838411 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:00 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0027.jpg HTTP/1.1" 200 702142 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:09 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/000_0028.jpg HTTP/1.1" 200 714790 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:16 +0000] "GET /ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/100_0081.jpg HTTP/1.1" 200 602975 "http://192.168.19.24/ac0xl/www/2005-museumarchives/Charlotte/2005-05-22/0001-index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:46 +0000] "GET /ac0xl/www/Slack8Book_files/image001.gif HTTP/1.1" 200 1117 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:47 +0000] "GET /ac0xl/www/Slack8Book_files/image002.gif HTTP/1.1" 200 37491 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:47 +0000] "GET /ac0xl/www/Slack8Book_files/image005.gif HTTP/1.1" 200 18359 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:47 +0000] "GET /ac0xl/www/Slack8Book_files/image003.gif HTTP/1.1" 200 34396 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:47 +0000] "GET /ac0xl/www/Slack8Book_files/image004.gif HTTP/1.1" 200 25417 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:47 +0000] "GET /ac0xl/www/Slack8Book_files/image017.gif HTTP/1.1" 200 42380 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:47 +0000] "GET /ac0xl/www/Slack8Book_files/image006.gif HTTP/1.1" 200 45191 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image009.gif HTTP/1.1" 200 34650 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image008.gif HTTP/1.1" 200 47348 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image010.gif HTTP/1.1" 200 33567 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image012.gif HTTP/1.1" 200 49402 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image011.gif HTTP/1.1" 200 21253 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image015.gif HTTP/1.1" 200 37313 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:48 +0000] "GET /ac0xl/www/Slack8Book_files/image013.gif HTTP/1.1" 200 25962 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:49 +0000] "GET /ac0xl/www/Slack8Book_files/image016.gif HTTP/1.1" 200 39321 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:49 +0000] "GET /ac0xl/www/Slack8Book_files/image018.gif HTTP/1.1" 200 19426 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:50 +0000] "GET /ac0xl/www/Slack8Book_files/image007.gif HTTP/1.1" 200 54201 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:50 +0000] "GET /ac0xl/www/Slack8Book_files/image019.gif HTTP/1.1" 200 51178 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:50 +0000] "GET /ac0xl/www/Slack8Book_files/image021.gif HTTP/1.1" 200 26866 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:50 +0000] "GET /ac0xl/www/Slack8Book_files/image020.gif HTTP/1.1" 200 33530 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:50 +0000] "GET /ac0xl/www/Slack8Book_files/image024.gif HTTP/1.1" 200 32809 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:51 +0000] "GET /ac0xl/www/Slack8Book_files/image025.gif HTTP/1.1" 200 33370 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:51 +0000] "GET /ac0xl/www/Slack8Book_files/image026.gif HTTP/1.1" 200 16966 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:52 +0000] "GET /ac0xl/www/Slack8Book_files/image027.gif HTTP/1.1" 200 22924 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:52 +0000] "GET /ac0xl/www/Slack8Book_files/image028.gif HTTP/1.1" 200 36734 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:52 +0000] "GET /ac0xl/www/Slack8Book_files/image029.gif HTTP/1.1" 200 26371 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:53 +0000] "GET /ac0xl/www/Slack8Book_files/image031.gif HTTP/1.1" 200 56541 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:53 +0000] "GET /ac0xl/www/Slack8Book_files/image030.gif HTTP/1.1" 200 50108 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:53 +0000] "GET /ac0xl/www/Slack8Book_files/image032.gif HTTP/1.1" 200 55285 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:53 +0000] "GET /ac0xl/www/Slack8Book_files/image033.gif HTTP/1.1" 200 20398 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:54 +0000] "GET /ac0xl/www/Slack8Book_files/image036.gif HTTP/1.1" 200 41578 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:54 +0000] "GET /ac0xl/www/Slack8Book_files/image034.gif HTTP/1.1" 200 62844 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:54 +0000] "GET /ac0xl/www/Slack8Book_files/image035.gif HTTP/1.1" 200 58017 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:55 +0000] "GET /ac0xl/www/Slack8Book_files/image037.gif HTTP/1.1" 200 54215 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:55 +0000] "GET /ac0xl/www/Slack8Book_files/image038.gif HTTP/1.1" 200 66490 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:55 +0000] "GET /ac0xl/www/Slack8Book_files/image014.gif HTTP/1.1" 200 25701 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:55 +0000] "GET /ac0xl/www/Slack8Book_files/image040.gif HTTP/1.1" 200 50580 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:56 +0000] "GET /ac0xl/www/Slack8Book_files/image041.gif HTTP/1.1" 200 49801 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:56 +0000] "GET /ac0xl/www/Slack8Book_files/image042.gif HTTP/1.1" 200 122352 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:56 +0000] "GET /ac0xl/www/Slack8Book_files/image022.gif HTTP/1.1" 200 15155 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:56 +0000] "GET /ac0xl/www/Slack8Book_files/image023.gif HTTP/1.1" 200 28245 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:57 +0000] "GET /ac0xl/www/Slack8Book_files/image043.gif HTTP/1.1" 200 42608 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:57 +0000] "GET /ac0xl/www/Slack8Book_files/image039.gif HTTP/1.1" 200 38304 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:57 +0000] "GET /ac0xl/www/Slack8Book_files/image045.gif HTTP/1.1" 200 55111 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:58 +0000] "GET /ac0xl/www/Slack8Book_files/image046.gif HTTP/1.1" 200 73292 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:58 +0000] "GET /ac0xl/www/Slack8Book_files/image047.gif HTTP/1.1" 200 1110 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:58 +0000] "GET /ac0xl/www/Slack8Book_files/image048.gif HTTP/1.1" 200 1160 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:58 +0000] "GET /ac0xl/www/Slack8Book_files/image044.gif HTTP/1.1" 200 54812 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:58 +0000] "GET /ac0xl/www/Slack8Book_files/image050.gif HTTP/1.1" 200 34231 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:58 +0000] "GET /ac0xl/www/Slack8Book_files/image049.gif HTTP/1.1" 200 39792 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:59 +0000] "GET /ac0xl/www/Slack8Book_files/image053.gif HTTP/1.1" 200 3871 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:59 +0000] "GET /ac0xl/www/Slack8Book_files/image054.gif HTTP/1.1" 200 11549 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:59 +0000] "GET /ac0xl/www/Slack8Book_files/image051.gif HTTP/1.1" 200 19046 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:59 +0000] "GET /ac0xl/www/Slack8Book_files/image052.gif HTTP/1.1" 200 94736 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:47:59 +0000] "GET /ac0xl/www/Slack8Book_files/image055.gif HTTP/1.1" 200 67030 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:48:00 +0000] "GET /ac0xl/www/Slack8Book_files/image056.gif HTTP/1.1" 200 28875 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:48:00 +0000] "GET /ac0xl/www/Slack8Book_files/image057.gif HTTP/1.1" 200 12121 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:48:00 +0000] "GET /ac0xl/www/Slack8Book.html HTTP/1.1" 200 868816 "http://192.168.19.24/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:48:00 +0000] "GET /ac0xl/www/Slack8Book_files/image058.gif HTTP/1.1" 200 1052 "http://192.168.19.24/ac0xl/www/Slack8Book.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:51:45 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" Changed to videos/. Did a "datelog" before I started a video. "200" at end of first pull, "206" at end of next pulls. 192.168.19.15 - - [26/Mar/2022:05:51:51 +0000] "GET /videos/ HTTP/1.1" 200 25000 "http://192.168.19.24/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:51:54 +0000] "GET /videos/Justinian-Deception.html HTTP/1.1" 200 834 "http://192.168.19.24/videos/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:52:41 +0000] "GET /videos/JustinianDeception/ HTTP/1.1" 200 25000 "http://192.168.19.24/videos/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:52:47 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.19.15 - - [26/Mar/2022:05:52:47 +0000] "GET /videos/JustinianDeception/Justinian-Deception/ HTTP/1.1" 200 25000 "http://192.168.19.24/videos/JustinianDeception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:05:52:50 +0000] "GET /videos/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com/ HTTP/1.1" 200 226143 "http://192.168.19.24/videos/JustinianDeception/Justinian-Deception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:06:33:45 +0000] "GET /videos/JustinianDeception/ HTTP/1.1" 200 25000 "http://192.168.19.24/videos/JustinianDeception/Justinian-Deception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 5825 ? 00:06:43 thttpd Sat 26 Mar 2022 12:34:47 AM MDT 00:34:48 up 14:01, 2 users, load average: 1.15, 1.02, 0.99 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 29:15m 0.82s 0.66s -bash pi tty7 :0 Thu19 29:14m 52:29 4.46s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.15 - - [26/Mar/2022:06:34:50 +0000] "GET /videos/JustinianDeception/01%20-%20THESECRETOFBANKING%20The%20Secret%20of%20banking_480p.mp4 HTTP/1.1" 200 302407 "http://192.168.19.24/videos/JustinianDeception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:06:34:52 +0000] "GET /videos/JustinianDeception/01%20-%20THESECRETOFBANKING%20The%20Secret%20of%20banking_480p.mp4 HTTP/1.1" 206 208364 "http://192.168.19.24/videos/JustinianDeception/01%20-%20THESECRETOFBANKING%20The%20Secret%20of%20banking_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:06:37:44 +0000] "GET /videos/JustinianDeception/01%20-%20THESECRETOFBANKING%20The%20Secret%20of%20banking_480p.mp4 HTTP/1.1" 206 33009132 "http://192.168.19.24/videos/JustinianDeception/01%20-%20THESECRETOFBANKING%20The%20Secret%20of%20banking_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 5825 ? 00:07:04 thttpd Sat 26 Mar 2022 12:41:18 AM MDT 00:41:19 up 14:08, 2 users, load average: 0.55, 0.75, 0.88 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 29:21m 0.82s 0.66s -bash pi tty7 :0 Thu19 29:21m 52:32 4.46s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.15 - - [26/Mar/2022:06:41:22 +0000] "GET /videos/JustinianDeception/02%20-%20ILLUSION%20OF%20POWER_480p.mp4 HTTP/1.1" 200 283582 "http://192.168.19.24/videos/JustinianDeception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:06:41:25 +0000] "GET /videos/JustinianDeception/02%20-%20ILLUSION%20OF%20POWER_480p.mp4 HTTP/1.1" 206 908082 "http://192.168.19.24/videos/JustinianDeception/02%20-%20ILLUSION%20OF%20POWER_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:06:58:21 +0000] "GET /videos/JustinianDeception/02%20-%20ILLUSION%20OF%20POWER_480p.mp4 HTTP/1.1" 206 162257714 "http://192.168.19.24/videos/JustinianDeception/02%20-%20ILLUSION%20OF%20POWER_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 5825 ? 00:08:07 thttpd Sat 26 Mar 2022 01:00:29 AM MDT 01:00:29 up 14:27, 2 users, load average: 0.88, 1.13, 1.07 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 29:40m 0.82s 0.66s -bash pi tty7 :0 Thu19 29:40m 52:40 4.46s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.15 - - [26/Mar/2022:07:00:31 +0000] "GET /videos/JustinianDeception/03%20-%20PROCLAMATION%20License%20To%20Be%20Killed_480p.mp4 HTTP/1.1" 200 167742 "http://192.168.19.24/videos/JustinianDeception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:07:00:34 +0000] "GET /videos/JustinianDeception/03%20-%20PROCLAMATION%20License%20To%20Be%20Killed_480p.mp4 HTTP/1.1" 206 972662 "http://192.168.19.24/videos/JustinianDeception/03%20-%20PROCLAMATION%20License%20To%20Be%20Killed_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.19.15 - - [26/Mar/2022:07:18:22 +0000] "GET /videos/JustinianDeception/03%20-%20PROCLAMATION%20License%20To%20Be%20Killed_480p.mp4 HTTP/1.1" 206 160257910 "http://192.168.19.24/videos/JustinianDeception/03%20-%20PROCLAMATION%20License%20To%20Be%20Killed_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 5825 ? 00:09:14 thttpd Sat 26 Mar 2022 01:21:01 AM MDT 01:21:01 up 14:47, 2 users, load average: 1.14, 1.03, 1.01 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 30:01m 0.82s 0.66s -bash pi tty7 :0 Thu19 30:00m 52:49 4.46s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi Sat 26 Mar 2022 06:25:05 AM MDT log rotate end, thttpd pid = PID TTY TIME CMD 5825 ? 00:23:52 thttpd 06:25:05 up 19:52, 2 users, load average: 1.15, 0.95, 0.93 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 35:05m 0.82s 0.66s -bash pi tty7 :0 Thu19 35:05m 54:50 4.51s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cat *log Sat 26 Mar 2022 06:25:05 AM MDT old log rotate end, old thttpd pid = PID TTY TIME CMD 5825 ? 00:23:52 thttpd old dead-thttpd pid = 5825 Sat 26 Mar 2022 06:25:06 AM MDT 06:25:07 up 19:52, 2 users, load average: 1.30, 0.99, 0.95 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 35:05m 0.82s 0.66s -bash pi tty7 :0 Thu19 35:05m 54:50 4.51s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi log rotate new, thttpd pid = PID TTY TIME CMD 6319 ? 00:00:00 thttpd 06:25:21 up 19:52, 2 users, load average: 1.31, 1.01, 0.95 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 35:05m 0.82s 0.66s -bash pi tty7 :0 Thu19 35:05m 54:50 4.51s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.19.15 - - [26/Mar/2022:23:13:22 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.19.24/videos/JustinianDeception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 6319 ? 00:33:07 thttpd Sat 26 Mar 2022 05:47:18 PM MDT 17:47:18 up 1 day, 7:14, 2 users, load average: 0.56, 0.52, 0.42 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 46:27m 0.82s 0.66s -bash pi tty7 :0 Thu19 46:27m 59:22 4.52s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.1.139 = Raspberry Pi 400 eth0 LAN on 10/100/1000 WD My Net N750 router. 192.168.1.74 = Raspberry Pi Model B Plus, Rev. 1.2, RAM 512, code: 0010, cpu part 0xb76, 700 MHz, eth0 LAN 10/100 ? 192.168.1.139 - - [26/Mar/2022:23:52:47 +0000] "GET / HTTP/1.1" 200 25000 "" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:52:48 +0000] "GET /favicon.ico HTTP/1.1" 200 533 "http://192.168.1.74/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:00 +0000] "GET /ac0xl/ HTTP/1.1" 200 25000 "http://192.168.1.74/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:02 +0000] "GET /ac0xl/www/ HTTP/1.1" 200 25000 "http://192.168.1.74/ac0xl/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:10 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/ HTTP/1.1" 200 3422 "http://192.168.1.74/ac0xl/www/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:10 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/photo-03.jpg HTTP/1.1" 200 32660 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" /ac0xl/www/2001-ArchHunterBooks/links.html 192.168.1.139 - - [26/Mar/2022:23:53:16 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/links.html HTTP/1.1" 200 2255 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:16 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/images/photo-01.jpg HTTP/1.1" 200 20441 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/links.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" /ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html (small jpgs). 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html HTTP/1.1" 200 15833 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/links.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/01strans.jpg HTTP/1.1" 200 3301 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/02sphoto.jpg HTTP/1.1" 200 2018 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/05strans.jpg HTTP/1.1" 200 2531 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/04strans.jpg HTTP/1.1" 200 2068 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/03sphoto.jpg HTTP/1.1" 200 2125 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/06strans.jpg HTTP/1.1" 200 2372 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/07strans.jpg HTTP/1.1" 200 3105 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/08strans.jpg HTTP/1.1" 200 3441 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/09sphoto.jpg HTTP/1.1" 200 2462 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/10strans.jpg HTTP/1.1" 200 3230 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/13strans.jpg HTTP/1.1" 200 2709 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/11strans.jpg HTTP/1.1" 200 2538 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/12strans.jpg HTTP/1.1" 200 2163 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/14strans.jpg HTTP/1.1" 200 2752 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/15strans.jpg HTTP/1.1" 200 2616 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/16strans.jpg HTTP/1.1" 200 3038 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/19strans.jpg HTTP/1.1" 200 2844 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/20strans.jpg HTTP/1.1" 200 2259 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/18strans.jpg HTTP/1.1" 200 2197 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/17strans.jpg HTTP/1.1" 200 3029 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/21strans.jpg HTTP/1.1" 200 2227 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/23strans.jpg HTTP/1.1" 200 2776 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/24strans.jpg HTTP/1.1" 200 2904 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/22strans.jpg HTTP/1.1" 200 1800 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/25strans.jpg HTTP/1.1" 200 2056 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/26strans.jpg HTTP/1.1" 200 3120 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/30strans.jpg HTTP/1.1" 200 2648 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/29strans.jpg HTTP/1.1" 200 2336 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/28strans.jpg HTTP/1.1" 200 2369 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/27strans.jpg HTTP/1.1" 200 3133 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/31sphoto.jpg HTTP/1.1" 200 2123 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/35strans.jpg HTTP/1.1" 200 2962 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/34strans.jpg HTTP/1.1" 200 2736 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/32strans.jpg HTTP/1.1" 200 2735 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/36sphoto.jpg HTTP/1.1" 200 1911 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/33strans.jpg HTTP/1.1" 200 2092 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/37strans.jpg HTTP/1.1" 200 3016 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/38sphoto.jpg HTTP/1.1" 200 3107 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/39sphoto.jpg HTTP/1.1" 200 2891 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/42strans.jpg HTTP/1.1" 200 3167 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/41strans.jpg HTTP/1.1" 200 3289 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/40strans.jpg HTTP/1.1" 200 2600 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/43strans.jpg HTTP/1.1" 200 2752 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/44strans.jpg HTTP/1.1" 200 3021 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/45sphoto.jpg HTTP/1.1" 200 2168 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/46sphoto.jpg HTTP/1.1" 200 2030 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/47strans.jpg HTTP/1.1" 200 2526 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/48sphoto.jpg HTTP/1.1" 200 1976 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/49strans.jpg HTTP/1.1" 200 3338 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/50strans.jpg HTTP/1.1" 200 1751 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/51strans.jpg HTTP/1.1" 200 2509 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/52sphoto.jpg HTTP/1.1" 200 1831 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/53strans.jpg HTTP/1.1" 200 3425 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/54strans.jpg HTTP/1.1" 200 3562 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/57strans.jpg HTTP/1.1" 200 2763 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/58strans.jpg HTTP/1.1" 200 2548 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/55strans.jpg HTTP/1.1" 200 2965 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/56sslide.jpg HTTP/1.1" 200 1964 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 167,758 bytes in less than 1 second, for 59 transfers completed.. 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/59strans.jpg HTTP/1.1" 200 2381 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/60strans.jpg HTTP/1.1" 200 3041 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/61strans.jpg HTTP/1.1" 200 2554 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/63strans.jpg HTTP/1.1" 200 2393 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/62strans.jpg HTTP/1.1" 200 2608 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/64sphoto.jpg HTTP/1.1" 200 1761 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/65strans.jpg HTTP/1.1" 200 2576 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/67sphoto.jpg HTTP/1.1" 200 2695 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/66strans.jpg HTTP/1.1" 200 2742 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/68strans.jpg HTTP/1.1" 200 2509 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/69strans.jpg HTTP/1.1" 200 1945 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/70strans.jpg HTTP/1.1" 200 2513 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/71strans.jpg HTTP/1.1" 200 2085 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/72strans.jpg HTTP/1.1" 200 2658 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/73strans.jpg HTTP/1.1" 200 2415 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/75strans.jpg HTTP/1.1" 200 3168 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/74strans.jpg HTTP/1.1" 200 1903 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/76strans.jpg HTTP/1.1" 200 3647 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/77strans.jpg HTTP/1.1" 200 3015 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/78strans.jpg HTTP/1.1" 200 2418 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 51,027 Bytes in less than 1 second due to end of file and no more small jpgs. 2001-ArchHunterBooks/SJSlides (large jpgs). Click to open, click back to close, not very fast on the clicking! 192.168.1.139 - - [26/Mar/2022:23:53:26 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/01-trans.jpg HTTP/1.1" 200 56745 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:31 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/02-photo.jpg HTTP/1.1" 200 37304 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:34 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/03-photo.jpg HTTP/1.1" 200 25391 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:38 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/04-trans.jpg HTTP/1.1" 200 31137 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:53:47 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/02-photo.jpg HTTP/1.1" 200 37304 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/05-trans.jpg HTTP/1.1" 200 37257 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:07 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/06-trans.jpg HTTP/1.1" 200 29335 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:15 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/07-trans.jpg HTTP/1.1" 200 51876 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/08-trans.jpg HTTP/1.1" 200 52512 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:25 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/09-photo.jpg HTTP/1.1" 200 33895 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:30 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/10-trans.jpg HTTP/1.1" 200 51180 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:34 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/11-trans.jpg HTTP/1.1" 200 37723 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:37 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/12-trans.jpg HTTP/1.1" 200 24687 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:41 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/13-trans.jpg HTTP/1.1" 200 40822 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:48 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/14-trans.jpg HTTP/1.1" 200 43214 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:51 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/15-trans.jpg HTTP/1.1" 200 45162 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:55 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/16-trans.jpg HTTP/1.1" 200 50357 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:54:59 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/17-trans.jpg HTTP/1.1" 200 40803 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:02 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/18-trans.jpg HTTP/1.1" 200 33061 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/19-trans.jpg HTTP/1.1" 200 38464 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:10 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/20-trans.jpg HTTP/1.1" 200 33671 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:13 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/21-trans.jpg HTTP/1.1" 200 29425 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:15 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/22-trans.jpg HTTP/1.1" 200 16151 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:18 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/23-trans.jpg HTTP/1.1" 200 35119 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/24-trans.jpg HTTP/1.1" 200 41757 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:24 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/25-trans.jpg HTTP/1.1" 200 27244 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:31 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/26-trans.jpg HTTP/1.1" 200 48677 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:36 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/28-trans.jpg HTTP/1.1" 200 36385 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:40 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/27-trans.jpg HTTP/1.1" 200 43956 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:48 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/29-trans.jpg HTTP/1.1" 200 32917 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:55:51 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/30-trans.jpg HTTP/1.1" 200 41726 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:01 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/31-photo.jpg HTTP/1.1" 200 27664 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/32-trans.jpg HTTP/1.1" 200 37564 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:09 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/33-trans.jpg HTTP/1.1" 200 28212 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:12 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/34-trans.jpg HTTP/1.1" 200 39278 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:16 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/35-trans.jpg HTTP/1.1" 200 43930 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:27 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/36-photo.jpg HTTP/1.1" 200 25748 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:30 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/37-trans.jpg HTTP/1.1" 200 47174 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:34 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/38-photo.jpg HTTP/1.1" 200 53579 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:37 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/39-photo.jpg HTTP/1.1" 200 38756 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:40 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/40-trans.jpg HTTP/1.1" 200 36075 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:50 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/41-trans.jpg HTTP/1.1" 200 46288 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:53 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/42-trans.jpg HTTP/1.1" 200 44654 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:56:56 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/43-trans.jpg HTTP/1.1" 200 45573 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:00 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/44-trans.jpg HTTP/1.1" 200 42073 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:04 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/45-photo.jpg HTTP/1.1" 200 31646 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:09 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/46-photo.jpg HTTP/1.1" 200 43177 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:16 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/47-trans.jpg HTTP/1.1" 200 35455 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:18 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/48-photo.jpg HTTP/1.1" 200 26828 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:22 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/49-trans.jpg HTTP/1.1" 200 52424 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:25 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/50-trans.jpg HTTP/1.1" 200 21762 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:29 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/51-trans.jpg HTTP/1.1" 200 37027 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:32 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/52-photo.jpg HTTP/1.1" 200 28261 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:37 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/53-trans.jpg HTTP/1.1" 200 56428 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:40 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/54-trans.jpg HTTP/1.1" 200 53545 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:45 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/55-trans.jpg HTTP/1.1" 200 53322 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:49 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/56-slide.jpg HTTP/1.1" 200 40860 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:52 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/57-trans.jpg HTTP/1.1" 200 37189 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:57:55 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/58-trans.jpg HTTP/1.1" 200 34058 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:05 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/59-trans.jpg HTTP/1.1" 200 34984 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:08 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/60-trans.jpg HTTP/1.1" 200 48010 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:15 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/61-trans.jpg HTTP/1.1" 200 38501 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:20 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/62-trans.jpg HTTP/1.1" 200 39610 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:23 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/63-trans.jpg HTTP/1.1" 200 35265 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:28 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/64-photo.jpg HTTP/1.1" 200 21640 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:31 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/65-trans.jpg HTTP/1.1" 200 33892 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:35 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/66-trans.jpg HTTP/1.1" 200 43115 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:39 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/67-photo.jpg HTTP/1.1" 200 34356 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:42 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/68-trans.jpg HTTP/1.1" 200 35699 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:48 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/69-trans.jpg HTTP/1.1" 200 25458 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:55 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/70-trans.jpg HTTP/1.1" 200 36645 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:58:57 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/71-trans.jpg HTTP/1.1" 200 27039 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:00 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/72-trans.jpg HTTP/1.1" 200 41211 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:03 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/73-trans.jpg HTTP/1.1" 200 35347 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:06 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/74-trans.jpg HTTP/1.1" 200 21787 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:13 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/75-trans.jpg HTTP/1.1" 200 53193 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:19 +0000] "UNKNOWN UNKNOWN" 400 0 "" "" 192.168.1.139 - - [26/Mar/2022:23:59:21 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/76-trans.jpg HTTP/1.1" 200 59469 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:24 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/77-trans.jpg HTTP/1.1" 200 44513 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [26/Mar/2022:23:59:27 +0000] "GET /ac0xl/www/2001-ArchHunterBooks/SJSlides/78-trans.jpg HTTP/1.1" 200 32621 "http://192.168.1.74/ac0xl/www/2001-ArchHunterBooks/SJSlides/index.html" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" Changed to videos/ - datelog before start of video, "200" end of first pull, "206" on end of following pulls. 192.168.1.139 - - [27/Mar/2022:00:00:06 +0000] "GET /videos/ HTTP/1.1" 200 25000 "http://192.168.1.74/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [27/Mar/2022:00:00:12 +0000] "GET /videos/Justinian-Deception.html HTTP/1.1" 200 834 "http://192.168.1.74/videos/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [27/Mar/2022:00:00:17 +0000] "GET /videos/JustinianDeception/ HTTP/1.1" 200 25000 "http://192.168.1.74/videos/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 6319 ? 00:33:47 thttpd Sat 26 Mar 2022 06:00:48 PM MDT 18:00:48 up 1 day, 7:27, 2 users, load average: 0.05, 0.29, 0.37 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 46:41m 0.82s 0.66s -bash pi tty7 :0 Thu19 46:40m 59:36 4.59s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi 192.168.1.139 - - [27/Mar/2022:00:00:50 +0000] "GET /videos/JustinianDeception/05%20-%20THELEDGERBAIT_480p.mp4 HTTP/1.1" 200 2601831 "http://192.168.1.74/videos/JustinianDeception/" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [27/Mar/2022:00:00:50 +0000] "GET /videos/JustinianDeception/05%20-%20THELEDGERBAIT_480p.mp4 HTTP/1.1" 206 474862 "http://192.168.1.74/videos/JustinianDeception/05%20-%20THELEDGERBAIT_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" 192.168.1.139 - - [27/Mar/2022:00:08:20 +0000] "GET /videos/JustinianDeception/05%20-%20THELEDGERBAIT_480p.mp4 HTTP/1.1" 206 86687470 "http://192.168.1.74/videos/JustinianDeception/05%20-%20THELEDGERBAIT_480p.mp4" "Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Firefox/91.0" datelog, thttpd pid = PID TTY TIME CMD 6319 ? 00:34:24 thttpd Sat 26 Mar 2022 06:11:01 PM MDT 18:11:02 up 1 day, 7:37, 2 users, load average: 0.17, 0.21, 0.29 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - Thu19 46:51m 0.82s 0.66s -bash pi tty7 :0 Thu19 46:50m 59:43 4.59s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi datelog, thttpd pid = PID TTY TIME CMD 373 ? 00:00:05 thttpd Sat 26 Mar 2022 06:28:56 PM MDT 18:28:56 up 3 min, 2 users, load average: 2.78, 2.18, 0.95 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT pi tty1 - 18:26 3:53 0.84s 0.68s -bash pi tty7 :0 18:26 3:37 6.87s 0.86s /usr/bin/lxsession -s LXDE-pi -e LXDE -w openbox-lxde-pi pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ps -e PID TTY TIME CMD 1 ? 00:00:12 systemd 2 ? 00:00:00 kthreadd 5 ? 00:00:02 kworker/u2:0-events_unbound 6 ? 00:00:00 mm_percpu_wq 7 ? 00:00:00 rcu_tasks_rude_ 8 ? 00:00:00 rcu_tasks_trace 9 ? 00:00:08 ksoftirqd/0 10 ? 00:00:00 kdevtmpfs 11 ? 00:00:00 netns 13 ? 00:00:00 kauditd 15 ? 00:00:00 khungtaskd 16 ? 00:00:00 oom_reaper 17 ? 00:00:00 writeback 18 ? 00:00:04 kcompactd0 33 ? 00:00:00 kblockd 34 ? 00:00:00 blkcg_punt_bio 35 ? 00:00:00 watchdogd 36 ? 00:00:00 rpciod 37 ? 00:00:00 kworker/u3:0 38 ? 00:00:00 xprtiod 39 ? 00:00:08 kswapd0 40 ? 00:00:00 nfsiod 41 ? 00:00:00 iscsi_eh 42 ? 00:00:00 iscsi_destroy 43 ? 00:00:00 dwc_otg 44 ? 00:00:00 DWC Notificatio 45 ? 00:00:00 vchiq-slot/0 46 ? 00:00:00 vchiq-recy/0 47 ? 00:00:00 vchiq-sync/0 49 ? 00:00:00 zswap-shrink 52 ? 00:00:00 mmc_complete 54 ? 00:00:00 jbd2/mmcblk0p2- 55 ? 00:00:00 ext4-rsv-conver 59 ? 00:00:00 ipv6_addrconf 99 ? 00:00:03 systemd-journal 118 ? 00:00:02 systemd-udevd 135 ? 00:00:00 vchiq-keep/0 136 ? 00:00:00 SMIO 146 ? 00:00:00 mmal-vchiq 147 ? 00:00:00 mmal-vchiq 148 ? 00:00:00 mmal-vchiq 151 ? 00:00:00 mmal-vchiq 152 ? 00:00:00 mmal-vchiq 154 ? 00:00:00 mmal-vchiq 192 ? 00:00:00 kworker/u2:2-events_unbound 243 ? 00:00:00 avahi-daemon 244 ? 00:00:00 cron 245 ? 00:00:02 dbus-daemon 246 ? 00:00:00 avahi-daemon 256 ? 00:00:01 polkitd 281 ? 00:00:00 rsyslogd 300 ? 00:00:01 systemd-logind 304 ? 00:00:01 thd 309 ? 00:00:01 udisksd 314 ? 00:00:00 wpa_supplicant 340 ? 00:00:00 cfg80211 341 ? 00:00:00 dhcpcd 356 ? 00:00:01 ModemManager 358 ? 00:00:00 cupsd 359 ? 00:00:00 rngd 363 ? 00:00:00 epmd 372 ? 00:00:00 thttpd_wrapper 373 ? 00:01:38 thttpd 376 ? 00:00:00 lightdm 379 ? 00:00:00 cups-browsed 393 tty1 00:00:00 login 394 ? 00:00:00 agetty 454 ? 00:00:01 systemd 471 ? 00:00:00 (sd-pam) 537 ? 00:00:01 systemd-timesyn 544 ? 00:00:00 pipewire 545 ? 00:00:03 pulseaudio 548 ? 00:00:00 rtkit-daemon 549 tty1 00:00:00 bash 550 tty7 00:37:16 Xorg 554 ? 00:00:00 cec-vc4 555 ? 00:00:00 irq/64-vc4 hdmi 556 ? 00:00:00 card0-crtc0 557 ? 00:00:00 card0-crtc1 558 ? 00:00:00 card0-crtc2 559 ? 00:00:00 card0-crtc3 568 ? 00:00:00 dbus-daemon 572 ? 00:00:00 pipewire-media- 606 ? 00:00:00 lightdm 610 ? 00:00:00 lxsession 658 ? 00:00:00 ssh-agent 685 ? 00:00:00 gvfsd 690 ? 00:00:00 gvfsd-fuse 700 ? 00:00:03 openbox 701 ? 00:00:00 lxpolkit 704 ? 00:08:26 lxpanel 706 ? 00:00:13 pcmanfm 713 ? 00:00:07 applet.py 724 ? 00:00:00 ssh-agent 738 ? 00:00:00 xcompmgr 741 ? 00:00:00 agent 792 ? 00:00:00 gvfs-udisks2-vo 798 ? 00:00:00 menu-cached 804 ? 00:00:00 gvfs-mtp-volume 808 ? 00:00:01 gvfs-afc-volume 813 ? 00:00:00 gvfs-gphoto2-vo 817 ? 00:00:00 gvfs-goa-volume 835 ? 00:00:00 gvfsd-trash 884 ? 00:01:01 packagekitd 1012 ? 00:08:35 lxterminal 1018 pts/0 00:00:00 bash 1054 ? 00:00:00 kworker/0:1-events_power_efficient 1065 ? 00:00:00 kworker/0:0H-mmc_complete 1086 ? 00:00:01 kworker/0:0-events 1087 ? 00:00:00 kworker/0:1H 1090 ? 00:00:00 kworker/0:2H 1091 ? 00:00:00 kworker/0:2-events_power_efficient 1102 pts/0 00:00:00 ps pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ps p 372 373 PID TTY STAT TIME COMMAND 372 ? S 0:00 /bin/sh /home/local/sbin/thttpd_wrapper 373 ? Ss 1:40 /home/local/sbin/thttpd -D -C /home/local/www/thttpd_config pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ ls -al total 360 drwxr-xr-x 2 root www 4096 Mar 26 06:25 . drwxr-xr-x 5 root www 4096 Mar 25 13:15 .. -rw-r--r-- 1 nobody nogroup 48631 Mar 26 18:28 thttpd_log -rw-r--r-- 1 nobody nogroup 300001 Mar 26 06:25 thttpd_log.01 -rw-r--r-- 1 nobody nogroup 2373 Mar 25 15:40 thttpd_log.02 -rw-r--r-- 1 nobody nogroup 1803 Mar 25 14:32 thttpd_log.03 pi@raspberrypi:/home/local/www/logs $ less *log.03 pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ less *log.02 pi@raspberrypi:/home/local/www/logs $ less *log.01 pi@raspberrypi:/home/local/www/logs $ less *log pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ pi@raspberrypi:/home/local/www/logs $ cd pi@raspberrypi:~ $ cd /home pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ ls -al total 68 drwxr-xr-x 17 root root 4096 Mar 25 18:21 . drwxr-xr-x 21 root root 4096 Mar 25 11:33 .. drwxr-xr-x 3 ac0xl www 4096 Mar 25 18:21 ac0xl drwxr-xr-x 2 delinquent-accounts www 4096 Mar 25 16:12 delinquent-accounts drwxr-xr-x 2 documents www 4096 Mar 25 16:17 documents drwxr-xr-x 2 downloads www 4096 Mar 25 16:20 downloads drwxr-xr-x 2 freedom www 4096 Mar 25 16:23 freedom drwxr-xr-x 5 root root 4096 Mar 25 12:04 local drwxr-xr-x 2 memes www 4096 Mar 25 16:26 memes drwxr-xr-x 2 music www 4096 Mar 25 16:29 music drwxr-xr-x 2 notices www 4096 Mar 25 16:31 notices drwxr-xr-x 17 pi pi 4096 Mar 26 20:11 pi drwxr-xr-x 2 pictures www 4096 Mar 25 16:34 pictures drwxr-xr-x 2 rome www 4096 Mar 25 16:36 rome drwxr-xr-x 2 searles-sav-on-propane www 4096 Mar 25 16:39 searles-sav-on-propane drwxr-xr-x 2 va www 4096 Mar 25 16:41 va drwxr-xr-x 3 videos www 4096 Mar 25 21:19 videos pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ du -hd2 24K ./va 24K ./memes 24K ./pictures 24K ./searles-sav-on-propane 916M ./videos/JustinianDeception 916M ./videos 24K ./rome 24K ./music 24K ./delinquent-accounts 24K ./freedom 24K ./documents 35M ./pi/Bookshelf 4.0K ./pi/Templates 4.0K ./pi/Videos 76K ./pi/.pki 42M ./pi/.config 4.0K ./pi/Desktop 28K ./pi/.pp_backup 4.6M ./pi/.cache 4.0K ./pi/Public 4.0K ./pi/Music 4.0K ./pi/Downloads 40K ./pi/.local 4.0K ./pi/Documents 4.0K ./pi/Pictures 11M ./pi/freedom 93M ./pi 24K ./notices 7.3G ./ac0xl/www 7.3G ./ac0xl 24K ./downloads 268K ./local/sbin 8.2G ./local/www 60K ./local/man 8.2G ./local 17G . pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ du -hd3 24K ./va 24K ./memes 24K ./pictures 24K ./searles-sav-on-propane 25M ./videos/JustinianDeception/Justinian-Deception 916M ./videos/JustinianDeception 916M ./videos 24K ./rome 24K ./music 24K ./delinquent-accounts 24K ./freedom 24K ./documents 35M ./pi/Bookshelf 4.0K ./pi/Templates 4.0K ./pi/Videos 72K ./pi/.pki/nssdb 76K ./pi/.pki 8.0K ./pi/.config/autostart 8.0K ./pi/.config/openbox 8.0K ./pi/.config/qt5ct 44K ./pi/.config/pulse 8.0K ./pi/.config/libfm 42M ./pi/.config/chromium 12K ./pi/.config/lxsession 8.0K ./pi/.config/gtk-3.0 32K ./pi/.config/geany 20K ./pi/.config/pcmanfm 12K ./pi/.config/Mousepad 8.0K ./pi/.config/dconf 20K ./pi/.config/lxpanel 8.0K ./pi/.config/lxterminal 4.0K ./pi/.config/pipewire-media-session 12K ./pi/.config/xfce4 42M ./pi/.config 4.0K ./pi/Desktop 24K ./pi/.pp_backup/.config 28K ./pi/.pp_backup 52K ./pi/.cache/menus 3.2M ./pi/.cache/fontconfig 12K ./pi/.cache/openbox 4.0K ./pi/.cache/mesa_shader_cache 1.4M ./pi/.cache/chromium 24K ./pi/.cache/lxsession 4.6M ./pi/.cache 4.0K ./pi/Public 4.0K ./pi/Music 4.0K ./pi/Downloads 36K ./pi/.local/share 40K ./pi/.local 4.0K ./pi/Documents 4.0K ./pi/Pictures 72K ./pi/freedom/thttpd-extras 44K ./pi/freedom/os-debug 984K ./pi/freedom/HTML Sampler_files 9.1M ./pi/freedom/Acme.com 11M ./pi/freedom 93M ./pi 24K ./notices 3.9M ./ac0xl/www/2002-ArchHunterBooks 2.4M ./ac0xl/www/1999-ArchHunterBooks 1.7M ./ac0xl/www/slackbook 7.2G ./ac0xl/www/2005-museumarchives 3.5M ./ac0xl/www/SlackBook14-1 89M ./ac0xl/www/2009-GreenRiver.UT 14M ./ac0xl/www/2003-ArchHunterBooks 3.9M ./ac0xl/www/2001-ArchHunterBooks 2.3M ./ac0xl/www/Slack8Book_files 32K ./ac0xl/www/The Revised Slackware Book Project_files 252K ./ac0xl/www/Slackware Linux Essentials_files 664K ./ac0xl/www/Web-demo~1994 7.3G ./ac0xl/www 7.3G ./ac0xl 24K ./downloads 72K ./local/sbin/thttpd-extras 44K ./local/sbin/os-debug 268K ./local/sbin 8.2G ./local/www/users 356K ./local/www/logs 48K ./local/www/cgi-bin 8.2G ./local/www 44K ./local/man/man8 12K ./local/man/man1 60K ./local/man 8.2G ./local 17G . pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ du -hd4 24K ./va 24K ./memes 24K ./pictures 24K ./searles-sav-on-propane 25M ./videos/JustinianDeception/Justinian-Deception/justiniandeception.wordpress.com 25M ./videos/JustinianDeception/Justinian-Deception 916M ./videos/JustinianDeception 916M ./videos 24K ./rome 24K ./music 24K ./delinquent-accounts 24K ./freedom 24K ./documents 35M ./pi/Bookshelf 4.0K ./pi/Templates 4.0K ./pi/Videos 72K ./pi/.pki/nssdb 76K ./pi/.pki 8.0K ./pi/.config/autostart 8.0K ./pi/.config/openbox 8.0K ./pi/.config/qt5ct 44K ./pi/.config/pulse 8.0K ./pi/.config/libfm 980K ./pi/.config/chromium/AutofillStates 7.8M ./pi/.config/chromium/OnDeviceHeadSuggestModel 32K ./pi/.config/chromium/MEIPreload 4.0K ./pi/.config/chromium/NativeMessagingHosts 340K ./pi/.config/chromium/DesktopSharingHub 24K ./pi/.config/chromium/OriginTrials 28K ./pi/.config/chromium/FirstPartySetsPreloaded 1.4M ./pi/.config/chromium/hyphen-data 4.0K ./pi/.config/chromium/FileTypePolicies 4.0K ./pi/.config/chromium/Safe Browsing 40K ./pi/.config/chromium/Crowd Deny 304K ./pi/.config/chromium/GrShaderCache 40K ./pi/.config/chromium/TrustTokenKeyCommitments 60K ./pi/.config/chromium/Floc 84K ./pi/.config/chromium/SafetyTips 120K ./pi/.config/chromium/AutofillRegex 304K ./pi/.config/chromium/Subresource Filter 304K ./pi/.config/chromium/ShaderCache 36K ./pi/.config/chromium/PKIMetadata 812K ./pi/.config/chromium/ZxcvbnData 4.0K ./pi/.config/chromium/Dictionaries 4.0K ./pi/.config/chromium/ClientSidePhishing 100K ./pi/.config/chromium/CertificateRevocation 28K ./pi/.config/chromium/SSLErrorAssistant 168K ./pi/.config/chromium/Crash Reports 25M ./pi/.config/chromium/Default 68K ./pi/.config/chromium/OptimizationHints 42M ./pi/.config/chromium 8.0K ./pi/.config/lxsession/LXDE-pi 12K ./pi/.config/lxsession 8.0K ./pi/.config/gtk-3.0 8.0K ./pi/.config/geany/filedefs 12K ./pi/.config/geany/templates 32K ./pi/.config/geany 16K ./pi/.config/pcmanfm/LXDE-pi 20K ./pi/.config/pcmanfm 12K ./pi/.config/Mousepad 8.0K ./pi/.config/dconf 16K ./pi/.config/lxpanel/LXDE-pi 20K ./pi/.config/lxpanel 8.0K ./pi/.config/lxterminal 4.0K ./pi/.config/pipewire-media-session 8.0K ./pi/.config/xfce4/xfconf 12K ./pi/.config/xfce4 42M ./pi/.config 4.0K ./pi/Desktop 12K ./pi/.pp_backup/.config/lxsession 8.0K ./pi/.pp_backup/.config/gtk-3.0 24K ./pi/.pp_backup/.config 28K ./pi/.pp_backup 52K ./pi/.cache/menus 3.2M ./pi/.cache/fontconfig 4.0K ./pi/.cache/openbox/sessions 12K ./pi/.cache/openbox 4.0K ./pi/.cache/mesa_shader_cache 1.4M ./pi/.cache/chromium/Default 1.4M ./pi/.cache/chromium 20K ./pi/.cache/lxsession/LXDE-pi 24K ./pi/.cache/lxsession 4.6M ./pi/.cache 4.0K ./pi/Public 4.0K ./pi/Music 4.0K ./pi/Downloads 4.0K ./pi/.local/share/applications 4.0K ./pi/.local/share/nano 16K ./pi/.local/share/themes 4.0K ./pi/.local/share/desktop-directories 36K ./pi/.local/share 40K ./pi/.local 4.0K ./pi/Documents 4.0K ./pi/Pictures 72K ./pi/freedom/thttpd-extras 44K ./pi/freedom/os-debug 256K ./pi/freedom/HTML Sampler_files/ads_data 4.0K ./pi/freedom/HTML Sampler_files/aframe_data 984K ./pi/freedom/HTML Sampler_files 20K ./pi/freedom/Acme.com/Other Web Resources_files 20K ./pi/freedom/Acme.com/ssi man page_files 1004K ./pi/freedom/Acme.com/thttpd-2.29 112K ./pi/freedom/Acme.com/thttpd man page_files 20K ./pi/freedom/Acme.com/makeweb man page_files 128K ./pi/freedom/Acme.com/Web Server Comparisons_files 644K ./pi/freedom/Acme.com/thttpd-2.29-home 644K ./pi/freedom/Acme.com/thttpd-2.29-original 24K ./pi/freedom/Acme.com/http_load_files 972K ./pi/freedom/Acme.com/thttpd notes_files 984K ./pi/freedom/Acme.com/HTML Sampler_files 20K ./pi/freedom/Acme.com/syslogtocern man page_files 20K ./pi/freedom/Acme.com/htpasswd man page_files 972K ./pi/freedom/Acme.com/Configuration Options_files 20K ./pi/freedom/Acme.com/redirect man page_files 1.0M ./pi/freedom/Acme.com/ACME Laboratories_files 20K ./pi/freedom/Acme.com/acme.com's hardware_files 20K ./pi/freedom/Acme.com/Auxiliary Programs_files 2.2M ./pi/freedom/Acme.com/old-thttpd-2.29 32K ./pi/freedom/Acme.com/thttpd_files 9.1M ./pi/freedom/Acme.com 11M ./pi/freedom 93M ./pi 24K ./notices 3.4M ./ac0xl/www/2002-ArchHunterBooks/SJSlides 540K ./ac0xl/www/2002-ArchHunterBooks/images 3.9M ./ac0xl/www/2002-ArchHunterBooks 2.1M ./ac0xl/www/1999-ArchHunterBooks/images 88K ./ac0xl/www/1999-ArchHunterBooks/old.htm 2.4M ./ac0xl/www/1999-ArchHunterBooks 12K ./ac0xl/www/slackbook/system-configuration 20K ./ac0xl/www/slackbook/booting 44K ./ac0xl/www/slackbook/basic-network-commands 12K ./ac0xl/www/slackbook/emacs 20K ./ac0xl/www/slackbook/package-management 8.0K ./ac0xl/www/slackbook/vi 112K ./ac0xl/www/slackbook/installation 16K ./ac0xl/www/slackbook/imagelib 36K ./ac0xl/www/slackbook/x-window-system 1.7M ./ac0xl/www/slackbook 108M ./ac0xl/www/2005-museumarchives/James-Ramsay 123M ./ac0xl/www/2005-museumarchives/River-History 146M ./ac0xl/www/2005-museumarchives/Missile-Base 613M ./ac0xl/www/2005-museumarchives/Charlotte 5.9G ./ac0xl/www/2005-museumarchives/Raw-Data 244M ./ac0xl/www/2005-museumarchives/Elgin-Cemetery 68M ./ac0xl/www/2005-museumarchives/Green-River-History 7.2G ./ac0xl/www/2005-museumarchives 1.7M ./ac0xl/www/SlackBook14-1/html 3.5M ./ac0xl/www/SlackBook14-1 4.6M ./ac0xl/www/2009-GreenRiver.UT/johnwesleypowell.com 48M ./ac0xl/www/2009-GreenRiver.UT/sterling.webiness.com 37M ./ac0xl/www/2009-GreenRiver.UT/greenriverutah.com 89M ./ac0xl/www/2009-GreenRiver.UT 14M ./ac0xl/www/2003-ArchHunterBooks/images 14M ./ac0xl/www/2003-ArchHunterBooks 3.4M ./ac0xl/www/2001-ArchHunterBooks/SJSlides 540K ./ac0xl/www/2001-ArchHunterBooks/images 3.9M ./ac0xl/www/2001-ArchHunterBooks 2.3M ./ac0xl/www/Slack8Book_files 32K ./ac0xl/www/The Revised Slackware Book Project_files 252K ./ac0xl/www/Slackware Linux Essentials_files 648K ./ac0xl/www/Web-demo~1994/maze 664K ./ac0xl/www/Web-demo~1994 7.3G ./ac0xl/www 7.3G ./ac0xl 24K ./downloads 72K ./local/sbin/thttpd-extras 44K ./local/sbin/os-debug 268K ./local/sbin 4.0K ./local/www/users/va 4.0K ./local/www/users/memes 4.0K ./local/www/users/pictures 4.0K ./local/www/users/searles-sav-on-propane 916M ./local/www/users/videos 4.0K ./local/www/users/rome 4.0K ./local/www/users/music 4.0K ./local/www/users/delinquent-accounts 4.0K ./local/www/users/freedom 4.0K ./local/www/users/documents 4.0K ./local/www/users/notices 7.3G ./local/www/users/ac0xl 4.0K ./local/www/users/downloads 8.2G ./local/www/users 356K ./local/www/logs 48K ./local/www/cgi-bin 8.2G ./local/www 44K ./local/man/man8 12K ./local/man/man1 60K ./local/man 8.2G ./local 17G . pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $ pi@raspberrypi:/home $