Python Forum
How to umount on a closed distro
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to umount on a closed distro
#1
Hi,

I'm running an old motioneye distro on a Raspberry Pi with python 2.7. It's working fine but it has filenames read-write only.

Because I'd like to run a Python script which updates a log file, I'm not able to do automatically because of the locked filesystem.
If I issue os.system("mount -o remount,rw /") it works and I can update my log file accordingly.

So, I added @reboot mount -o remount,rw / in crontab but it doesn't work. rc.local and systemd are not available.

I also added the below code in my script but with no avail.

Is there another solution to my problem?

TIA

def write_to_log(message):
    if os.system("mount | grep 'on / ' | grep -q rw") == 0:
        with open("/home/log.txt", "a") as log_file:  # Open in append mode
            timestamp = datetime.now(local_tz).strftime("%Y-%m-%d %H:%M:%S")
            log_file.write("{} - {}\n".format(timestamp, message))
    else:
        os.system("mount -o remount,rw /")
Reply
#2
Are you not able to change /etc/fstab to mount the filesystem as read-write?
Reply
#3
(Dec-24-2024, 02:15 PM)ndc85430 Wrote: Are you not able to change /etc/fstab to mount the filesystem as read-write?

Which of these files are you referring to?

-rw-r--r--    1 root     root           242 Oct 29  2021 fstab.disk
-rw-r--r--    1 root     root           228 Oct 29  2021 fstab.extra
-rw-r--r--    1 root     root           506 Oct 29  2021 fstab.overlay
-rw-r--r--    1 root     root           523 Oct 29  2021 fstab.sys


I'm not really comfortable in modifying any of those files.
Reply
#4
Normally on Linux, there's just one file called fstab in /etc. I can't advise further here - I don't know the Raspberry Pi system and whether those files are in the normal fstab format. You might want to ask on a Raspberry Pi forum about that.
Skaperen and ebolisa like this post
Reply
#5
this is not a Python question. it is more of a Raspberry Pi or Linux distro variation question. perhaps you can try linuxquestions.org to see what they may know. you may be asked to list all the files in your /etc directory.
ndc85430 likes this post
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply
#6
(Dec-24-2024, 01:59 PM)ebolisa Wrote:
def write_to_log(message):
    if os.system("mount | grep 'on / ' | grep -q rw") == 0:
        with open("/home/log.txt", "a") as log_file:  # Open in append mode
            timestamp = datetime.now(local_tz).strftime("%Y-%m-%d %H:%M:%S")
            log_file.write("{} - {}\n".format(timestamp, message))
    else:
        os.system("mount -o remount,rw /")

Reminds me, the code I've written to put one CPU-Core to 100% load to speed up the CPU-fan. The problem were the regulators, which were too hot and degraded, but if the fan were speeded up, it didn't crash during rapid load changes. It worked one year until I changed my hardware.

You're trying to solve a possible hardware or OS-dependent issue with a bad written program. It's not a solution, it's a workaround, and you know that a workaround will stay forever.

Check your SD-Card for file system errors and degradation. Maybe the media itself is affected.
If the media is OK, then the issue should be the OS itself. Btw. I don't know the distribution you're using.

In the most cases, the issue is caused by a too early power off, if you shut down your RPi. If the RPi was not able to umount before the power off, it could corrupt the FS, which could prevent mount in readwrite mode if fsck could not repair it.

Never use Python 2.7 for new programs and never use os.system(). Even in C you should not use the function system(). The function subprocess.run() is a good replacement for os.system(). It returns an object which allows you to access stdout, stderr, returncode, etc.
Skaperen likes this post
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  asyncio: WebSocketClient:connection closed (ERR): sent 1011 Michel777 0 464 Feb-04-2025, 09:22 PM
Last Post: Michel777
  A question about 'Event loop is closed' fc5igm 3 4,881 Oct-01-2024, 09:12 AM
Last Post: skdaro
  [closed] check whether an integer is 32 or 64 bits paul18fr 4 4,965 May-27-2024, 04:55 PM
Last Post: deanhystad
  ValueError: I/O operation on closed file problem aliwien 0 2,667 Apr-23-2021, 05:50 PM
Last Post: aliwien
  Run an app in a standalone terminal and wait until it's closed glestwid 2 3,398 Aug-30-2020, 08:14 AM
Last Post: glestwid
  Inclusive (closed) range with float numbers mapg 4 5,895 Apr-27-2019, 09:09 PM
Last Post: Gribouillis
  A crucial question on coexistence of Py2-Py3 under Ubuntu distro samsonite 7 4,964 Mar-07-2019, 03:34 PM
Last Post: samsonite
  Looking for a new distrohttps://python-forum.io/Thread-Looking-for-a-new-distro Larz60+ 7 5,165 Oct-19-2018, 01:39 AM
Last Post: metulburr
  Methods of running a script on Linux distro Vysero 6 5,106 Aug-21-2018, 09:11 PM
Last Post: heras
  VMware View - Session opened/closed? hhh 0 2,770 May-31-2018, 10:10 AM
Last Post: hhh

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020