[HOW TO] Ibus ibus-unikey on Elementary OS | install ibus-unikey on ubuntu | can not install ibus-unikey on ubuntu

have you ever installed ibus-unikey in elementary OS? A few days ago, I have issues with it. Avowedly, I installed, also add vietnamese keyboard into keyboard input method. What's happened? And finally, I see it. If you have the save issues, you can use this tip to solve this. To start, you must install dconf-editor, org\gnome\desktop\applications\input-sources per-windows: checked sources: [('xkb','us'),('ibus','Unikey')] xkb-options...

[HOW TO] install driver canon in linux | install canon printer in ubuntu | install canon mf3010 in elementary OS

Yesterday I have tried to install Canon Printer MF3010. It is not easy as me think. Firstly, I come to canon officially of MF3010 to downloaded driver. But it is not success. I still can not install MF3010. What the help? Workaround, I think that the driver still can not install truly. Where?  Luckily, I see it: http://support-sg.canon-asia.com/contents/SG/EN/0100270810.html or https://app.box.com/s/vaner6pa86h7aogdp8hryfjfgwzjvs1h It...

Grail run-app | Grails run-app change default port | Grail run app locally

You need to run app in grails before deploying it on your web application. Luckily, grails support them. Simply you do follows: 1. Go to your grails directory 2. Use "grails run-app" command 3. If you want to change default port of grails run-app 8080. How to? Use command:  grails -Dserver.port=9001 run-app Run the grails run-app command.The grails run-app command starts the...

HOW DO I GRANT PRIVILEGES IN MYSQL?

Grant for each table: GRANT permission ON database.table TO 'user'@'localhost'; Grant for database: GRANT permission ON database.* TO user@'localhost' IDENTIFIED BY 'password'; Once you have given the desired privileges for your user, you will need to run this command within the MySQL command prompt: FLUSH PRIVILEGES; To see a list of the privileges that have been granted to a specific user: select...

what are the differences between CSV and XLS?

Today I think about CSV file & XLS file, and what are the differences between them? Humhum, as I known that XLS is file format of Microsoft Excel. CSV is format frequently export by IT man. Google now, I get one result: Comma-Separated Values (CSV):These files hold plain text as a series of values (cells) separated by commas (,) in a series of lines (rows). You can actually open a CSV file...

[HOW TO] reset password MAC OS 10.11

Do you want to reset Mac's password? Unlucky, you do not know how to do it. Ok, no problem. Here I show you. Solution 1: Access Single-User mode. a. Shutdown your computer. b. Use hand to hold down the "Command" key and "S" key. Hold both of these together and do not let go through the next step. c. Wait until you see a bunch of white writing scrolling by on a back screen. Now you are...

[NOTE] The core file in linux

Warning! The core file contains a memory dump of a worker process at the moment of a crash and therefore can contain sensitive information, such as passwords, keys, or private data. Therefore, never share core files with people you don't trust. In Linux I Trust Thank you for reading this article, please a comment if you are interested. Tiến Phan - R0039 Knowledge is Endless Sharing for...

[HOW TO] lsyncd: Error, Consider increasing /proc/sys/fs/inotify/max_user_watches | lsyncd dead but pid file exists

hello, 30 minutes ago, I go around our server to ensure the data synchronization runs day-by-day. But ... It is not run 3 days ago. What happened? Ok, step-by-step Check lsyncd: [root@01 ~]# /etc/init.d/lsyncd status lsyncd dead but pid file exists Huh-uh, [root@01 ~]# less /var/log/lsyncd/lsyncd.log lsyncd: Error, Consider increasing /proc/sys/fs/inotify/max_user_watches How to fix? $...

[HOW TO] Dumping and importing from/to MySQL in an UTF-8 safe way

to avoid your shell character set from messing with imports, use -r to export and SOURCE when importing. Export: mysqldump -uroot -p database -r utf8.dump Import: mysql -uroot -p --default-character-set=utf8 database mysql> SET names='utf8' mysql> SOURCE utf8.dump  Thank you for reading this article, please a comment if you are interested. Tiến Phan - R0039 Knowledge is Endless Sharing...