Instructions to set up a basic LAMP+SSH server environment
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

517 lines
22 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. Linux servers - Exercice 7
  2. ==============
  3. *Disclaimer:*
  4. --------------
  5. This exercise is a part of [Linux servers (ICT4TN021, spring 2018) // Linux-palvelimet (ICT4TN021, kevät 2018)](http://www.haaga-helia.fi/fi/opinto-opas/opintojaksokuvaukset/ICT4TN021) school course organized as a part of Information Technology studies in Haaga-Helia university of Applied Sciences, Helsinki, Finland. Course lecturer [Tero Karvinen](http://terokarvinen.com/) has defined the original assignment descriptions in Finnish presented in this document in English. Answers and translations have been written by Pekka Helenius (me, ~ Fincer).
  6. **a)** Solve a previously published final major test of this school course (You can find them with DuckDuckGo or Google).
  7. --------------
  8. **Answer:**
  9. Let's pick up our previous major test [ict4tn021-1 autumn 2016](http://terokarvinen.com/2016/arvioitava-laboratorioharjoitus-%e2%80%93-linux-palvelimet-ict4tn021-1-uusi-ops-alkusyksylla-2016).
  10. ----------------------------
  11. ### Initial set-up for remote control of a server
  12. **Issue:** Prepare to control the server from abroad. Secure the server with firewall
  13. We shall install SSH server daemon to the targeted server computer. It is assumed that local or other direct access to the server command line is available since SSH server daemon is not yet installed, thus preventing direct, remote SSH control of the server.
  14. Once having access to the server command line, we shall test that the computer can reach the internet. Test the following commands:
  15. ```
  16. ifconfig
  17. ping www.duckduckgo.com
  18. ip -br link show
  19. ```
  20. Command explanations:
  21. - [ifconfig](https://www.linux.fi/wiki/Ifconfig) = Has IP address determined to a network interface on the server?
  22. - [ping](https://fi.wikipedia.org/wiki/Ping) = Does a site respond to ICMP requests?
  23. - ip = Is the network interface, which should have connection to the internet, up and active (UP)?
  24. When the internet connection is established, we shall proceed by installing the following packages, assuming that the server uses a Debian-based Linux distribution: `openssh-server`, `openssh-sftp-server`, `openssh-client`
  25. On some distributions, those packages can be installed simply issuing:
  26. ```
  27. sudo apt-get update
  28. sudo apt-get -y install ssh
  29. ```
  30. We shall confirm that the SSH server daemon starts during the server boot-up. We shall also confirm that the SSH server daemon is up and running and its status is `active`:
  31. ```
  32. sudo systemctl enable ssh.service
  33. systemctl is-active ssh.service
  34. ```
  35. **NOTE:** Alternative commands can also be used, like:
  36. ```
  37. sudo systemctl enable sshd
  38. systemctl status sshd
  39. ```
  40. Has our firewall program installed on the system?
  41. ```
  42. which ufw
  43. which iptables
  44. ```
  45. If both of those executable files ('ufw' and 'iptables') are found on the system, we shall accept network traffic to port `22`, protocol TCP (INPUT 22/TCP). Let's apply these rules to our firewall:
  46. ```
  47. sudo ufw allow 22/tcp
  48. ```
  49. Make sure our firewall program `ufw` (Uncomplicated Firewall) is enabled and turned on:
  50. ```
  51. sudo ufw enable
  52. sudo systemctl enable ufw.service
  53. ```
  54. **NOTE:** By default, Linux firewall blocks all input traffic. Therefore, SSH input traffic must separately be allowed like described above.
  55. ----------------------------
  56. ### Security set-up for a company
  57. **Issue:** Install remotely working security tools for our company. (In this assignment, you can assume that installing a package or packages from our repository is secure)
  58. The following commands have been pre-determined in the assignment:
  59. - download `.deb` package file with `wget` command
  60. - install the downloaded `.deb` package with command `sudo dpkg -i` which extract a new repository file `terorep.list` into `/etc/apt/sources.list.d/`)
  61. - update package databases with command `sudo apt-get update`
  62. - install package `terowatch` which is made available by the new repository. The package is available for Ubuntu distribution, version 16.04 LTS. The repository file `terorep.list` itself contains string `deb http://terokarvinen.com/qrs/terorep/ precise main`
  63. **NOTE:** `terowatch` package uses network interface `eth0` by default. However, we haven't defined such interface in our system configuration (this can be fixed by adding `net.ifnames=0` in udev rules or in kernel boot parameters in Syslinux or GRUB2). Instead, we use default network interface `enp4s0`.
  64. Proper fix to this issue would be patching the code and applying the patch into the deb package. Another solution would be making the proper fix directly to the source code. In this assignment, we directly modify the executable file, written in Python. This method is not recommended but for the extent of this assignment, it is sufficient solution to proceed.
  65. ```
  66. dpkg -L terowatch
  67. sudo sed -i 's/eth0/enp4s0/g' /usr/bin/qrsc
  68. ```
  69. Command `terowatch` gives desired text output “TeroWatch is installed” (the string is defined in shell executable `/usr/bin/terowatch`)
  70. ----------------------------
  71. ### System statistics
  72. **Issue:** Collect workload statistics of various system resources (CPU, RAM) while doing the assignment. The data collection must be started before proceeding in the assignment. Write a short analysis of the collected statistics after you've finished other parts of the assignment.
  73. We shall install `sysstat`:
  74. ```
  75. sudo apt-get update && sudo apt-get -y install sysstat
  76. ```
  77. Let's run `sar` command with 2 second interval for undefined time period. Print output of the command to file `$HOME/sysstat.file`
  78. ```
  79. sar 2 -o $HOME/sysstat.file
  80. ```
  81. The file can be analysed afterwards with `sar` command in the end of the assignment.
  82. ![sysstat_cpu-mem](https://github.com/Fincer/linux_server_setup/blob/master/images/sar_stats_cpu-ram.png)
  83. Short analysis, based on the picture above:
  84. - CPU (command: `sar 10 -f $HOME/sysstat.file`): CPU has been in moderate workload. User processes have not depleted resources that much, in contrast to system processes which stress the CPU many times more. 'iowait' value tells us that the processor has waited for mass memory device. During the data collection, some data was transferred from a hard disk to another. CPU capacity limits were not reached.
  85. - Mem/RAM (command: `sar -r 10 -f $HOME/sysstat.file`): Memory consumption has been significant during the data collection period (`%memused` and `%commit`). The system has 4GB DDR3 memory of which majority has been in use. Amount of free memory has been 100MB. Two main operations have affected the memory usage level: web browser usage and file transfer/copy operations which were performed during the data collection period. Active memory was used 2.5GB on average, passive (inactive) memory usage was 700MB. Amount of memory which has waited for to be written varies between 5MB-200MB (`kbdirty`).
  86. ----------------------------
  87. ### PHP from abroad
  88. **Issue:** Install us necessary tools for remote PHP website development.
  89. - SSH server daemon has already been installed, port `22` is opened -> OK
  90. - We shall install HTTP daemon (Apache web server) and open the default port `80` for it in our firewall. Additionally, we shall install necessary PHP (7.0) packages:
  91. ```
  92. sudo apt-get update && sudo apt-get -y install apache2 php7.0 libapache2-mod-php7.0 && sudo ufw allow 80/tcp
  93. ```
  94. Let's enable Apache server daemon, check the status of it (must be `active`) and tell the system that Apache should automatically be started during the server boot-up:
  95. ```
  96. systemctl is-active apache2
  97. sudo systemctl enable apache2
  98. ```
  99. Let's check that the port `80` is opened in our firewall:
  100. ```
  101. xubuntu@xubuntu:/home$ sudo ufw status
  102. Status: active
  103. To Action From
  104. -- ------ ----
  105. 22/tcp ALLOW Anywhere
  106. 80/tcp ALLOW Anywhere
  107. 22/tcp (v6) ALLOW Anywhere (v6)
  108. 80/tcp (v6) ALLOW Anywhere (v6)
  109. ```
  110. (you don't need to execute command `sudo systemctl start apache2` after the Apache installation because the Apache web server daemon is automatically enabled during the server boot-up by default. This information can be found with command `systemctl status apache2`)
  111. We shall enable Apache's PHP module while using module `userdir`. This can be done by commenting the lines between `<IfModule mod_userdir.c>` tags in file `/etc/apache2/mods-available/php7.0.conf`. Right after we should enable Apache's 'userdir' module and restart the Apache web server:
  112. ```
  113. sudo a2enmod userdir
  114. sudo systemctl restart apache2.service
  115. ```
  116. Let's check that Apache web server is still up and running by issuing command `systemctl status apache2.service`. Let's check that we can access our default localhost website (IP address `127.0.0.1`) which indicates whether the Apache server works as intended:
  117. ```
  118. xdg-open http://localhost
  119. ```
  120. 'xdg-open' command definition:
  121. ```
  122. [12/03/2018 22:31:11 - fincer: ~ ]$ whatis xdg-open
  123. xdg-open (1) - opens a file or URL in the user's preferred application
  124. ```
  125. We must check that we can access our website from a remote network. In a test laboratory, this test would be done checking output of command `ifconfig`, looking for a relevant IP address and login to the server from another computer using the grabbed IP address and SSH client program (command syntax using default SSH port `22` would be: `ssh server-user@server-ip`). In order to access the server from a remote network, the relevant IP address for connecting the server must be known, and confirmation for succeeded remote access must exist. Any router & NAT/PAT configurations between a client and the server must work.
  126. **Issue:** Our users are as follows: Maija Mehilälinen, Peter Ö, Oskar Jäärä, John Do, Verner Vrij, Mikko Möttönen, Jalmari Ähkä, Håkan Swarz and Maija Maitoparta. Create a sample website for each user with PHP.
  127. **Issue:** List all user accounts and passwords in file lab.txt (`/home/*/lab.txt`). Protect the file so that other users can not read it.
  128. We shall generate all required passwords (9 for users + admin) with `pwgen`. Password length is 20 characters, randomized, at least one uppercase character included and secure parameter for the command is used:
  129. ```
  130. sudo apt-get update && sudo apt-get install pwgen
  131. pwgen 20 10 -sc1
  132. ```
  133. We shall store additional admin password into a separate, secure place (of your choice). Admin account (or user) username is `admin`.
  134. We haven't created admin user `admin` yet. Let's do it. We shall also grant `sudo` group permissions to this new administration user:
  135. ```
  136. sudo adduser admin
  137. sudo usermod -aG sudo admin
  138. su admin
  139. ```
  140. The last command `su admin` switched our shell view to `admin` shell. We should lock the server root account by issuing command `sudo usermod --lock root` (which adds an exclamation mark right before root's password in file `/etc/shadow`). We could increase system's overall security by blocking usage of various TTY sessions (commenting out lines in file `/etc/securetty`) and by adding more restrictions to the system's PAM policy.
  141. For securing our SSH connections, we shall add the following line in `/etc/ssh/sshd_config` file (use `sudoedit /etc/ssh/sshd_config` or `sudo nano /etc/ssh/sshd_config` command):
  142. ```
  143. PermitRootLogin no
  144. ```
  145. After having altered `/etc/ssh/sshd_config`, restart SSH server daemon by issuing command
  146. ```
  147. sudo systemctl restart sshd
  148. ```
  149. Create file `$HOME/lab.txt` (where `$HOME` is `/home/admin`) with the following contents:
  150. ```
  151. mmehilal RWjM8r2fyq8gQq3wnzq0 # Maija Mehilälinen
  152. po a5B60cmTyrwPLS2mJ9uQ # Peter Ö
  153. ojaara P1KkLl0XaV5JpqntxdJG # Oskar Jäärä
  154. jdo ZgMb5TrU4Ee3bT48eCff # John Do
  155. vvrij RWjM8r2fyq8gQq3wnzq0 # Verner Vrij
  156. mmottone GpuyZqp2pGsmPINJPO1h # Mikko Möttönen
  157. jahka nFTellIyRjwiC0YKtPwq # Jalmari Ähkä
  158. hswarz u5qfJCC2jZMGQPWwPZLV # Håkan Swarz
  159. mmaitopa OCeBmKYWWgFIXubdFc6j # Maija Maitoparta
  160. ```
  161. Restrict permissions for this file by issuing the following command (as user `admin`):
  162. ```
  163. chmod og-rwx,u-x $HOME/lab.txt
  164. ```
  165. Output:
  166. ```
  167. admin@xubuntu:~$ ls -l lab.txt
  168. -rw------- 1 admin admin 407 Mar 12 11:42 lab.txt
  169. ```
  170. Let's create a generic, pretty simple PHP file `index.php` into the home directory of `admin` (and as `admin`).
  171. ```
  172. nano /home/admin/index.php
  173. ```
  174. Add the following contents:
  175. ```
  176. <?php
  177. phpinfo();
  178. ?>
  179. ```
  180. **NOTE:** Make sure you have enabled `php` & `userdir` modules on Apache at this point!
  181. After that, we shall copy the PHP file for each user into a user-specific subdirectory `public_html` (`/home/*/public_html`).
  182. The user-specific directory `public_html` and contents of it should have correct permissions set up for each user.
  183. On Debian-based Linux distributions, a perl script '[adduser](https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=adduser/adduser.git;a=tree)' is provided for creating new users. Let's do the following:
  184. - 1) Create required user accounts with the generated passwords
  185. - 2) Copy the pre-created `index.php` file into each user's `$HOME/public_html` folder
  186. - 3) For each user, test that their `index.php` is showing expected and correct output
  187. Run the following with any system user who belongs to `sudo` group:
  188. ```
  189. sudo apt-get update && \
  190. sudo apt-get -y install curl && \
  191. for user in mmehilal po ojaara jdo vvrij mmottone jahka hswarz mmaitopa; do \
  192. echo -e "User is: $user\n" && \
  193. sudo adduser $user && \
  194. sudo mkdir -p /home/$user/public_html/ && \
  195. sudo cp /home/admin/index.php /home/$user/public_html/ && \
  196. sudo chown -R $user:$user /home/$user && \
  197. [[ $(curl -s http://localhost/~${user}/index.php | grep -i "404 not found" | wc -l) -ne 0 ]] && \
  198. echo -e "\nPHP test site not found for '${user}'\n" || \
  199. echo -e "\nPHP test site is OK for user\n"; \
  200. done
  201. ```
  202. **NOTE:** To test site on a graphical web browser, you need to keep in mind that user `xubuntu` is the only user having access to graphical display on X server right now (see `.Xauthority` and environment variable `DISPLAY` for details). Thus, the following commands should be used in our current setup:
  203. ```
  204. sudo passwd xubuntu
  205. su xubuntu
  206. for user in mmehilal po ojaara jdo vvrij mmottone jahka hswarz mmaitopa; do xdg-open http://localhost/~${user}; done
  207. ```
  208. **NOTE:** We can exit the shell view of the user `admin` simply issuing command `exit` on that shell view.
  209. **NOTE:** Consider the following in a production environment, instead of doing nasty things with administration users:
  210. - You can (but don't have to) modify the current user, grant administration rights, modify username, home directory and groups (`usermod` command) instead of adding a separate account for an administrator
  211. - You can create a new main/admin user and remove an old one (in our case, we should delete `xubuntu` account). You can delete users with command `sudo userdel <account>`.
  212. - You can have clearly restricted and well named groups to separate users with various permissions on a system. Apply your user and group policy so that specific users belong to the right groups.
  213. - Check usage of various environment variables in your shell view
  214. Screenshot of user-specific PHP sites on the configured server environment:
  215. ![apache-php-multiple](https://github.com/Fincer/linux_server_setup/blob/master/images/apache_phpinfo_multiple.png)
  216. Checking permissions for each `index.php` files & `public_html` directories:
  217. ```
  218. for user in mmehilal po ojaara jdo vvrij mmottone jahka hswarz mmaitopa; do ls -lR /home/$user | sed '/total [0-9]/d'; done
  219. ```
  220. Output:
  221. ```
  222. /home/mmehilal:
  223. drwxr-xr-x 2 mmehilal mmehilal 60 Mar 12 11:50 public_html
  224. /home/mmehilal/public_html:
  225. -rw-r--r-- 1 mmehilal mmehilal 20 Mar 12 12:00 index.php
  226. /home/po:
  227. drwxr-xr-x 2 po po 60 Mar 12 12:00 public_html
  228. /home/po/public_html:
  229. -rw-r--r-- 1 po po 20 Mar 12 12:00 index.php
  230. /home/ojaara:
  231. drwxr-xr-x 2 ojaara ojaara 60 Mar 12 12:01 public_html
  232. /home/ojaara/public_html:
  233. -rw-r--r-- 1 ojaara ojaara 20 Mar 12 12:01 index.php
  234. /home/jdo:
  235. drwxr-xr-x 2 jdo jdo 60 Mar 12 12:01 public_html
  236. /home/jdo/public_html:
  237. -rw-r--r-- 1 jdo jdo 20 Mar 12 12:01 index.php
  238. /home/vvrij:
  239. drwxr-xr-x 2 vvrij vvrij 60 Mar 12 12:01 public_html
  240. /home/vvrij/public_html:
  241. -rw-r--r-- 1 vvrij vvrij 20 Mar 12 12:01 index.php
  242. /home/mmottone:
  243. drwxr-xr-x 2 mmottone mmottone 60 Mar 12 12:01 public_html
  244. /home/mmottone/public_html:
  245. -rw-r--r-- 1 mmottone mmottone 20 Mar 12 12:01 index.php
  246. /home/jahka:
  247. drwxr-xr-x 2 jahka jahka 60 Mar 12 12:02 public_html
  248. /home/jahka/public_html:
  249. -rw-r--r-- 1 jahka jahka 20 Mar 12 12:02 index.php
  250. /home/hswarz:
  251. drwxr-xr-x 2 hswarz hswarz 60 Mar 12 12:02 public_html
  252. /home/hswarz/public_html:
  253. -rw-r--r-- 1 hswarz hswarz 20 Mar 12 12:02 index.php
  254. /home/mmaitopa:
  255. drwxr-xr-x 2 mmaitopa mmaitopa 60 Mar 12 12:02 public_html
  256. /home/mmaitopa/public_html:
  257. -rw-r--r-- 1 mmaitopa mmaitopa 20 Mar 12 12:02 index.php
  258. ```
  259. ----------------------------
  260. ### iot12tools - IoT tools for users
  261. **Issue:** Install and configure metapackage `iot12tools` for us. The metapackage should install the following development tools for 'Internet of Things': arduino IDE, gedit (text editor), gedit-plugins, curl (CLI browser) and Python 3 programming language.
  262. Run the following commands as `admin`:
  263. ```
  264. sudo apt-get update && sudo apt-get -y install equivs
  265. mkdir ~/iot12tools
  266. cd ~/iot12tools
  267. equivs-control iot12tools
  268. ```
  269. Edit contents of file `io12tools` to look like the following:
  270. ```
  271. ### Commented entries have reasonable defaults.
  272. ### Uncomment to edit them.
  273. Section: misc
  274. Priority: optional
  275. Standards-Version: 3.9.2
  276. Package: iot12tools
  277. Version: 0.1
  278. Maintainer: Pekka Helenius <fincer89@hotmail.com>
  279. Depends: arduino, gedit, gedit-plugins, curl, python3
  280. Architecture: all
  281. Description: A meta package which provides basic IoT development tools
  282. Installs Gedit text editor, Gedit plugins, Arduino IDE and Python 3
  283. ```
  284. Run the following command in directory `~/iot12tools`:
  285. ```
  286. equivs-build iot12tools
  287. ```
  288. Install the generated metapackage (which installs required packages for us):
  289. ```
  290. sudo apt install -f ./iot12tools_0.1_all.deb
  291. ```
  292. ----------------------------
  293. ### Hello Python 3
  294. **Issue:** Jalmari wants to develop in Python 3. Create a simple Python 3 file in his home root directory. The file should print output 'Hello World'.
  295. Install necessary python3 packages as the user `admin`:
  296. ```
  297. sudo apt-get update && sudo apt-get install -y python3
  298. ```
  299. Switch your shell view to user `jahka` (Jalmari Ähkä) and go to his home directory:
  300. ```
  301. su jahka
  302. cd
  303. ```
  304. **NOTE:** We can make sure that we are in his home directory (`/home/jahka`) by issuing command 'pwd'.
  305. Let's create a new file `~/helloworld.py` with the following contents:
  306. ```
  307. #!/usr/bin/env python3
  308. print("Hello World");
  309. ```
  310. Modify file permissions, grant executable permission for the user `jahka`, remove from others (including the group who owns the file):
  311. ```
  312. chmod u+x,og-x helloworld.py
  313. ```
  314. The file permissions are now:
  315. ```
  316. -rwxrw-r-- 1 jahka jahka 47 Mar 12 12:59 helloworld.py
  317. ```
  318. Test the code:
  319. ```
  320. jahka@xubuntu:~$ python3 ~/helloworld.py
  321. Hello World
  322. ```
  323. The output is as desired, `Hello World`, indicating that we have successfully installed Python3 development environment for the required user.
  324. **c)** (optional) Use Linux outside the course scope.
  325. --------------
  326. **Answer:**
  327. The following pictures demonstrate [Arch Linux ARM](https://archlinuxarm.org/platforms/armv6/raspberry-pi) running on my Raspberry Pi 1 Model B. The solution is quite rushed but it works technically:
  328. ![rpi1b_archlinux-1](https://github.com/Fincer/linux_server_setup/blob/master/images/rpi1b_archlinux_1.jpg)
  329. ![rpi1b_archlinux-2](https://github.com/Fincer/linux_server_setup/blob/master/images/rpi1b_archlinux_2.jpg)
  330. - Display: [Lilliput 869GL](http://www.lilliputuk.com/monitors/hdmi/869gl/)
  331. - SDHC card: Transcend 16GB
  332. - HDD: 750GB in [Icy Box IB-3640SU3](http://www.raidsonic.de/products/external_cases/external_cases_35/index_en.php?we_objectID=480) hard disk external case.
  333. - Desktop environment: LxQt
  334. ### About my Linux usage:
  335. My first touch to Linux world was back in early spring, 2011. The first Linux distribution I installed was Ubuntu 10.04 LTS, and after that I have tried out many distributions, including Linux Mint, Fedora, OpenSUSE and Arch Linux.
  336. The first computer I ever had a Linux installation was [Asus Eee PC 1215N](https://www.asus.com/Laptops/Eee_PC_1215N/) mini laptop. My primary operating system on that laptop was [EasyPeasy](https://sourceforge.net/projects/ubuntu-eee/), a variant of Ubuntu 10.04 LTS which uses Gnome 2 desktop environment and additional customization package 'ubuntu-netbook-launcher' (known as [Linux Netbook Remix](https://en.wikipedia.org/wiki/Ubuntu_Netbook_Edition)), predecessor of Canonical's Unity desktop.
  337. After the Asus Eee PC 1215N broke, I moved to [Asus N56JR laptop](https://www.asus.com/Laptops/N56JR/) for which I installed Linux Mint with Cinnamon desktop environment at first. Soon after I moved to Arch Linux where I used Cinnamon desktop for a short while, as well. I moved quickly from Cinnamon to KDE desktop because I Cinnamon desktop had mysterious and unacceptable freeze events on my personal use.
  338. Why did I choose KDE desktop over multiple alternatives, such as XFCE, LXDE, Mate, Gnome 3, Budgie, Pantheon or LxQt? I consider several things when choosing a desktop environment: stability, long-term development history, suitability for efficient multitasking and configuration possibilities (source code + GUI + conf files). I have been happy Arch Linux + KDE desktop user for many years - and I still am. Of course, I have tested various other desktop environments but always returned to KDE.
  339. In general, I have multiple Linux distributions, MS Windows 7 and Android on Virtual Machines for various purposes.
  340. More or less, I have participated in various open source project and done Windows software testing on Wine. I like to create scripts for daily usage, mainly to automate routine-like, boring tasks and processes. One of my key interests have been in digital image processing and raw image analysis, for which both Linux suits very well, offering a solid, adaptable and cost-effective platform. I set up my first LAMP server several years back from now on my Raspberry Pi 1 Model B.