by Pedro M. S. Oliveira | Jun 25, 2017 | Linux
If you don’t have LLPDd available you may use tcpdump to get all LLDP information. Bellow are a few examples on how you can do it.CDP
## This will often show you the Cisco chassis switch, then use your firms asset management software to find the upstream switch.
## -s 1500 capture 1500 bytes of the packet (typical MTU size)
## ether[20:2] == 0x2000 – Capture only packets that are starting at byte 20, and have a 2 byte value of hex 2000
interface=eth0 ; tcpdump -i ${interface}-v -s 1500 -c 1 'ether[20:2] == 0x2000'
LLDP
## Switch:
interface=eth0 ; tcpdump -i ${interface} -s 1500 -XX -c 1 'ether proto 0x88cc'
## Port and CDP Neighbor Info:
interface=eth0 ; tcpdump -i ${interface} -v -s 1500 -c 1 '(ether[12:2]=0x88cc or ether[20:2]'
If you need more info about CDP or LLDP have a look on the links bellow.
CDP stands for
Cisco Discovery Protocol, which is a layer 2 protocol and is used to share information about other directly connected Cisco equipment (WikiPedia). LLDP stands for
Link Layer Discovery Protocol and replaces CDP. LLDP is a vendor-neutral Data Link Layer protocol used by network devices for advertising of their identity, capabilities and neighbours (WikiPedia).This is useful to find out what
VLAN your network interface is connected to (assuming that your using tagged VLANS), or what port am I plugged into on which switch.
by Pedro M. S. Oliveira | Jun 19, 2016 | Daily life, Linux
I use digiKam as my primary photo manager, it’s a great professional tool for those work with media. Maybe you are one of these and you didn’t even noticed, look at your mobile phone probably you have hundreds (maybe even thousands) of pictures on it. If you sum the ones you take with your camera it will be even more, so after a few years some of us may have more than 100.000 pictures.

