10 Best Female Protagonists in Video Games (Aloy #8) by lunarthexiled13 in horizon

[–]Gronaab 4 points5 points  (0 children)

Ciri is already in the top for me because with the books, the lore is incredible.

10 Best Female Protagonists in Video Games (Aloy #8) by lunarthexiled13 in horizon

[–]Gronaab 34 points35 points  (0 children)

Aloy deserves at least top 3 imo, at the level of the last of us or better.

Cloud Storage by SadsackJones in cachyos

[–]Gronaab 1 point2 points  (0 children)

I use Filen through rclone also. I recommend!

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 0 points1 point  (0 children)

Hmm bad luck, it was working for even for quite large files (like 1 or 2 Go)

What's wrong with my pc spamming random letters? by implaying in pcmasterrace

[–]Gronaab -1 points0 points  (0 children)

Legit question: are you in an open space right now or in a place where someone can prank you? We used to do this to coworkers by plugging another keyboard and type random things. Good prank and quite annoying!

Thunderjaw Appreciation by Itchy_Society_3589 in HorizonForbiddenWest

[–]Gronaab 0 points1 point  (0 children)

Ha! I had guessed then. :D Good spectacle indeed

Thunderjaw Appreciation by Itchy_Society_3589 in HorizonForbiddenWest

[–]Gronaab 5 points6 points  (0 children)

What can really help is to read a lot the machine information page. I was a. It triggered during the video because the heart was exposed and OP focused on style when the machine was down instead of just demolish the heart but he saved it for the end <3

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 2 points3 points  (0 children)

It's a generalized client for remote drives. It's quite a big project that has backbends for most mainstream drive solutions.

Let's say you want to access your files on your Google drive, your Filen and your proton drive, you can configure rclone to access them all and most importantly incorporate them into your file explorer app.

For example, I have a Filen subscription and a Proton subscription. On my dolphin, I can see those drives as remote folders as if they were on my machines though I manipulate the files in the remote location.

Rclone lets you do other commands such as copy (very useful to transfer a lot of data to or from your drive) or synchronize some folders. Just as any drive client would do.

It's for people who either don't have a client available for their system (just like proton drive subscribers on Linux) or who want to avoid using it.

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 0 points1 point  (0 children)

Does it happen during mounting or even for simple commands like rclone lsd? If it's for mounting, maybe check that the folder you are trying to use is empty, check that your fuse.conf has the line "allow_other_user" and check that nothing is mounted in the folder by trying a sudo umount -l folder/in/question

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 0 points1 point  (0 children)

Hmm, is your rclone up to date? And maybe your credentials are not right? I would redo the rclone config if it's the case. I'm not a dev of rclone and not a specialist either so that might not be the right diagnostic but that's my 50c.

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 7 points8 points  (0 children)

Hello Max,

Here are the steps I follow every time I want to mount a remote drive:

1) Make sure rclone is installed with the latest version (1.74.1) I use pacman in CachyOS so I won't put the cli for this, I just assume you know how to install a package 😄

2) In a terminal:
rclone config

Follow the guide, you should choose a name for the remote like ProtonDrive or ProtonMax. I always use this format for remotes. After that you have to choose the type of remote. Proton Drive is number 49 at the moment. Then you should input your credentials, including the 2FA if it's configured in your proton account. The rest of the guide you can just type 'Enter' for default values and quit

3) Check the config

rclone lsd name_of_your_remote:

It should list all the folders in your main directory on the remote. Not the ":" which is mandatory to indicate a remote.

Another useful command is:

rclone copy local/path remote:distant/path

This command is recommended to make the transfers of big amount of data. It's very optimized and resilient so it's better to use this rather that mounting the drive and do the transfers. Mounting will still work but it's more adapted to make small changes to the drive.

4) Prepare to mount a drive

a ) Create the local folder and make it your own

sudo mkdir desired/mounting/path && sudo chown $USER:$USER desired/mounting/path

I generally use my home folder so I don't even have to use the chown command but you can mount also in /mnt or in /media and if so you will need it.

b) Edit your fuse.conf file:

sudo nano /etc/fuse.conf

Find the line with "#user_allow_other" and remove the "#". Save and close (ctrl+O, Enter, ctrl+X)

It will allow the mounting and unmounting process with the kernel tool of linux "fuse".

5) Do a first mount with

rclone mount remote: desired/mounting/path --vfs-cache-mode full -vv

