Today learned about the dpkg -s command, e.g.
# dpkg -s kde-baseapps
Today learned about the dpkg -s command, e.g.
# dpkg -s kde-baseapps
I found Debugging authentication problems…
I edited /etc/courier/authdaemonrc and added:
DEBUG_LOGIN=1
Then I created a mail.debug log file:
# touch /var/log/mail.debug # chown syslog:adm /var/log/mail.debug
Then I created a mail.conf file for rsyslog in /etc/rsyslog.d/mail.conf:
mail.debug /var/log/mail.debug
Then I restarted the rsyslog service:
# service rsyslog restart
Now I have debug logs for mail services!
…oh, no, wait… I only have LOGIN debugging enabled.
Found this, edited /etc/courier/imapd-ssl and added:
IMAPDEBUGFILE=courier.log
Then restarted courier imapd-ssl:
# sudo /etc/init.d/courier-imap-ssl restart
Now there is a courier.log file in: /var/pcmail/jj5@progclub.org
I was suffering a delay when SSHing to my Debian system. I found SSH session slow to start? It’s the DNS stupid! and solved my problem by editing /etc/ssh/sshd_config and adding:
UseDNS no
Postgres is only an apt-get away!
# apt-get install postgresql postgresql-client
To integrate with PHP PDO:
# apt-get install php5-pgsql
Reading about how to create a RAM disk on Linux:
# mount -o size=200M -t tmpfs none /mnt/tmpfs
Getting spammed courtesy my Debian VMWare image, notifying me of an “mpt raid status change”. Looked here and fixed the problem with:
# /etc/init.d/mpt-statusd stop # update-rc.d -f mpt-statusd remove
Today I followed these instructions to install Node.js and NPM:
echo "deb http://ftp.au.debian.org/debian wheezy-backports main" >> /etc/apt/sources.list apt-get update apt-get install nodejs-legacy curl --insecure https://www.npmjs.org/install.sh | bash
Wow, this was complicated!
Make sure PHP, Xdebug, etc. are installed:
# apt-get install php php5-xdebug php5-curl php5-mysql php5-gd
Install Eclipse:
# apt-get install eclipse
To install PHP Developer Tools in Eclipse: Open Eclipse, click Help -> Install New Software…
Work with: http://download.eclipse.org/tools/pdt/updates/release
Select PHP Development Tools / PHP Development Tools (PDT) and install.
Create a new PHP project in Eclipse.
Download PHPUnit into your project folder, e.g.:
$ cd ~/workspace/new-project $ wget https://phar.phpunit.de/phpunit.phar $ chmod +x phpunit.phar $ cp phpunit.phar /usr/local/bin/phpunit
In your Eclipse PHP project right-click on your project and select “Include Path” -> “Configure Include Path”.
Click “Libraries” -> “Add External PHARs” then add “phpunit.phar” (in your project’s workspace).
In Eclipse click “Run” -> “Debug Configurations”. Click “PHP CLI Application” and then “New”. Enter the PHP Script name as “PHPUnit” with Project default PHP: PHP CLI (Xdebug 5.4.4 CLI). Set the PHP file as “/project-name/phpunit.phar”.
Edit your php.ini file, e.g.:
# vim /etc/php5/cli/php.ini
And make sure to specify an xdebug configuration (append to end of file is OK):
[xdebug] zend_extension=/usr/lib/php5/20100525/xdebug.so xdebug.remote_enable=On ;xdebug.remote_host="localhost" xdebug.remote_host=localhost ;xdebug.remote_port=9999 ;xdebug.remote_port=9000 xdebug.remote_port=9999 xdebug.remote_handler="dbgp" xdebug.profiler_enable=1 xdebug.profiler_output_dir="/var/tmp" xdebug.default_enable = on xdebug.remote_autostart=on xdebug.remote_mode = "req" xdebug.remote_connect_back = on xdebug.remove_log = /tmp/xdebug.log
Make sure you have a phpunit.xml file next to phpunit.phar in your workspace, e.g.:
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" syntaxCheck="false"> <testsuites> <testsuite name="Tests"> <directory suffix="Test.php">test</directory> </testsuite> </testsuites> </phpunit>
Make sure there is one test in your test directory, e.g. /project-name/test/MyTest.php
<?php class MyTest extends PHPUnit_Framework_TestCase { public function setUp() { //require_once( __DIR__ . '/../src/example.php' ); } public function testExample() { $this->assertSame( '1', '1' ); } }
Double-click in the sidebar next to $this->assertSame to put a breakpoint there.
Then in Eclipse on the toolbar at the top is a little ‘bug’ icon, click ‘down’ next to that and debug ‘PHPUnit’.
Your unit tests should run in PHPUnit and break into the PHP debugger in Eclipse.
Did that work for you? Let me know!
I’m having a problem whereby my KDE session is “locking up” periodically for 5 or 10 minutes at a time. I checked /var/log/syslog and dmesg and it *seems* as though the high-priority audio threads are staving other threads, so I figure I’ll try to disable sound and see if my system continues to lock up. To disable sound I used:
root@mercy:/home/jj5# alsa force-unload Unloading ALSA sound driver modules: snd-ens1371 snd-ac97-codec snd-seq-midi snd-seq-midi-event snd-rawmidi snd-pcm snd-page-alloc snd-seq snd-seq-device snd-timer (failed: modules still loaded: snd-ens1371 snd-ac97-codec snd-rawmidi snd-pcm snd-page-alloc snd-seq-device snd-timer).
Today I needed to convert a UTF-16 file to UTF-8 and I did it with iconv:
iconv -f UTF-16 -t UTF-8 /path/to/input > /path/to/output