Replies: 7 comments 3 replies
-
Try these commands to drill down to what's taking up the most space. This is on my Pi5: # Get the largest five folders
du -hs * | sort -rh | head -5
27G allsky
1.9G MLCloudPriv
1.6G Projects
1.1G indi-allsky
55M Bookshelf
# Get the largest five folders
du -Sh | sort -rh | head -5
1.6G ./allsky/images/20241111
1.6G ./allsky/images/20241110
1.5G ./allsky/images/20241109
1.5G ./allsky/images/20241107
1.5G ./allsky/images/20241105
# Get the largest five files in the folder you are in. This is from when I run it from the root (/) directory but can be run in any folder
find -type f -exec du -Sh {} + | sort -rh | head -n 5
637M ./MLCloudPriv/lib/python3.11/site-packages/tensorflow/libtensorflow_cc.so.2
222M ./.cache/pip/http/1/c/1/c/7/1c1c7083aa18c8955c1b92c171d623eaa201a7ad590200a581a2ad66
222M ./.cache/pip/http-v2/1/c/1/c/7/1c1c7083aa18c8955c1b92c171d623eaa201a7ad590200a581a2ad66.body
214M ./.cache/pip/http/2/f/2/f/d/2f2fd1d2b64925ffc8b788d6e497b136af116b93cc8ab5477beda1f4
170M ./MLCloudPriv/mlCloudDetect.keras
|
Beta Was this translation helpful? Give feedback.
-
Try running |
Beta Was this translation helpful? Give feedback.
-
I struggled with the RPi4. I do not want to buy another one. I tested every possible thing that may be wrong with the Hardware, discovered a bad cable. I bought a new large SD Card, installed a fresh copy of everything, configured as much as I could before I ran out of stream. Tomorrow I will configure some more. |
Beta Was this translation helpful? Give feedback.
-
I regret that the RPi4 will not stay connected, it drops out and changes its IP Address every few minutes. It is time to buy another one. |
Beta Was this translation helpful? Give feedback.
-
Replaced the RPi and the Router it uses as a Bridge. I do not have Ethernet outside. A couple weeks ago, all my WiFi devices started buffering and shuddering. The RPi would frequently disconnect and reset its IP Address. Upon configuring the new router, there were 64 SSIDs on each 2.4GHz and 5GHz. There must be many more than 64 but the SSID scan only went to 64. I am guessing more than 100. I am awash in WiFi networks. This may be the source of the WiFi difficulties. I made sure the Bridge used both 2.4GHz and 5GHz. The Access Point the Bridge uses is only 6 feet away. Time will tell if this configuration will operate reliably. Note: connecting to the RPi with PUTTY tells me if the RPi disconnects when PUTTY disconnects; so far so good. |
Beta Was this translation helpful? Give feedback.
-
@jsalsburg, ever consider PoE so you can use the LAN? |
Beta Was this translation helpful? Give feedback.
-
I recently upgraded the lens on my camera and had trouble with the monitor to administrate the RPi on my workbench. This caused the External SSD in the operating system to malfunction. The next day several things in the AllSky Software stopped working. I noticed the SD Card was full. I deleted the Journal entries but that only bought me a few hours before the SD Card filled to 100%. I searched for hours and cannot determine why this is happening or where the offending file or files that are suddenly causing this problem after months of operation.
Beta Was this translation helpful? Give feedback.
All reactions