Search found 313 matches
- 27 Feb 2025, 13:32
- Forum: General Discussion
- Topic: Strange new behaviour from cron
- Replies: 14
- Views: 2556
Re: Strange new behaviour from cron
Specifically with cron, there is no default environment variables. Historically, cron has always completely wiped the environment, including PATH. So it's worth setting DISPLAY=:0 in crontab. A user should always set every environment variable that matters.
- 22 Feb 2025, 21:21
- Forum: General Discussion
- Topic: Strange new behaviour from cron
- Replies: 14
- Views: 2556
Re: Strange new behaviour from cron
It's possible that your DISPLAY is a different value. Perhaps when you've logged off, and your computer is just at the login screen, the DISPLAY might be :0.0 or :10 . That's not very likely, but possible. If you've left your session logged in, then most likely DISPLAY=:0 would still suffice ...
- 20 Feb 2025, 22:34
- Forum: Help
- Topic: Unable to build FreeFileSync 14.0 on Ubuntu 24.04+
- Replies: 4
- Views: 721
Re: Unable to build FreeFileSync 14.0 on Ubuntu 24.04+
If you can stomach disabling dark mode, I finally got a patch set up: https://gitlab.com/bgstack15/stackrpms/-/blob/master/freefilesync/debian/patches/no-wx3.3.0.patch?ref_type=heads
- 11 Dec 2024, 20:56
- Forum: Help
- Topic: Linux - unable to install 13.9
- Replies: 4
- Views: 480
Re: Linux - unable to install 13.9
Reality check: when running a program by name, you have to specify a directory as part of the command, unless the program is in one of the directories listed in your PATH environment variable. For example, if you want to run install.run from the current directory (also known as "."), you would have ...
- 22 Jul 2024, 20:07
- Forum: Help
- Topic: FreeFileSync on NAS
- Replies: 7
- Views: 2819
Re: FreeFileSync on NAS
rsync is good for the cli users who like to read man pages. FreeFileSync works better for regular desktop users. They definitely do not use the same configuration files/settings/options, so depending on the complexity of your FreeFileSync config, you might not find rsync suitable. If all you do is ...
- 17 Jun 2024, 20:42
- Forum: Help
- Topic: How to check the last run time (linux)?
- Replies: 3
- Views: 609
Re: How to check the last run time (linux)?
or check the timestamp of the log file? That would be when it was last modified, so when the last action of the sync process occurred.
stat --format '%y' /path/to/logfile
If FreeFileSync doesn't make such a useful log, then maybe capturing standard output from cron might be useful (assuming ...
stat --format '%y' /path/to/logfile
If FreeFileSync doesn't make such a useful log, then maybe capturing standard output from cron might be useful (assuming ...
- 11 Jun 2024, 15:24
- Forum: Help
- Topic: Freefilesync window frame flashes briefly upon start
- Replies: 10
- Views: 695
Re: Freefilesync window frame flashes briefly upon start
GTK3 and now 4 have always had their own bizarre choices and ignore any downstream developers and users. It's a nice toolkit, if the quirks aren't breaking features you wish to use.
- 06 Apr 2024, 19:54
- Forum: General Discussion
- Topic: Strange new behaviour from cron
- Replies: 14
- Views: 2556
Re: Strange new behaviour from cron
Depending on the cron implementation in Ubuntu, and where you are storing your cron job, you might need to (get to) specify the user that should run the command.
For example, when I place a cron job in /etc/cron.d/40_myappname_cron I use this format:
00 13 * * * bgstack15 DISPLAY=:0 /opt ...
For example, when I place a cron job in /etc/cron.d/40_myappname_cron I use this format:
00 13 * * * bgstack15 DISPLAY=:0 /opt ...
- 21 Mar 2024, 12:56
- Forum: General Discussion
- Topic: Am I stuck forever with FreeFileSync 13.3?
- Replies: 8
- Views: 1582
Re: Am I stuck forever with FreeFileSync 13.3?
Hm, perhaps that can be a feature request: to ignore trailing spaces with a checkbox in the settings dialog.
- 19 Mar 2024, 00:35
- Forum: Help
- Topic: Activating GUI with a crontab
- Replies: 5
- Views: 1083
Re: Activating GUI with a crontab
Depending on your cron implementation and where your cronjob is, you might need to add the username. For example, you wouldn't need to add the user if you are using `crontab -e`. But if you are editing `/etc/cron.d/80_freefilesync_cron` you probably would need to specify the user:
0 * * * * ineuw ...
0 * * * * ineuw ...
- 24 Feb 2024, 23:16
- Forum: Help
- Topic: Cron Problem Yet Again - openSUSE Tumbleweed Linux
- Replies: 11
- Views: 1176
Re: Cron Problem Yet Again - openSUSE Tumbleweed Linux
@daviank, what you missed is that the user ran crontab -l as a regular user, so it was just going to use his user, with no field for setting it because he cannot change it. Otherwise, in a root-controlled /etc/crontab or /etc/cron.d/ file, you can set the username.
- 23 Feb 2024, 13:59
- Forum: Help
- Topic: Cron Problem Yet Again - openSUSE Tumbleweed Linux
- Replies: 11
- Views: 1176
Re: Cron Problem Yet Again - openSUSE Tumbleweed Linux
Does SUSE Tumblewood/your setup use Wayland?
Does KDE still use SDDM for the display manager (login screen)? Maybe you can do this, from https://wiki.archlinux.org/title/SDDM#X_authority_(aka_MIT-MAGIC-COOKIE)_file:
33 0 * * * DISPLAY=:0 XAUTHORITY="$( find /var/run/sddm/ -type f )" /usr/local ...
Does KDE still use SDDM for the display manager (login screen)? Maybe you can do this, from https://wiki.archlinux.org/title/SDDM#X_authority_(aka_MIT-MAGIC-COOKIE)_file:
33 0 * * * DISPLAY=:0 XAUTHORITY="$( find /var/run/sddm/ -type f )" /usr/local ...
- 22 Feb 2024, 12:54
- Forum: Help
- Topic: Cron Problem Yet Again - openSUSE Tumbleweed Linux
- Replies: 11
- Views: 1176
Re: Cron Problem Yet Again - openSUSE Tumbleweed Linux
Is it possible that flatpak needs more environment variables to correctly connect to the desktop or otherwise run? Have you tried with some other flatpak program in cron, to see if it operates?
Can you try inserting the DISPLAY=:0 on the same line with the command, in front of the command flatpak ...
Can you try inserting the DISPLAY=:0 on the same line with the command, in front of the command flatpak ...
- 18 Feb 2024, 01:30
- Forum: Help
- Topic: How do I restore the default User Interface?
- Replies: 2
- Views: 716
Re: How do I restore the default User Interface?
Look for the config file. It's probably in ~/.config/FreeFileSync (Linux) or %APPDATA% (Windows). I think it's named GlobalSettings.xml.
edit: did you try the Tools menu -> "Reset layout" option?
edit: did you try the Tools menu -> "Reset layout" option?
- 01 Feb 2024, 13:58
- Forum: Help
- Topic: Question about updating FreeFileSync on Ubuntu 20.04
- Replies: 4
- Views: 1453
Re: Question about updating FreeFileSync on Ubuntu 20.04
Ubuntu tends to fork from Debian unstable (sid), which does have FreeFileSync 13.3 . Not sure which version(s) of Ubuntu would still be tracking this closely to Debian unstable, but FreeFileSync of any version number is at least in the two previous "stable" releases of Debian (as seen on the page I ...
- 28 Dec 2023, 13:10
- Forum: Help
- Topic: Run on cronjob
- Replies: 4
- Views: 4105
Re: Run on cronjob
You are probably missing the DISPLAY environment variable. See my old post.
- 09 Dec 2023, 17:00
- Forum: Help
- Topic: FFS as Docker under Unraid
- Replies: 1
- Views: 4799
Re: FFS as Docker under Unraid
You might try wrapping FreeFileSync with Xvfb, which you will need inside your docker container. It sets up a "X virtual frame buffer" which can also be called a dummy display.
- 26 Nov 2023, 23:32
- Forum: Help
- Topic: Installation failing on Arch Linux Steamdeck
- Replies: 8
- Views: 4521
Re: Installation failing on Arch Linux Steamdeck
In Arch Linux the package to install gtk2 is named gtk2, based on https://wiki.archlinux.org/title/GTK#Installation
- 22 Nov 2023, 00:29
- Forum: Help
- Topic: А BIN extension is required
- Replies: 6
- Views: 6326
Re: А BIN extension is required
If somebody were to bother to go through the steps required to convert the FreeFileSync package into a WD My Cloud app (https://community.wd.com/t/my-cloud-os5-app-template/286542) it could be done.
A list of available apps for that series of devices is listed at https://support-en.wd.com/app ...
A list of available apps for that series of devices is listed at https://support-en.wd.com/app ...
- 29 Sep 2023, 23:03
- Forum: General Discussion
- Topic: Open Source? Is it true ?
- Replies: 4
- Views: 3131
Re: Open Source? Is it true ?
I compile this software from the source tarball for every new release. But that's on a development-friendly operating system (GNU+Linux). Perhaps compiling on Windows is easy for Windows developers. But on GNU+Linux, it's easier for someone like me to compile software. Normally you just need gcc and ...
- 07 Sep 2023, 23:42
- Forum: Help
- Topic: Drag and Drop?
- Replies: 4
- Views: 1324
Re: Drag and Drop?
In Bodhi Linux, you will want to install a few packages:
sudo apt-get install cifs-utils
This will allow you then to run sudo mount -t cifs . CIFS is another name for SMB/Samba.
You might want something like:
sudo mount -t cifs //hp/photos/Miscellaneous /net
Where /net is the mount point (empty ...
sudo apt-get install cifs-utils
This will allow you then to run sudo mount -t cifs . CIFS is another name for SMB/Samba.
You might want something like:
sudo mount -t cifs //hp/photos/Miscellaneous /net
Where /net is the mount point (empty ...
- 25 Jul 2023, 20:21
- Forum: Help
- Topic: FTBFS for 12.5
- Replies: 4
- Views: 969
Re: FTBFS for 12.5
Thanks, Zenju!
- 24 Jul 2023, 20:17
- Forum: Help
- Topic: FTBFS for 12.5
- Replies: 4
- Views: 969
FTBFS for 12.5
Hello Zenju,
I am trying to compile 12.5 on Devuan GNU+Linux as always, I get this error:
g++-12 -std=c++23 -pipe -DWXINTL_NO_GETTEXT_MACRO -I../.. -I../../zenXml -include "zen/i18n.h" -include "zen/warn_static.h" -Wall -Wfatal-errors -Wmissing-include-dirs -Wswitch-enum -Wcast-align -Wnon-virtual ...
I am trying to compile 12.5 on Devuan GNU+Linux as always, I get this error:
g++-12 -std=c++23 -pipe -DWXINTL_NO_GETTEXT_MACRO -I../.. -I../../zenXml -include "zen/i18n.h" -include "zen/warn_static.h" -Wall -Wfatal-errors -Wmissing-include-dirs -Wswitch-enum -Wcast-align -Wnon-virtual ...
- 17 Jul 2023, 18:13
- Forum: Help
- Topic: Installation failing on Arch Linux Steamdeck
- Replies: 8
- Views: 4521
Re: Installation failing on Arch Linux Steamdeck
Ah, so the FreeFileSync installer wants to control /usr/local/bin (normal behavior), but on this device, /usr/local/bin/ is mounted read-only. Perhaps you should try the per-user installation option. I expect it would deploy the binaries to ~/bin or ~/.local/bin/ (suggested by https://specifications ...
- 23 May 2023, 18:58
- Forum: Help
- Topic: SOLVED: New version 12.3 automatically updates my .ffs_gui config files?
- Replies: 6
- Views: 1047
Re: New version 12.3 automatically updates my .ffs_gui config files?
I haven't examined the latest version, but I know that the config files themselves are versioned at least for config-version. Perhaps FFS 12.3 updated to a newer version of the config file (which determines which attributes about the sync job are stored, as the app has added features over time), and ...
- 21 May 2023, 12:17
- Forum: General Discussion
- Topic: Open Source? Is it true ?
- Replies: 4
- Views: 3131
Re: Open Source? Is it true ?
Zenju uses the GPL-3.0 primarily for his source code ( version 12.3 , the current version listed at the Download page). Additionally some components he licenses under the OpenSSL license , curl license , something labeled the libssh2 license (which vaguely resembles the MIT to me at first glance; I ...
- 08 May 2023, 12:01
- Forum: General Discussion
- Topic: Is there a guide of how to compile the source code ?
- Replies: 3
- Views: 2221
Re: Is there a guide of how to compile the source code ?
It's a tough question. A few years ago, the make target "install" was removed as well! Would following instructions for Debian or Fedora Linux help you? https://gitlab.com/bgstack15/stackrpms/-/tree/master/freefilesync
- 09 Feb 2023, 12:57
- Forum: General Discussion
- Topic: Board Layout
- Replies: 26
- Views: 4935
Re: Board Layout
Dear Zenju, why is the "unread messages" icon now a gray envelope?! It blends in with the background. Please stop making these changes. Please revert to the original design and color scheme. The only reason I knew this thread had new content was because it said "Zenju, 56 minutes ago" and I just got ...
- 08 Feb 2023, 13:04
- Forum: General Discussion
- Topic: Board Layout
- Replies: 26
- Views: 4935
Re: Board Layout
I was being polite. This new forum layout is unpleasant and makes me want to visit less often.
Perhaps you could make a poll to ask the users if they like the new layout better than before? Perhaps I'm in the minority.
Perhaps you could make a poll to ask the users if they like the new layout better than before? Perhaps I'm in the minority.
- 08 Feb 2023, 00:35
- Forum: General Discussion
- Topic: Board Layout
- Replies: 26
- Views: 4935
Re: Board Layout
It appears that mousing over the "5 hours ago" section will take you to the "#unread" part of a thread, which actually sounds like it could be incorrect. If the thread has multiple unread posts for a signed-in user, I would expect the list of threads would show the most-recent comment in the thread ...