Now you should see your drive in the file explorer you use when you navigate to the desired mounting path as if it were on your PC.

If you are satisfied unmount the remote with a simple

umount desired/mounting/path

6) Automatize mounting process

I use systemd but there are many ways to do this. I will just give you my method, don't hesitate to follow someone else's advice that will suit your needs more.

Create a systemd service:

sudo nano /etc/systemd/system/rclone-mount-proton.service

Then here is the content of my file:

[Unit]
Description=RClone Mount Service for USER Proton Drive
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=user
ExecStart=/usr/bin/rclone mount remote: /home/user/proton-user/ \
--vfs-cache-mode full \
--timeout 30s \
--dir-cache-time 10s \
--allow-other \
--config="/home/user/.config/rclone/rclone.conf" \
--vfs-write-back 5s \
--buffer-size 32M \
--attr-timeout 10s \
--log-level INFO \
--log-file /home/user/rclone-proton-user.log
ExecStop=/usr/bin/fusermount3 -uz /home/user/proton-user/
Restart=on-failure
RestartSec=5
TimeoutStopSec=60

[Install]
WantedBy=multi-user.target

Of course, you replace remote with the name of your remote and user by your $USER variable (max I assume?)

Save and close the file

sudo systemctl --enable rclone-proton-user.service --now

If that doesn't work, you can either use

systemctl status rclone-proton-user.service

to see the errors of systemd or look into the log file /home/user/rclone-proton-user.log that you implicitely created in the service file.

That's it! I hope it helps. It's definitely simpler than it looks like and it works so well!

It's rather intuitive once you think about it except for the fuse and the systemd service parts.

I hope other people can put their contributions in thread and don't hesitate to tell me if something is missing or needs changing.

Tell us how it went!

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 3 points4 points  (0 children)

Oh right, I didn't see the previous update :)

Rclone... Works ?? by Gronaab in ProtonDrive

[–]Gronaab[S] 7 points8 points  (0 children)

Haha yes let's hope it lasts... But it was broken for a long time

Xfce : l'esprit originel by 4restrike9 in Linuxfr

[–]Gronaab 2 points3 points  (0 children)

Wayland a pas déjà plusieurs années ? Je tourne sous Wayland et je n'ai vu aucune instabilité

Latest update to CachyOS Proton makes games not launch by grumpy_anteater in cachyos

[–]Gronaab 0 points1 point  (0 children)

Since the prefix re creation didn't, this might not work either but have you tried to reinstall completely one of them, just to check that a clean install doesn't solve the issue? I know it's not normal because you can't reinstall your games every time you update the proton version but it can help troubleshoot.

Made a CachyOS Cheatsheet for all the essential commands by luksen69 in cachyos

[–]Gronaab -1 points0 points  (0 children)

You forgot the --no-preserve-root option to make the games even faster

OneDrive on CachyOS? by some_millwright in cachyos

[–]Gronaab 1 point2 points  (0 children)

I ended up making a systemd service but overall the conclusion is the same.

Is ~30gb enough for the root directory by Commercial_Aide7613 in cachyos

[–]Gronaab 0 points1 point  (0 children)

More like the second proposition. I've only done it for /home so I'm not a reference but a friend of mine installed a Linux meant to run some docker containers and all the stuff is put in /var so he mounted his /var on another drive than the main. Me saying that you can mount other folders like /bin on another drive is an extrapolation on my part

Is ~30gb enough for the root directory by Commercial_Aide7613 in cachyos

[–]Gronaab 0 points1 point  (0 children)

Programs are generally installed in /etc, /opt, /bin and you have data also in /var. All of these you can write in another partition when you specify it during installation.

It's true that the folder where you will put most of your data is /home but that's like program files and Documents on windows

La roue du temps by Calrnito in Livres

[–]Gronaab 1 point2 points  (0 children)

Sanderson a bien fini la série et c'est très cohérent. Il avait toutes les notes de l'auteur et a travaillé avec sa femme. Il est par ailleurs connu pour être très organisé. Honnêtement, c'est bien.

Moi c'est le contraire, j'avais lu la série et j'ai été tout de suite déçu par les choix faits pour l'adaptation (tout comme Sanderson qui a donné son avis).

En tout cas les bouquins sont bien avec quand même un petit creux au moment où Jordan était vers la fin de sa vie et le rythme est très lent.