rpi_epigen

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
rpi_epigen [2019/06/23 14:17] – [Specification] Júne Parkrpi_epigen [2019/07/18 20:10] – [Specification] Júne Park
Line 26: Line 26:
 {{:rpi_epigen.jpg?nolink&250|}} {{:rpi_epigen.jpg?nolink&250|}}
  
-  * Name: {{material>assignment_turned_in}} EPiGEN Crystal (official) | {{material>create}} 자몽 (korean)+Name: {{material>assignment_turned_in}} EPiGEN Crystal (official) | {{material>create}} ''자몽'' (korean)
  
 ---- ----
 ==== Specification ====  ==== Specification ==== 
-  * Model: [[https://www.raspberrypi.org/products/raspberry-pi-2-model-b//|Raspberry Pi 2 Model B+]] [[wp>Raspberry_Pi#Model_B|Raspbierry Pi Model B]] + 
-  {{fa>database?color=#1A281F}}1T mount on ''~/Storage'' & 500G mount on ''~/Repository'' - {{fa>plug}} [[SECURED:JUNE_HARDWARE#data_storage|Storage in details]] {{fa>lock}} +{{material>developer_board?32&color=#134611}} Model: [[https://www.raspberrypi.org/products/raspberry-pi-2-model-b//|Raspberry Pi 2 Model B+]] [[wp>Raspberry_Pi#Model_B|Raspbierry Pi Model B]] 
-  {{fa>wifi?color=#635255}}Wireless {{fa>usb?color=#000000}} (''wlan0'') & Wired (''eth0'') - {{fa>wifi}} [[SECURED:HOME_NETWORK#dhcp_assigned_ip|Júne's home network]] {{fa>lock}} + 
-  {{fa>tasks?color=#CE7B91}} Private storage and Backup point+{{material>sd_storage?32&color=#3E8914}} {{fa>database}} 1T mount on ''~/Storage''{{fa>database}} 500G mount on ''~/Repository'' --- {{fa>plug}} [[SECURED:JUNE_HARDWARE#data_storage|Storage in details]] {{fa>lock}} 
 + 
 +=== Live status of storages === 
 + 
 +<code ini> 
 +Mounted on             Type  Size  Used Avail Use% 
 +/home/meson/Storage    ext4  917G  414G  458G  48% 
 +/home/meson/Repository ext4  458G  292G  143G  68% 
 +</code> 
 + 
 +{{material>network_wifi?32&color=#3DA35D}}  Wired (''eth0''), {{fa>wifi?color=#635255}} Wireless {{fa>usb?color=#000000}} (''wlan0'') & Wired {{fa>usb?color=#000000}} (''eth1'' --- {{fa>wifi}} [[SECURED:HOME_NETWORK#dhcp_assigned_ip|Júne's home network]] {{fa>lock}} 
 + 
 +{{material>person?32&color=#96E072}} Private storage and Backup point
  
 ---- ----
Line 103: Line 115:
  
 ----  ---- 
 +
 +==== Delete unnecessary files regularly ==== 
 +''sudo crontab -e'' Add command line to find & delete. e.g.) Delete all ''.nfo'' file in target directory and its sub-directories at 30 minutes past every 6 hours. 
 +
 +<code bash>
 +  30 */6 * * * /usr/bin/find /..((your path)).../ -name '*.nfo' -exec rm -f {} \;
 +</code>
 +
 +Delete empty directory at 30 minutes past every 12 hours 
 +
 +<code bash>
 +  30 */12 * * * /usr/bin/find /..((your path)).../ -type d -empty -delete
 +</code>
 +
 +----
 +
 +==== Delete all files except for desired file types ==== 
 +
 +<code bash> 
 + find . -type f ! -name '*.mkv' -delete
 +</code>  
 +
 +----
 +
 +
  • rpi_epigen
  • Last modified: 2023/06/09 09:50
  • by Júne Park