HP P420i POST Error 1719-A
If you your HP server with P420i reboots, and you see this in the integrated management log: POST Error: 1719-A controller failure event occurred prior to this power-up Try replacing the controller cache and battery.
If you your HP server with P420i reboots, and you see this in the integrated management log: POST Error: 1719-A controller failure event occurred prior to this power-up Try replacing the controller cache and battery.
In the Radio-Wide settings – for TinyTrak, Kantronics, NinoTNC, possibly more…
My new call sign is AD8G.
https://reddit.com/r/amaterurradio
To revert to your previous commit in Subversion, you’ll need the current revision number and the previous revision number, then:
1 2 3 | svn update svn merge -r 756:742 . svn commit -m "Rolled back to previous commit (r742)" |
One feature of many APRS-capable applications and radios is that they support specially-formatted APRS messages called queries or QRU. When the radio receives this message, the text “Q? ” will flash on the top of the screen. Here are the message you can send. ?APRSM – Re-queues any pending messages. ?APRSP – Triggers immediate position …
If you’d like to run aprx as a service on Debian Jessie, use this systemd script (in /lib/systemd/system/aprx.service):
1 2 3 4 5 6 7 8 9 10 11 | [Unit] Description=Amateur Radio APRS Gateway & Digipeater Documentation=man:aprx(8) [Service] Type=simple ExecStart=/sbin/aprx -i # doesn't do any internal reload # [Install] WantedBy=multi-user.target |
I’ve been trying to install Mountain Lion in as a guest in Parallels 7, and I kept getting stuck at the initial grey Apple logo. To fix it, I just changed the number of CPUs to 2, and it booted right up. Other documents I’ve seen have indicated that you need to increase the video …
Mountain Lion Installation Does Not Start in Parallels 7 Read More »
I can’t believe it’s taken me this long to learn this: Python’s default argument values are only evaluated once during runtime. I’ve never encountered this before because I don’t use default arguments very often, and when I do, it’s often to set something to a static value. Today, I encountered a function definition where I …