{"id":39479,"date":"2019-10-31T22:33:41","date_gmt":"2019-10-31T19:33:41","guid":{"rendered":"https:\/\/prohoster.info\/blog\/5-sposobov-poleznogo-ispolzovaniya-raspberry-pi\/"},"modified":"2019-10-31T22:33:41","modified_gmt":"2019-10-31T19:33:41","slug":"5-sposobov-poleznogo-ispolzovaniya-raspberry-pi","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/5-sposobov-poleznogo-ispolzovaniya-raspberry-pi","title":{"rendered":"5 Useful Ways to Use Raspberry Pi","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Hello Habr.<\/p>\n<p>Almost everyone probably has a Raspberry Pi at home, and I dare say that for many it might be lying unused. However, Raspberry Pi is not just a valuable device; it's also a quite powerful fanless computer with Linux. Today, we will explore useful capabilities of Raspberry Pi that require no coding at all. <br \/>\n<img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/e69119cc5036df2ca55ee5cea97fe30d.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\nFor those interested, details are below. This article is aimed at beginners.<br \/>\n<noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><br \/>\n<i>Note<\/i>: the article is intended for beginners but with at least a basic understanding of what an IP address is, how to access Raspberry Pi via SSH using PuTTY or any other terminal, and how to edit files with the nano editor. This time, as an experiment, I won't overload readers with Python code; there won\u2019t be any programming. For everything written below, just the command line will suffice. I will gauge how in-demand this format is based on reader feedback.<\/p>\n<p>Of course, I won\u2019t be discussing the completely obvious things like FTP server or network shares. Below, I've tried to highlight something a bit more useful and original.<\/p>\n<p>Before we install anything, an important <b>tip<\/b>: having the correct power supply (preferably a branded one at 2.5A, not a no-name charger from a phone) and a heatsink for the processor are crucial for the stable operation of Raspberry Pi. Without this, the Raspberry may freeze, and errors may occur when copying files, etc. The insidiousness of such errors is that they manifest only occasionally, such as during peak CPU load or when writing large files to the SD card.<\/p>\n<p>Before installing any components, it is advisable to update the system; otherwise, old addresses for the apt command may not work:<\/p>\n<pre><code class=\"bash\">sudo apt-get update<\/code><\/pre>\n<p>\nNow we can proceed to the installation and configuration.<\/p>\n<h2>1. WiFi Access Point<\/h2>\n<p>\nRaspberry Pi can be easily turned into a wireless access point, and you won\u2019t need to buy anything; the WiFi is already built-in. To do this, you need to install 2 components: hostapd (Host access point daemon, access point service) and dnsmasq (DNS\/DHCP server).<\/p>\n<p>Install dnsmasq and hostapd:<\/p>\n<pre><code class=\"bash\">sudo apt-get install dnsmasq hostapd<\/code><\/pre>\n<p>\nAssign a static IP address that Raspberry Pi will have in the WiFi network. To do this, you need to edit the file dhcpcd.conf by entering the command <i>sudo nano \/etc\/dhcpcd.conf<\/i>. You need to add the following lines to the file:<\/p>\n<pre><code class=\"bash\">interface wlan0\n  static ip_address=198.51.100.100\/24\n  nohook wpa_supplicant\n<\/code><\/pre>\n<p>\nAs you can see, in the WiFi network, our Raspberry Pi will have the address 198.51.100.100 (it's important to remember this if a server is running on it, which needs to be entered in the browser).<\/p>\n<p>Next, we need to activate IP forwarding, for which we execute the command <i>sudo nano \/etc\/sysctl.conf<\/i> and uncomment the line <i>net.ipv4.ip_forward=1<\/i>.<\/p>\n<p>Now we need to set up the DHCP server \u2014 it will distribute IP addresses to connected devices. We enter the command <i>sudo nano \/etc\/dnsmasq.conf<\/i> and add the following lines:<\/p>\n<pre><code class=\"bash\">interface=wlan0\ndhcp-range=198.51.100.1,198.51.100.99,255.255.255.0,24h\n<\/code><\/pre>\n<p>\nAs we can see, connected devices will have IP addresses in the range 198.51.100.1\u2026 198.51.100.99.<\/p>\n<p>Finally, it's time to set up Wi-Fi. We edit the file <i>\/etc\/default\/hostapd<\/i> and enter the line <i>DAEMON_CONF=&gt;\/etc\/hostapd\/hostapd.conf<\/i>. Now let's edit the hostapd.conf file by entering the command <i>sudo nano \/etc\/hostapd\/hostapd.conf<\/i>.<br \/>\nWe enter the access point parameters:<\/p>\n<pre><code class=\"bash\">interface=wlan0\ndriver=nl80211\nssid=Raspberry Pi\nhw_mode=g\nchannel=7\nwmm_enabled=0\nmacaddr_acl=0\nauth_algs=1\nignore_broadcast_ssid=0\nwpa=2\nwpa_passphrase=12345678\nwpa_key_mgmt=WPA-PSK\nwpa_pairwise=TKIP\nrsn_pairwise=CCMP<\/code><\/pre>\n<p>\nHere, it is important to pay attention to the parameters \"ssid\" (access point name), \"wpa_passphrase\" (password), \"channel\" (channel number), and \"hw_mode\" (operating mode, a = IEEE 802.11a, 5 GHz, b = IEEE 802.11b, 2.4 GHz, g = IEEE 802.11g, 2.4 GHz). Unfortunately, there is no automatic channel selection, so the least congested WiFi channel must be chosen manually.<\/p>\n<p><b>Important<\/b>: in this test example, the password 12345678 is specified; in a real access point, something more complex should be used. There are programs that perform dictionary password attacks, and an access point with a simple password can be compromised. Sharing internet access with outsiders may also have legal consequences.<\/p>\n<p>Everything is ready; we can activate all services. <\/p>\n<pre><code class=\"bash\">sudo systemctl unmask hostapd\nsudo systemctl enable hostapd\nsudo systemctl start hostapd\nsudo systemctl reload dnsmasq<\/code><\/pre>\n<p>\nNow we should already see the new WiFi access point in the list of networks. However, to have internet access, we need to enable packet forwarding from Ethernet to WLAN, for which we enter the command <i>sudo nano \/etc\/rc.local<\/i> and add the iptables configuration line:<\/p>\n<pre><code class=\"bash\">sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE\n<\/code><\/pre>\n<p>\nThat's it. Restart the Raspberry Pi, and if everything was done correctly, we should see the access point and be able to connect to it.<\/p>\n<p><img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/fe586866e572ea9950b5ad5f6fcfe9e7.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nAs you can see, the speed is not too bad, and using such WiFi is quite feasible.<\/p>\n<p>By the way, a small <b>tip<\/b>: you can change the network name of the Raspberry Pi by executing the command <i>sudo raspi-config<\/i>. By default, it is set to (surprise:) raspberrypi. This is probably well known. However, not everyone is aware that this name is also available in the local network, but you need to add '.local' to it. For example, you can access the Raspberry Pi via SSH by entering the command <i>putty pi@raspberrypi.local<\/i>. However, there is one nuance: this works on Windows and Linux, but does not work on Android \u2014 you will still have to enter the IP address manually.<\/p>\n<h2>2. Media Server<\/h2>\n<p>\nThere are a thousand and one ways to create a media server on Raspberry Pi; I will only cover the simplest one. Suppose we have a favorite collection of MP3 files, and we want it to be accessible on the local network for all media devices. We will install the MiniDLNA server on the Raspberry Pi, which can do this for us. <\/p>\n<p>To install it, enter the command <i>sudo apt-get install minidlna<\/i>. After that, you need to configure the file by entering the command <i>sudo nano \/etc\/minidlna.conf<\/i>. There, you need to add just one line indicating the path to our files: <i>media_dir=\/home\/pi\/MP3<\/i> (the path can, of course, be different). After closing the file, we restart the service:<\/p>\n<p><i>sudo systemctl restart minidlna<\/i><\/p>\n<p>If we did everything correctly, we will have a ready media server on the local network, from which you can play music through a desktop WiFi radio or via VLC Player on Android:<\/p>\n<p><img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/07991c505022aa823c51bb7176540d90.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\n<b>Advice<\/b>: it is very convenient to upload files to Raspberry Pi using WinSCP \u2014 this program allows you to work with RPi folders as easily as with local ones.<\/p>\n<p><img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/7ebb1fd564575179d774ebebb61aecac.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<\/p>\n<h2>3. SDR Receiver<\/h2>\n<p>\nIf we have an RTL-SDR or SDRPlay receiver, we can use it on the Raspberry Pi with the GQRX or CubicSDR program. This will provide an autonomous and silent SDR receiver that can work around the clock.<\/p>\n<p>I apologize for the quality of the screenshot from the television screen:<\/p>\n<p><img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/8f466f8eb64a37c383861b5dd791c81c.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nWith RTL-SDR or SDRPlay, it is possible to receive various radio signals with a frequency of up to 1 GHz (even a bit higher). For example, you can listen to not only regular FM radio but also the communications of pilots or other services. By the way, radio amateurs can use Raspberry Pi to receive, decode, and send WSPR and other digital mode signals to the server. <noindex><a rel=\"nofollow\" href=\"https:\/\/www.rtl-sdr.com\/tutorial-setting-up-a-low-cost-qrp-ft8-jt9-wspr-etc-monitoring-station-with-an-rtl-sdr-v3-and-raspberry-pi-3\/\">WSPR and other digital modes<\/a><\/noindex>. <\/p>\n<p>A detailed discussion of SDR radio goes beyond the scope of this article; you can read more about it <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/450534\/\">here<\/a><\/noindex>. <\/p>\n<h2>4. Smart Home Server<\/h2>\n<p>\nFor those who want to make their home smarter, you can use the free OpenHAB program. <\/p>\n<p><img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/78d1b38bb45f4705276cf010b63f6927.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nThis is not just a program, but a whole framework with various plugins and scripts that allow you to manage different devices (Z-Wave, Philips Hue, etc.). Interested individuals can explore the details on the official site. <noindex><a rel=\"nofollow\" href=\"https:\/\/www.openhab.org\/\">https:\/\/www.openhab.org<\/a><\/noindex>.<\/p>\n<p>By the way, since we're on the topic of 'smart homes', an MQTT server can run quite well on a Raspberry Pi, which can be used by various local devices.<\/p>\n<h2>5. Client for FlightRadar24<\/h2>\n<p>\nIf you are an aviation enthusiast living in a region where FlightRadar coverage is lacking, you can help the community and all travelers by setting up a receiver at your place. All you need is an RTL-SDR receiver and a Raspberry Pi. As a bonus, you will get free access to a Pro account on FlightRadar24.<\/p>\n<p><img decoding=\"async\" alt=\"5 Useful Ways to Use Raspberry Pi\" src=\"\/wp-content\/uploads\/2019\/10\/84d67383fd6b528315789d2ddfc3f413.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nDetailed instructions <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/408003\/\">have already been published<\/a><\/noindex> on Habr.<\/p>\n<h2>Conclusion<\/h2>\n<p>\nOf course, this is far from an exhaustive list. The Raspberry Pi boasts decent computational power and can be used for a wide range of tasks, from a retro gaming console or video surveillance to license plate recognition or even as a service for astronomical all-sky cameras. <noindex><a rel=\"nofollow\" href=\"https:\/\/www.instructables.com\/id\/Wireless-All-Sky-Camera\/\">for meteor observation.<\/a><\/noindex> By the way, the content applies not only to the Raspberry Pi but also to various 'clones' (Asus Tinkerboard, Nano Pi, etc.), and all programs will likely work there as well. <\/p>\n<p>If there's interest from the audience (which will be gauged by the article ratings), the topic could be continued.<\/p>\n<p>And as usual, wishing everyone successful experiments. <\/p>\n<p>What is the validator game or 'how to launch a proof-of-stake blockchain'<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/472778\/\">habr.com<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041f\u0440\u0438\u0432\u0435\u0442 \u0425\u0430\u0431\u0440. Raspberry Pi \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u0435\u0441\u0442\u044c \u0434\u043e\u043c\u0430 \u043f\u043e\u0447\u0442\u0438 \u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e, \u0438 \u0440\u0438\u0441\u043a\u043d\u0443 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c, \u0447\u0442\u043e \u0443 \u043c\u043d\u043e\u0433\u0438\u0445 \u043e\u043d\u0430 \u0432\u0430\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u0435\u0437 \u0434\u0435\u043b\u0430. \u0410 \u0432\u0435\u0434\u044c Raspberry \u044d\u0442\u043e \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043d\u043d\u044b\u0439 \u043c\u0435\u0445, \u043d\u043e \u0438 \u0432\u043f\u043e\u043b\u043d\u0435 \u043c\u043e\u0449\u043d\u044b\u0439 fanless-\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u0441 Linux. \u0421\u0435\u0433\u043e\u0434\u043d\u044f \u043c\u044b \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0438\u043c \u043f\u043e\u043b\u0435\u0437\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 Raspberry Pi, \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043a\u043e\u0434 \u043f\u0438\u0441\u0430\u0442\u044c \u043d\u0435 \u043f\u0440\u0438\u0434\u0435\u0442\u0441\u044f \u0441\u043e\u0432\u0441\u0435\u043c. \u0414\u043b\u044f \u0442\u0435\u0445 \u043a\u043e\u043c\u0443 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e, \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":39480,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[688],"tags":[],"class_list":["post-39479","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-administrirovanie"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041f\u0440\u0438\u0432\u0435\u0442 \u0425\u0430\u0431\u0440. Raspberry Pi \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u0435\u0441\u0442\u044c \u0434\u043e\u043c\u0430 \u043f\u043e\u0447\u0442\u0438 \u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e, \u0438 \u0440\u0438\u0441\u043a\u043d\u0443 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c, \u0447\u0442\u043e \u0443 \u043c\u043d\u043e\u0433\u0438\u0445 \u043e\u043d\u0430 \u0432\u0430\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u0435\u0437 \u0434\u0435\u043b\u0430. \u0410 \u0432\u0435\u0434\u044c Raspberry \u044d\u0442\u043e \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043d\u043d\u044b\u0439 \u043c\u0435\u0445, \u043d\u043e \u0438 \u0432\u043f\u043e\u043b\u043d\u0435 \u043c\u043e\u0449\u043d\u044b\u0439 fanless-\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u0441 Linux.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/5-sposobov-poleznogo-ispolzovaniya-raspberry-pi\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd475 \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u0432 \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f Raspberry Pi | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041f\u0440\u0438\u0432\u0435\u0442 \u0425\u0430\u0431\u0440. Raspberry Pi \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u0435\u0441\u0442\u044c \u0434\u043e\u043c\u0430 \u043f\u043e\u0447\u0442\u0438 \u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e, \u0438 \u0440\u0438\u0441\u043a\u043d\u0443 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c, \u0447\u0442\u043e \u0443 \u043c\u043d\u043e\u0433\u0438\u0445 \u043e\u043d\u0430 \u0432\u0430\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u0435\u0437 \u0434\u0435\u043b\u0430. \u0410 \u0432\u0435\u0434\u044c Raspberry \u044d\u0442\u043e \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043d\u043d\u044b\u0439 \u043c\u0435\u0445, \u043d\u043e \u0438 \u0432\u043f\u043e\u043b\u043d\u0435 \u043c\u043e\u0449\u043d\u044b\u0439 fanless-\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u0441 Linux.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/5-sposobov-poleznogo-ispolzovaniya-raspberry-pi\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-31T19:33:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-31T19:33:41+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd475 ways to use Raspberry Pi beneficially | ProHoster","description":"\ud83e\udd475 ways to use Raspberry Pi beneficially | ProHoster","canonical_url":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/5-sposobov-poleznogo-ispolzovaniya-raspberry-pi","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd475 \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u0432 \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f Raspberry Pi | ProHoster","og:description":"\u041f\u0440\u0438\u0432\u0435\u0442 \u0425\u0430\u0431\u0440. Raspberry Pi \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u0435\u0441\u0442\u044c \u0434\u043e\u043c\u0430 \u043f\u043e\u0447\u0442\u0438 \u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e, \u0438 \u0440\u0438\u0441\u043a\u043d\u0443 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c, \u0447\u0442\u043e \u0443 \u043c\u043d\u043e\u0433\u0438\u0445 \u043e\u043d\u0430 \u0432\u0430\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u0435\u0437 \u0434\u0435\u043b\u0430. \u0410 \u0432\u0435\u0434\u044c Raspberry \u044d\u0442\u043e \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043d\u043d\u044b\u0439 \u043c\u0435\u0445, \u043d\u043e \u0438 \u0432\u043f\u043e\u043b\u043d\u0435 \u043c\u043e\u0449\u043d\u044b\u0439 fanless-\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u0441 Linux.","og:url":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/5-sposobov-poleznogo-ispolzovaniya-raspberry-pi","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-10-31T19:33:41+00:00","article:modified_time":"2019-10-31T19:33:41+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"39479","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-01-24 02:05:19","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 00:49:31","updated":"2026-01-24 02:05:19","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/39479","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=39479"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/39479\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/39480"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=39479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=39479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=39479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}