workdirfs/README.md

34 lines
753 B
Markdown
Raw Normal View History

2020-02-11 15:14:26 +01:00
# workdirfs
2016-04-11 00:40:01 +02:00
2020-02-11 15:14:26 +01:00
This repo contains a fuse-filesystem, which creates automagically a directory in users $HOME
and subdir in directory $HOME/archive/workdir with todays date as subdirname.
All directories are created, if not existent.
2016-04-11 00:40:01 +02:00
2020-02-11 15:14:26 +01:00
It also contains a systemd-unit for users systemd-process, which will start on login and ends, when user logs out.
2016-04-11 00:40:01 +02:00
2020-02-11 15:17:28 +01:00
## System Requriements
2020-02-11 16:10:32 +01:00
python3 is requried and also this packages:
2020-02-11 15:17:28 +01:00
### Debian based systems
```
sudo apt install python3-fuse python3-fusepy
```
### Redhat based systems
```
sudo dnf install python3-fusepy
```
2020-02-11 16:10:32 +01:00
## Installation
Run setup.sh, to install it for all user.
And then reload users systemd
```
systemctl --user daemon-reload
systemctl --user restart workdirfs.service
```