Package Details: traccar-bin 5.12-1

Git Clone URL: https://aur.archlinux.org/traccar-bin.git (read-only, click to copy)
Package Base: traccar-bin
Description: Open source GPS tracking system
Upstream URL: http://www.traccar.org/
Licenses: Apache
Submitter: robertfoster
Maintainer: robertfoster
Last Packager: robertfoster
Votes: 7
Popularity: 0.33
First Submitted: 2018-08-20 19:06 (UTC)
Last Updated: 2024-02-06 16:00 (UTC)

Latest Comments

1 2 Next › Last »

bob4os commented on 2023-11-24 09:12 (UTC)

I would like to reiterate that the java-runtime dependency is not necessary anymore. Please remove the following line from PKGBUILD:

depends=('java-runtime')

As I commented almost a year ago, the release already contains the java-runtime binaries.

bob4os commented on 2022-12-16 21:27 (UTC)

Please remove the java-runtime dependency, the traccar releases already contain the necessary java-runtime binaries. (Binaries are located in: /opt/traccar/jre/)

BotoX commented on 2022-04-22 09:18 (UTC) (edited on 2022-04-22 09:18 (UTC) by BotoX)

Please add the following to the PKGBUILD to not overwrite custom user config on update:
backup=('opt/traccar/conf/traccar.xml')

I use MySQL database for example and filter, need to restore my config from backup after every update manually.

See https://wiki.archlinux.org/title/PKGBUILD#backup

napaster commented on 2019-10-03 09:59 (UTC)

in version 4.6 new traccar.service file.

<deleted-account> commented on 2019-06-13 15:07 (UTC)

The service needs to be changed to use http://winmilliongame.com http://gtagame100.com http://subway-game.com http://zumagame100.com

physkets commented on 2018-08-20 15:51 (UTC)

The package should be called traccar-bin.

kehon commented on 2017-05-17 17:46 (UTC)

@M0Rf30 Looks like updating broke a few things, I did some debugging and figured out how to get this working on Arch with the help of github. Here is a new PKGBUILD and traccar.service: =========== PKGBUILD ========== # Maintainer: M0Rf30 pkgname=traccar pkgver=3.11 pkgrel=1 pkgdesc="Open source GPS tracking system" arch=('i686' 'x86_64') url="http://www.traccar.org/" license=('APACHE') depends=(java-runtime) source=("https://github.com/tananaev/traccar/releases/download/v${pkgver}/$pkgname-linux-$pkgver.zip" "$pkgname.service") package() { cd ${srcdir} ./traccar.run --noexec --target $pkgdir/opt/traccar/ install -m755 -d "${pkgdir}/usr/lib/systemd/system" install -m644 "${srcdir}/traccar.service" "${pkgdir}/usr/lib/systemd/system/" install -m755 -d "${pkgdir}/opt/traccar/init.d" } md5sums=('024bee353d3fb38008e73496c00dabe8' '3e230b1b98fb5d0ae71ee08ab96a7c92') =========== END PKGBUILD ========== ========== traccar.service ======== [Unit] Description=Traccar GPS System After=network.target [Service] Type=forking WorkingDirectory=/opt/traccar ExecStart=/usr/bin/java -Dwrapper.daemon.dir=/opt/traccar/init.d -Dwrapper.pidfile=/var/run/wrapper.traccar.pid -Dwrapper.service=true -Dwrapper.visible=false -Djna_tmpdir=/opt/traccar/tmp -jar /opt/traccar/wrapper.jar -tx /opt/traccar/conf/wrapper.conf ExecStop=/usr/bin/java -Dwrapper.daemon.dir=/opt/traccar/init.d -Dwrapper.pidfile=/var/run/wrapper.traccar.pid -Dwrapper.service=true -Dwrapper.visible=false -Djna_tmpdir=/opt/traccar/tmp -jar /opt/traccar/wrapper.jar -px /opt/traccar/conf/wrapper.conf PIDFile=/var/run/wrapper.traccar.pid SuccessExitStatus=143 TimeoutStopSec=30 [Install] WantedBy=multi-user.target ========== end traccar.service ========

kehon commented on 2017-05-17 16:14 (UTC)

The service needs to be changed to use /opt/traccar/bin/startDaemon.sh after version 3.8 See: https://www.traccar.org/linux/

kehon commented on 2016-04-28 16:40 (UTC)

Please update the package build to download from the traccar website https://www.traccar.org/download/ which uses github.