This is why you need a photo manager and I would strongly recommend digiKam. I’ve been using it for years and I love it.
One part of taking pictures is be able to share them, digiKam supports exports to several social media web sites; Facebook, Igmur, Twitter, Flickr, etc.
Nevertheless the integration with Facebook is not working properly, and I doubt that the digiKam developers can do something here as it looks more of a Facebook issue. I’ve came out with a workaround that may help go around this issue if want to use the Facebook export function. Just follow these easy steps (I’ve done this with digiKam v5, but it will also work on v4):
- With your default browser log in to Facebook.
- Open digiKam from a console, just type digiKam on the command line.
- Inside digiKam go to menu export, choose export to Facebook.
- On the export dialog press change account.
- You’ll see that in the browser it just states success, nevertheless you don’t see the authentication link that you need to use to paste into the plugin dialogue.
- On the console where you started digiKam you have some of the debugging info of what is happening
- digiKam uses OAuth to authenticate with Facebook so look for a line like:
- OAuth URL: QUrl(“https://www.facebook.com/dialog/oauth?xxxxxxxxxxxxx
- Copy the content of that line starting on “https://…token” (without the quotes)
- Enable debug mode on your browser (I use Firefox CTRL+SHIFT+C or F12)
- On the debug window select network and persistent, see selected options on image bellow:

- Paste the URL that you got on this list step 7 on the browser
- On the debug window you should be able to see an entry like the one bellow, with a right click choose copy location

- Go to the digiKam Facebook export plugin window and just paste.
- YOU’RE DONE
Now you can share all those pictures to world 🙂
Just select the pictures you want, use the export plugin, choose your Facebook album (or create a new one within digiKam), choose to resize (or not the images). If you create a new album be careful with the the permissions you wish for the album, on the Add Album option you’ll be able to select who do you wish to share your pictures. By default all your friends will be able too see it, but this may not be right for all the albums so just choose careful your options, usually I choose only me and then on Facebook page I add who I want to share it with.
More about digiKam
- A professional digital photo management application for KDE (it will work on Linux, Windows and MacOS), which makes importing and organizing digital photos a “snap”. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections
- Powerful, fast and automated tagging
- An easy-to-use interface is provided that enables you to connect your camera directly and preview, download and/or delete your images
- A Light Table function is provided. This tool assists artists and photographers with reviewing their work ensuring the highest quality only
- Common filters are available out of the box, with side by side previews
- Extensible by the use of plugins and recipes
Hope you enjoy this tool as much as I do.
Have fun,
Pedro Oliveira
by Pedro M. S. Oliveira | Mar 13, 2015 | Linux

Several time I’ve been asked how to rename a network card label on a Linux system, this can be achieve by following the steps mentioned bellow.
Stop networking
service networking stop
The network kernel module needs to be removed, but first you need to identify the right kernel module
sudo lspci -k | grep -i -A4
ethernet 04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 07) Subsystem: Sony Corporation Device 9099
Kernel driver in use: r8169
Kernel modules: r8169
Reload rules
udevadm control –reload-rules
Edit udev rules by editing the /etc/udev/rules.d/*persistent-net.rules, in the example bellow we will set previous eth0 to eth5
# PCI device 0x10ec:0x8168 (r8169)
SUBSYSTEM==”net”, ACTION==”add”, DRIVERS==”?*”, ATTR{address}==”d4:3d:7e:xx:xx:xx”, ATTR{dev_id}==”0x0″, ATTR{type}==”1″, KERNEL==”eth*”, NAME=”eth5″
Remove the module in question
rmmod r8169
I’m using an realtek chip on my Vaio laptop, you should replace r8169 with the module in your system
Request device events from the kernel
udevadm trigger
Start network
service network restart
Et voila! You should have now a network card named eth5 on your system.
If you want to learn more about udev and udevadm check the info here or just type man udevadm on the command line.
Have fun,
Pedro Oliveira
by Pedro M. S. Oliveira | Sep 23, 2014 | Linux

Few days ago I had the need to debug the output of a stream, the problem was that the output is bandwidth is not always constant and that seamed to affect the input application didn’t behave the same with different workloads.
A colleague told me to check pv. As I have never used it before I checked the man page first and it seamed promising. Bellow there are some details about it.
pv can be used to:
progress show progress bar
timer show elapsed time
eta show estimated time of arrival (completion)
rate show data transfer rate counter
average-rate show data transfer average rate counter
bytes show number of bytes transferred
format FORMAT set output format to FORMAT
numeric output percentages, not visual information
you can also change the standard behaviour of a pipe (and probably this is the most interesting part), you’ll be able to:
rate-limit RATE limit transfer to RATE bytes per second
buffer-size BYTES use a buffer size of BYTES
skip-errors skip read errors in input
stop-at-size stop after –size bytes have been transferred
Here are 3 pv usage examples:
Limit bw available within a pipe:
In this case I’ll limit the write of a file to 1024MB/s, while writing a 10MB file (please note that the limits on both dd and pv are in bytes)
dd count=10 bs=1048576 if=/dev/zero | pv -L 1048576 | dd of=to_delete.file
10+0 records in [1021kiB/s] [ <=> ]
10+0 records out
10485760 bytes (10 MB) copied, 9.84052 s, 1.1 MB/s
10MiB 0:00:09 [1.01MiB/s] [ <=> ]
20400+100 records in
20480+0 records out
10485760 bytes (10 MB) copied, 9.93452 s, 1.1 MB/s
Write only a 5 MB file from the pipe:
dd count=10 bs=1048576 if=/dev/zero | pv -S -s 5242880 | dd of=to_delete.file
5MiB 0:00:00 [92.4MiB/s] [===========================================>] 100%
10240+0 records in
10240+0 records out
5242880 bytes (5.2 MB) copied, 0.073623 s, 71.2 MB/s
Increase the buffer size for faster transfers
With default buffers (512KB):
dd count=500 bs=1048576 if=/dev/zero | pv | dd of=/dev/null
500+0 records in
500+0 records out
524288000 bytes (524 MB) copied, 0.684948 s, 765 MB/s
500MiB 0:00:00 [ 731MiB/s] [ <=> ]
1024000+0 records in
1024000+0 records out
524288000 bytes (524 MB) copied, 0.683847 s, 767 MB/s
With a bigger buffer (5MB):
dd count=500 bs=1048576 if=/dev/zero | pv -B 5242880 | dd of=/dev/null
500+0 records in
500+0 records out
524288000 bytes (524 MB) copied, 0.667252 s, 786 MB/s
500MiB 0:00:00 [ 750MiB/s] [ <=> ]
1024000+0 records in
1024000+0 records out
524288000 bytes (524 MB) copied, 0.667482 s, 785 MB/s
If you want to have more information or check some other use cases you may check this post on cyberciti.
See you next time,
Pedro Oliveira
by Pedro M. S. Oliveira | Sep 9, 2014 | Linux

Backups can be a tricky thing, all of us that did system administration, maintenance, or system engineering or architecture at some point had to choose a backup mechanism, that depending on the requirements can be a simple bash script that uses tar or rsync, or a robust solution like BackupPC or Bacula, backup appliances and so on.
Today while reading the BackuPC mail list someone asked about the best way to use it backup a MySQL DB, as always a multitude of options, one of my favourite ones is using MySQL-ZRM and BackupPC. I’m a fan boy of BackupPC, I’ve used it for years both in personal projects as in different enterprise projects, I’m not going to describe how to install or how to make BackupPC run on your system. There is a lot of online information about this (just check BackupPC home page).
Although BackupPC is a great tool it won’t guarantee the status of your databases on the moment of the copy, for that you need another tool, my favourite one is MySQL-ZRM. MySQL-ZRM will make sure that your new MySQL or mariadb backup is consistent, this backup can be retrieved by BackupPC and stored in the backup server.
Procedure
Installing MySQL-ZRM on CentOS 7
As the title of the post says I’ll be using CentOS 7, so the first thing I need is to install the Epel repo on my CentOS 7 server:
rpm -Uvh https://ftp.fau.de/epel/7/x86_64/e/epel-release-7-1.noarch.rpm
Now that we have the repo installed we need to install MySQL-ZRM
yum install -y MySQL-zrm
Considerations on MySQL-ZRM on CentOS 7
There are two main differences in the configuration, the mode of the backup that can be:
Raw mode will make sure you that you’ll have the best performance possible during the backup, nevertheless it will need that you use LVM and I would only advice you to use it if you’re familiar with the concept. To start with you should have a logical volume for your mysql data dir (usually /var/lib/mysql/), then you should have available space on your volume group. At least double the space that you would need for MySQL operation during the backup, but please be generous here as if your ran out of space you will truncate your DBs. On the other hand the considerations over the performance may not be true as they will vary with your use case, RAW will make sure you that there were will be not locks on the DB during the time of the backup. If you really need performance to be unaltered during the seconds or minutes of the backup I would recommend a master/slave setup where you would to the backups from the slave host, thus not impacting the master.
The Logical backup mode doesn’t have any special requirements, nevertheless you’ll be “write locking” the tables during the time of the backup, with recent hardware even big backups can be fast, but if you are talking of a 200GB DB miracles won’t happen, in this cases I would recommend the RAW mode.
Setting up your MySQL server to make it suitable for MySQL-ZRM
To make your MySQL server suitable for MySLQ-ZRM you need to create a user with the right set of permission, also if you are not backing up data on the same server that you’re running MySQL-ZRM you need to enable TCP on your mysql.
Create mysql user with the correct set of permissions
mysql -h localhost -p # or whatever IP or hostname where your MySQL lives
grant select, insert, update, create, drop, reload, shutdown, alter, super, lock tables, replication client on *.* to ‘backupuser’@’localhost’ identified by ‘very secret password‘;
Setting up MySQL-ZRM on CentOS 7
After installing MySQL-ZRM we need to set it up, to do this we need to edit its configuration:
The config file is located at:
/etc/mysql-zrm/mysql-zrm.conf
In this example we will use the Logical backup mode the main configuration changes are:
backup-mode=logical
destination=/var/lib/mysql-zrm # backups destination folder (can be a NFS share, smb share, usb mount point, etc)
retention-policy=15D # How many days to keep the backup on the destination folder.
compress=1 # compress backups 1 = enabled, 0 = disabled
compress-plugin=/usr/bin/gzip # you’re able
all-databases=1 # do you want to backup all the databases on the mysql server? In this case we do
user=”backupuser” # authorized user to backup your databases
password=”very secret password” # the password
host=”your.server.hostname” # server host name
routines=1 # do we want to backup MySQL routines? In this case yes
verbose=0 # do we want the log to be verbose
mailto=”backup-list@linux-geex.com” # backup admin email, if you have a local MTA correctly configured you’ll receive an email if backups didn’t finish properly, this will depend on the email policy described below
mail-policy=only-on-error
If you are backing up a remote server you’ll also need to enable TCP transfers on my.cnf, this can be achieved by setting on the [mysql] section:
port = 3306
Please keep in mind that you should be very careful when exposing MySQL, so set your iptables firewall to only allow IP connections to the backup server and other desired mysql clients, bellow is an example of how to do it:
iptables -I INPUT -m tcp -p tcp –dport 3306 -i eth0 -s 10.2.3.4/32 -m comment -j ACCEPT –comment “Allow access to web server”
iptables -I INPUT -m tcp -p tcp –dport 3306 -i eth0 -s 10.2.3.5/32 -m comment -j ACCEPT –comment “Allow access to MySQL-ZRM server”
Where –dport is destination port, -i eth0 is the interface where you want the filter to be active (you may skip it and it will be active in all the interfaces), -s IP are the allowed IPs, and -j ACCEPT is the target for the rule, in this case ACCEPT the package.
Setting up MySQL-ZRM backup frequency
MySQL-ZRM uses cron to do the backups, so the frequency is the one defined in the cron entry, many just use root crontab to do everything, although this is possible it’s not the most correct way of doing it.
Again there are multiple possibilities of doing this:
- Use mysql-zrm-scheduler, this is a tool that will help you create the crontab entry with the correct parameters, you can check how it works just by typing mysql-zrm-scheduler on the command line.
- Edit the crontab entry directly if you know the parameters (my favourite and all the parameters are also very well documented)
For a once a day backup of your database you would need to create the following file:
/etc/cron.d/mysql-zrm
With the following content:
0 1 * * * root /usr/bin/zrm-pre-scheduler –action backup –backup-set `hostname -s` –backup-level 0 –interval daily
0 3 * * * root /usr/bin/mysql-zrm –action purge
This will trigger a backup every night at 1:00 AM, and it will also trigger a purge of the old content at 3:00 AM, please not that if you’re backing up another server than localhost you should replace hostname -s for the FQDN of the desired server.
Integrating with BackupPC
Integration may be achieve by 2 distinct means:
- Let BackupPC retrieve the files from the destination folder specified above, easiest and probably will suit most setups.
- Trigger backup execution within BackupPC.
I’ll focus on the second option as the first one is enabled by default if you include the destination in the folders to be backed up by BackupPC.
MySQL-ZRM scheduler configuration if integrated with BackupPC
Edit your /etc/cron.d/mysql-zrm like this:
0 3 * * * root /usr/bin/mysql-zrm –action purge
As you see the there’s one entry that is missing, the command execution will be triggered by BackupPC.
BackupPC triggering MySQL-ZRM configuration
I’ll assume you already have your BackupPC server configured and that the destination folder is already in the path to be backed up.
- Login to BackupPC web interface
- Select the server that holds the DBs to be backedup
- Choose “Edit config”
- Choose “Backup Settings” tab (default)
- Bellow “User Commands” there is a text box with the name “DumpPreUserCmd” where you’ll insert:
mysql-zrm-backup -backup-set `hostname -s` –backup-level 0
Conclusion
Setting up MySQL backups is not a hard task, there are a multitude of options out there this is just one of them. I would recommend you guys to have a deep look at the official BackupPC and MySQL-ZRM documentation. This post touches just the surface of what those two pieces of software can do.
As important as doing backups is a good test on recovering the data to the desired state, it’s not enough to be able to list the backup content, you should be able to restore the full service, then you must check if you are able to do it from a full backup, then do it based on and differential or incremental backup. It’s also important to know what are those and be “fluent” with the backup software. This may be the difference between a headache and getting your head cut.
Keep calm and keep your backups up to date!
Pedro M. S. Oliveira
by Pedro M. S. Oliveira | Sep 1, 2014 | Linux

If you see that your server is running out of swap you should add more RAM, nevertheless this is not always possible or maybe you need that extra amount for a very specific usage.
If this is the case you just need to add some more swap to your system. There are several usage cases I’ll just cover the 2 most common ones, with and without LVM.
Adding swap space without LVM
If you’re not using LVM and you don’t have any other location to put your new swap partition you can do it in one of the file systems available in the system.
-
Create a file that can be use as swap, if you have more than one file system available choose the one with best performance, in this case we will use /, the file will have 16GB and it will be called extra_swap.fs.
dd if=/dev/zero of=/extra_swap.fs count=16000 bs=1048576
mkswap /extra_swap.fs
-
Set the right permissions the file
chmod 600 /extra_swap.fs; chown root:root /extra_swap.fs
swapon /extra_swap.fs
-
Make it permanent (if needed)
echo “/extra_swap swap swap defaults 0 0 ” >> /etc/fstab
Adding swap space with LVM (method 1)
This method applies if you have LVM and you’re not able to disable swap (for instance production servers that have a high system load and memory usage)
-
Add a new volume with 16G (on volume called VolumeGroupName, you will need to adjust this to the desired volume group)
lvcreate -n extra_swap_lv -L16G VolumeGroupName
mkswap /dev/VolumeGroupName/extra_swap_lv
swapon /dev/VolumeGroupName/extra_swap_lv
-
Make it permanent (if needed)
echo ” /dev/VolumeGroupName/extra_swap_lv swap swap defaults 0 0 ” >> /etc/fstab
Adding swap space with LVM (method2)
If you are able to disable swap for a while (<10minutes) this is the recommended method.
-
Disable your current swap volume (please take in consideration that this can have a negative impact on performance, use with caution).
swapoff swap_volume_name
-
Expand your current volume, by adding 16GB to the volume swap_volume_name ( you will need to adjust this to the desired logical volume)
lvextend -L+16G swap_volume_name
mkswap /dev/VolumeGroupName/swap_volume_name
swapon /dev/VolumeGroupName/swap_volume_name
References
Check the excellent REHL manual about swap.
I hope you don’t have to go through this, as said before the best is to buy some new ram.
Cheers,
Pedro M. S. Oliveira
by Pedro M. S. Oliveira | Aug 20, 2014 | Linux

When you have large deployments with thousands of SSDs and spinning disks megacli utility provides a great help by having all the features and options available in a way that can be easily scripted and therefore automated.
This usage listing just has the most used and therefore limited set of options, but many more exist, please check the bottom for references.
Here are a few of those I find more useful, this will only apply to LSI Raid controllers.
Info:
This will list all the physical devices on adapter 0, if you have more than 1 controller in your server you may use -aAll.
megacli -PDList -a0
The same as above but it will be easy to find if you have 1 slot with errors.
megacli -PDList -a0 | grep “Slot\|Error”
This will display all the settings for the logical device 1 on controller 0.
megacli -LDInfo -L1 -a0
It will display the Consistency of the logical device 1 on controller 0.
megacli -LDGetProp Consistency -L1 -a0
Show rebuild progress on logical device 2 on adapter 0.
megacli -LDRecon ShowProg L2 -a0
List the cache status on adapter 0.
megacli -GetPreservedCacheList -a0
Display auto rebuild state on adapter 0.
megacli -AdpAutoRbld -Dsply -a0
Display missing physical devices on controller 0.
megacli -PdGetMissing -a0
Create a file called megacli_events_since_reboot that will contain all the events logged by all the controllers, this will include warnings, info messages and errors since last reboot.
megacli -AdpEventLog -GetSinceReboot -f megacli_events_since_reboot -aALL
Create a file called megacli_events_since_shutdown that will contain all the events logged by all the controllers, this will include warnings, info messages and errors since last shutdown.
megacli -AdpEventLog -GetSinceShutdown -f megacli_events_since_shutdown -aALL
Show the rebuild progress for the drive in slot 21, enclosure 32, all adapters (you can use -a0 if you just have one adapter).
megacli -pdrbld -showprog -physdrv[32:21] -aALL
Add/alter settings:
Set rebuild rate to 60% (1-100), this will mean that rebuild has higher priority than SO calls.
megacli -AdpSetProp RebuildRate 60 -a0
Discard the preserved cache for all logical devices on adapter 0.
megacli -DiscardPreservedCache -Lall -a0
Turn off device on slot 2 on enclosure 32, adapter 0.
megacli -PDOffline -PhysDrv [32:2] -a0
Turn on device on slot 2, enclosure 32, adapter 0.
megacli -PDOnline -PhysDrv [32:2] -a0
Flag the the device on slot 2, enclosure 32, adapter 0 as good to be used.
megacli -PDMakeGood -PhysDrv[32:2] -a0
Mark as missing drive on slote 2, enclosure 32 adapter 0
MegaCli -PDMarkMissing -PhysDrv [32:2] -a0
Prepare for removal drive on slote 2, enclosure 32 adapter 0
MegaCli -PdPrpRmv -PhysDrv [32:2] -a0
Replace the missing physical drive on slot 2, enclosure 32 on array 2, row 2, adapter 0.
You may find more information on the missing drive with the option -PdGetMissing (explained above).
megacli -PdReplaceMissing -physdrv [32:2] -Array=2 -row=2 -a0
Initial rebuild on slot 2, enclosure 32, adapter 0.
megacli -PDRbld -Start -PhysDrv[32:2] -a0
Create a logical device with raid 0 on physical device on slot 5, enclosure 32, adapter 0.
megacli -CfgLdAdd -r0[32:5] -a0
Set a dedicated hotspare device on logical device 1 (here it’s called array) using device on slot 18, on enclosure 32, adapter 0.
megacli -PDHSP -Set -Dedicated -Array1 -PhysDrv[32:18] -a0
Remove hotspare located on slot 6, enclosure 32, adapter 0.
megacli -PDHSP -Rmv -PhysDrv[32:6] -a0
Make drive on slot 18, enclosure 32, adapter 0 offline.
megacli -PDOffline -PhysDrv [32:18] -a0
Add 8 drives to an existing raid 6, in this case we are adding it to the logical volume 2 on adapter 0.
megacli -LDRecon start r6 -Add-PhysDrv[32:14,32:15,32:16,32:17,32:18,32:19,32:20,32:21] L2 -a0
Drive firmware update procedure:
* firmware upgrade can brick your device, first make your drive offline, this is MANDATORY if the drive is online
Make drive on slot 18, enclosure 32, adapter 0 offline
megacli -PDOffline -PhysDrv [1:18] -a0
Update firmware on drive at slot 18, enclosure 32 adapter 0, with binary file called fw.binary
megacli -PdFwDownload -PhysDrv[32:18] -f fw.bin -a0
Put drive back online.
megacli -PDOnline -PhysDrv [32:18] -a0
OS rescan logical device
After adding/removing/editing the logical volume, please note that you need to do this to all block devices you changed, in this case /dev/sda
echo 1 > /sys/block/sdx/device/rescan
More information:
http://hwraid.le-vert.net/wiki/LSIMegaRAIDSAS
http://mycusthelp.info/LSI/_cs/AnswerPreview.aspx?sSessionID=&inc=8275
http://artipc10.vub.ac.be/wordpress/2011/09/12/megacli-useful-commands/
Megacli official manual (PDF)
Cheers,
Pedro M. S. Oliveira