Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#17294 - [privoxy] can't access files from /var/log/privoxy/
Attached to Project:
Arch Linux
Opened by kat bessie (basementcat) - Thursday, 26 November 2009, 20:53 GMT
Last edited by Andrea Scarpino (BaSh) - Saturday, 28 November 2009, 00:59 GMT
Opened by kat bessie (basementcat) - Thursday, 26 November 2009, 20:53 GMT
Last edited by Andrea Scarpino (BaSh) - Saturday, 28 November 2009, 00:59 GMT
|
DetailsDescription:
After rebooting the computer, one cannot start privoxy properly. Error message: touch: cannot touch `/var/log/privoxy/logfile': No such file or directory chgrp: cannot access `/var/log/privoxy/logfile': No such file or directory chmod: cannot access `/var/log/privoxy/logfile': No such file or directory touch: cannot touch `/var/log/privoxy/jarfile': No such file or directory chgrp: cannot access `/var/log/privoxy/jarfile': No such file or directory chmod: cannot access `/var/log/privoxy/jarfile': No such file or directory |
This task depends upon
Closed by Andrea Scarpino (BaSh)
Saturday, 28 November 2009, 00:59 GMT
Reason for closing: Not a bug
Additional comments about closing: see comments
Saturday, 28 November 2009, 00:59 GMT
Reason for closing: Not a bug
Additional comments about closing: see comments
privoxy /var/
privoxy /var/log/
privoxy /var/log/privoxy/
Indeed, I have written the following in the Arch-wikipedia,
User needs to add the following code after '/bin/bash' in /etc/rc.d/privoxy
if [ ! -d /var/log/privoxy ]
then
mkdir /var/log/privoxy
touch /var/log/privoxy/errorfile
touch /var/log/privoxy/logfile
chown -R privoxy:adm /var/log/privoxy
fi
http://wiki.archlinux.org/index.php/Proxy_routing_with_Tor_and_Privoxy#Installation_and_setup
I hope the updated package can handle the issue and users don't need to do any modifications themselves.
"/var/log/privoxy/" is a part of the package privoxy. If It doesn't exist even after package reinstallation(make sure you're not passing --needed), then something is messed up in your setup.
I use privoxy in both x86_64 and i686 with no problems. I think privoxy is quite popular and nobody else seems to have had issues with the package.
In /etc/fstab, it contains:
none /var/log tmpfs size=10M 0 0
Source: http://wiki.archlinux.org/index.php/Acer_Aspire_One#Mounting_Options
The issue I've mentioned is just related to peoele who use a SSD hard drive with the above modification. So, it shouldn't be a bug. Well, somebody may google to come here and find out what they need.
Thanks again.