My Dell Inspiron 14R 910 laptop started overheating after upgrading from 11.10 to 12.04.
I'm noticed the same issue after systemd and systemd-sysvcompat update.
Further investigation indicates that the problem lies in the privoxy.service file.This file, included in the latest version of the package fails: [Unit]
Description=Privoxy Web Proxy With Advanced Filtering Capabilities
After=network.target
[Service]
Type=forking
PIDFile=/run/privoxy.pid
ExecStart=/usr/sbin/privoxy --pidfile /run/privoxy.pid --user privoxy.privoxy /etc/privoxy/config
[Install]
W
I'm trying to write a service to start my network on an install without a network manager, but it seems that systemd doesn't like dhcpcd, and keeps sending it SIGTERM after it gets to a certain point.Here's the service:[Unit]
Description=Connect to NETGEAR
After=syslog.target
[Service]
Type=oneshot
ExecStart=/usr/sbin/iwconfig wlan0 essid NETGEAR key ********** ; /usr/sbin/dhcpcd w
Hi,
To workaround a problem with nvidia graphics and fancontrol on both native and asus_atk0110 drivers, I have written a small easy script that runs at resume mode when resuming from suspending to RAM.
The script is called
Code:
81fancontrol_cd
and is located
Code:
/usr/lib/pm-utils/sleep.d
created as ROOT and EXECUTABLE.
65kid: Here is the new version,[Unit]
Description=Send IP over SMS
After=network.target
[Service]
Type=oneshot
ExecStart=/root/bin/sendip.sh
TimeoutSec=0
StandardInput=tty
[Install]
WantedBy=multi-user.targetBut there is still something wrong.
HelloAlthough I'm not a fan of dzillions of config files I decided to try systemd.
This works for me, YMMV:/etc/systemd/system/screen.service[Unit]
Description=Detached screen session
After=network.target
[Service]
Type=oneshot
RemainAfterExit=yes
User=tomk
ExecStart=/usr/bin/screen -dm
[Install]
Wants=network.target
WantedBy=multi-user.target ~/.screenrc...
screen -t rtorrent 5 /usr/bin/rtorrent
...
tomk
https://bbs.archlinux.org/profile.php?id=1822
2013-03-
please use code tags.you may want to use this service file instead:[Unit]
Description=i3lock
Before=sleep.target
[Service]
User=<user>
Type=forking
Environment=DISPLAY=:0
ExecStart=/usr/bin/i3lock -c 000000
[Install]
WantedBy=sleep.targetsystemctl enable i3lock.service
65kid
https://bbs.archlinux.org/profile.php?id=45818
2012-10-04T13:58:35Z