
linux-journal.blogspot.com
Linux Journal | Linux TipsBits and pieces of Linux tips, tricks and problem resolutions
http://linux-journal.blogspot.com/
Bits and pieces of Linux tips, tricks and problem resolutions
http://linux-journal.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Friday
LOAD TIME
0.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
23
SITE IP
172.217.7.1
LOAD TIME
0.274 sec
SCORE
6.2
Linux Journal | Linux Tips | linux-journal.blogspot.com Reviews
https://linux-journal.blogspot.com
Bits and pieces of Linux tips, tricks and problem resolutions
Linux Journal | Linux Tips: Creating a Disk Array in Fedora
http://linux-journal.blogspot.com/2005/04/creating-disk-array-in-fedora.html
Linux Journal Linux Tips. Bits and pieces of Linux tips, tricks and problem resolutions. Sunday, April 17, 2005. Creating a Disk Array in Fedora. Create (mdadm - create) mode is used to create a new array. In this example I use mdadm to create a RAID-0 at /dev/md0 made up of /dev/sdb1 and /dev/sdc1:. Mdadm - create - verbose /dev/md0 - level=0 - raid-devices=2 /dev/sdb1 /dev/sdc1. Mdadm: chunk size defaults to 64K. Mdadm: array /dev/md0 started. Use the - stop or -S command to stop running array:. Workin...
Linux Journal | Linux Tips: Use ls -h to show Kilobyte, Megabyte, Gigabyte, etc
http://linux-journal.blogspot.com/2005/04/use-ls-h-to-show-kilobyte-megabyte.html
Linux Journal Linux Tips. Bits and pieces of Linux tips, tricks and problem resolutions. Tuesday, April 19, 2005. Use ls -h to show Kilobyte, Megabyte, Gigabyte, etc. Use the -h switch when doing an ls to get a more readable filesize value (K for kilobyte,. M for megabyte, G for gigabyte), e.g.:. Root@server backup]# ls -altrh. Drwxr-xr-x 2 4294967294 4294967294 4.0K Oct 6 2004 last.txt. Rw-r- r- 1 4294967294 4294967294 4.3G Oct 6 2004 backup.tgz. Drwxr-xr-x 23 root root 4.0K Feb 25 18:12 .
Linux Journal | Linux Tips: Vim bookmark position and returning to bookmark
http://linux-journal.blogspot.com/2005/04/vim-bookmark-position-and-returning-to.html
Linux Journal Linux Tips. Bits and pieces of Linux tips, tricks and problem resolutions. Sunday, April 17, 2005. Vim bookmark position and returning to bookmark. Ml Mark the current position with the bookmark named l. L Move to the beginning of the line where mark l is. L Move to the character where the named mark l is. Return to exact position of the previous mark. Return to the beginning of the line where the previous mark was. Subscribe to: Post Comments (Atom). Technology Blog by Dave.
Linux Journal | Linux Tips: Using nohup
http://linux-journal.blogspot.com/2005/04/using-nohup.html
Linux Journal Linux Tips. Bits and pieces of Linux tips, tricks and problem resolutions. Sunday, April 17, 2005. Continue to execute command (which can include arguments) in the background after you logout. Technically, nohup starts command with the SIGHUP signal set to be ignored. Subscribe to: Post Comments (Atom). Technology Blog by Dave. Simple template. Powered by Blogger.
Linux Journal | Linux Tips: Enabling syntax highlighting in Vim
http://linux-journal.blogspot.com/2005/04/enabling-syntax-highlighting-in-vim.html
Linux Journal Linux Tips. Bits and pieces of Linux tips, tricks and problem resolutions. Sunday, April 17, 2005. Enabling syntax highlighting in Vim. To vimrc to enable syntax highlighting in vim (e.g. when editing php or html files). Subscribe to: Post Comments (Atom). Technology Blog by Dave. Simple template. Powered by Blogger.
TOTAL PAGES IN THIS WEBSITE
20
MySQL Tips: ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
http://mysql-tips.blogspot.com/2005/05/error-1075-42000-incorrect-table.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Friday, May 13, 2005. ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key. If in Mysql get the message "ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key" when trying to drop a primary key, then do the following:. Alter table your table change the column the column int unsigned;. Thanks for the tip!
MySQL Tips: Export a table in mysql to a file in csv format example
http://mysql-tips.blogspot.com/2005/04/export-table-in-mysql-to-file-in-csv.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. Export a table in mysql to a file in csv format example. Select * into outfile '/tmp/zips.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'. LINES TERMINATED BY ' n'. Alter table tablename engine=csv. This will also give you same thing. Subscribe to: Post Comments (Atom). Awesome Inc. template. Powered by Blogger.
MySQL Tips: MySQL date calculations
http://mysql-tips.blogspot.com/2005/04/mysql-date-calculations.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. Eg 2 days ago till today:. Select domain, count(*) as cnt from referrers where date = current date()-2 group by domain order by cnt;. Date calculations are relatively easy. The first function we're going to look at is the YEAR() function, which returns a year from a given date. For example:. Mysql SELECT YEAR('2003-03-31');. Mysql SELECT YEAR('2003-03-31') 5;. Mysql SELECT YEAR('2003-03-31')-5;. The DAYOF...
MySQL Tips: MySQL find duplicate repords example
http://mysql-tips.blogspot.com/2005/04/mysql-find-duplicate-repords-example.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. MySQL find duplicate repords example. Select address, count(address) as cnt. Order by cnt;. David Dashifen Kees said. Beautiful, thank you! Thank you very very much! Very elegant solution . i was looking for something like this . thx. Thank you very much. This is so awesome! Ya very nice easy to undestand. Thanks, great tip! You are a GOD! Awesome tips, thank you. 2005 and still good! Helped a lot, thanks!
MySQL Tips: Gauging MySQL performance- examples
http://mysql-tips.blogspot.com/2005/04/gauging-mysql-performance-examples.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. Gauging MySQL performance- examples. Mysql show variables like '%query cache%';. Have query cache YES. Query cache limit 4194304. Query cache size 167772160. Query cache type ON. 4 rows in set (0.01 sec). Mysql show variables like '%query cache%';. Have query cache YES. Query cache limit 4194304. Query cache size 167772160. Query cache type ON. 4 rows in set (0.01 sec). Mysql SHOW STATUS LIKE 'Qcache%';.
MySQL Tips: Some built-in MySQL functions
http://mysql-tips.blogspot.com/2005/04/some-built-in-mysql-functions.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. Some built-in MySQL functions. Mysql select version();. 1 row in set (0.00 sec). Mysql select database();. 1 row in set (0.01 sec). Mysql SELECT PASSWORD("mypass");. 1 row in set (0.01 sec). Mysql select md5('test');. 1 row in set (0.02 sec). Subscribe to: Post Comments (Atom). Awesome Inc. template. Powered by Blogger.
MySQL Tips: PHPBB Convert poster_ip to real IP address in phpbb_posts table
http://mysql-tips.blogspot.com/2009/01/phpbb-convert-posterip-to-real-ip.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Friday, January 02, 2009. PHPBB Convert poster ip to real IP address in phpbb posts table. SELECT * from nuke phpbb posts where inet ntoa(conv(poster ip, 16, 10) = '255.255.255.255';. SELECT u.username from nuke phpbb posts p, nuke phpbb users u where inet ntoa(conv(p.poster ip, 16, 10) = '207.200.116.10' and p.poster id = u.user id limit 1;. Labels: phpbb poster ip convert ip. Awesome Inc. template. Powered by Blogger.
MySQL Tips: Chang the Mysql client prompt
http://mysql-tips.blogspot.com/2005/04/chang-mysql-client-prompt.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. Chang the Mysql client prompt. Changing the Mysql client prompt: (Mysql 4.0.2 and higher). From http:/ dev.mysql.com/doc/mysql/en/mysql Commands.html). Eg "prompt d R m " will show the current database millitary hour minutes. Put in my.cnf. Prompt=" d R m ". This setting should actually come under the [client] section in the cnf file. i.e. Prompt = u@ h d. Subscribe to: Post Comments (Atom).
MySQL Tips: MySQL difference between dates in number of days
http://mysql-tips.blogspot.com/2005/04/mysql-difference-between-dates-in.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. MySQL difference between dates in number of days. To get a date difference in days in Mysql version before 4.1 (where you can use the datediff() function instead), do the following to calculate date difference:. Select (TO DAYS(date1)-TO DAYS(date2). Very good functions for difference. SELECT DATEDIFF(2006-07-10,2006-06-01);. Subscribe to: Post Comments (Atom).
MySQL Tips: End Query with \G instead of ;
http://mysql-tips.blogspot.com/2005/04/end-query-with-g-instead-of.html
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks. Sunday, April 17, 2005. End Query with G instead of ;. You can use G instead of ; for tables with lots of fields. Mysql SHOW STATUS LIKE 'Qcache%';. Qcache queries in cache 6990. Qcache lowmem prunes 0. Qcache not cached 621. Qcache free memory 176329432. Qcache free blocks 1. Qcache total blocks 13998. 8 rows in set (0.00 sec). Mysql SHOW STATUS LIKE 'Qcache%' G. 1 row * * * * * * * * * * * * * *. Variable name: Qcache inserts.
TOTAL LINKS TO THIS WEBSITE
23
name bracelets personalized | Name Bands | Name Bracelets | Personalized Name Bands | Personalized Name Bracelets
All Order Information Is Sent Through A Secure Page. Click On Picture To Enlarge. Click On Picture To Enlarge. Click On Picture To Enlarge. Click On Picture To Enlarge. Click On Picture To Enlarge. Click On Picture To Enlarge. Have A Club, Group, Organization Or Sports Team? Have An Upcoming Event? We Can Make Bracelets Or Bands For Any Occasion! Ordering Your Name Bracelets. Is As Easy As 1,2,3. All Order Information Is Sent Through A Secure Page. 2006 / 2013 Rosewood Enterprises / NameBracelets.com.
IT Jobs - Find your next IT job with ComputerJobs
You are currently only able to use a limited number of features of this website. Find out how to enable the full power of ComputerJobs. ComputerJobs: Where IT people and jobs click. 1 800 850 0045. Search from 7,315. Below $22000 / year. 22000 - $30000 / year. 30000 - $37000 / year. 37000 - $45000 / year. 45000 - $60000 / year. 60000 - $75000 / year. 75000 - $112000 / year. 112000 - $150000 / year. Above $150000 / year. Not stated on job. Below $15 / hour. 15 - $30 / hour. 30 - $45 / hour. 45 - $60 / hour.
linux-jobs.net
Domain for sale. Call 1 339-222-5134 or click here to make an offer. The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois).
Linux-Jobs.org
Is a registered trademark of. Directory of Other Job Sites. Directory of Other Job Sites. Short-term Projects ( 1 hr ). Or 1 day problems or 1 week or 1 month. Interactive On-the-Spot System Admin. Faster, easier to fix it than to type an email reply. Day-to-Day, Month-to-Month System Admin and Monitoring. On-Site support for those that need the extra "hands on" support. Local LAN configuration and reviews. Sources of Commercial FEE-based. Sources for FREE tech support. Forms to Fill Out.
Linux女子部 公式Blog
Linux/OSSが好きなコミュニティ 「Linux女子部」. のBlogです。勉強会などのイベント予告・活動報告などをUPします。 12304;11月11日(水)】第三回「TechGIRL」開催! 待望の第3回目【TechGIRL】が11月11日(水)に恵比寿で開催されます。 LTしたい方も、懇親会でエンジニア同士の交流を深めたい方も、是非参加してみてはいかがでしょうか。 12304;詳細・申込み】. Https:/ techgirls.doorkeeper.jp/events/33191. 第1回 http:/ togetter.com/li/671394. 第2回 http:/ togetter.com/li/777627. 12304;1/31(土)】第二回 TechGIRL開催! Linux女子部2015年最初のイベントは、共催で開催されるLTイベント 【第二回TechGIRL】. 大盛況となり、早くも「二回目の開催が待ち遠しい」と参加者から沢山のエールを頂いておりました。 皆様のリクエストにお応えして、今後は継続的に開催しますよ~!
Linux Journal | Linux Tips
Linux Journal Linux Tips. Bits and pieces of Linux tips, tricks and problem resolutions. Tuesday, April 19, 2005. Use ls -h to show Kilobyte, Megabyte, Gigabyte, etc. Use the -h switch when doing an ls to get a more readable filesize value (K for kilobyte,. M for megabyte, G for gigabyte), e.g.:. Root@server backup]# ls -altrh. Drwxr-xr-x 2 4294967294 4294967294 4.0K Oct 6 2004 last.txt. Rw-r- r- 1 4294967294 4294967294 4.3G Oct 6 2004 backup.tgz. Drwxr-xr-x 23 root root 4.0K Feb 25 18:12 . Proxy This se...
LINUX-JOURNALIST
Heike Jurzik jurzik@linux-journalist.com. Telefon 49 177 2780503. Ich habe Germanistik, Anglistik und Informationsverarbeitung an der Universität zu Köln studiert (Abschluss Magistra Artium). Linux entdeckte ich schon 1996, während ich am Zentrum für Angewandte Informatik der Universität zu Köln arbeitete. Als freie Journalistin. Schreibe ich seit 1997 für deutsche und englische Computer-Zeitschriften über das freie Betriebssystem und andere Open-Source-Themen. Meine Artikel. Computec Media GmbH, Fürth.
LINUX-JOURNALIST
Heike Jurzik jurzik@linux-journalist.com. Telefon 49 177 2780503. Ich habe Germanistik, Anglistik und Informationsverarbeitung an der Universität zu Köln studiert (Abschluss Magistra Artium). Linux entdeckte ich schon 1996, während ich am Zentrum für Angewandte Informatik der Universität zu Köln arbeitete. Als freie Journalistin. Schreibe ich seit 1997 für deutsche und englische Computer-Zeitschriften über das freie Betriebssystem und andere Open-Source-Themen. Meine Artikel. Computec Media GmbH, Fürth.
linux-jp.com
Welcome to linux-jp.com. Japanese linux related information is here. ITpro (オープンソース / Linux). IT (Linux / OSS). ADMINISTRATOR STAGE gihyo.jp 技術評論社. マイナビニュース (Linux / BSD).
linux-kaufhaus.de
The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois).
Linux KDE Android Pakiety Pulpity Desktop Soft RPM OS
Linux - jego jądra, dystrybucje, pulpity, KDE i inne, pakiety oprogramowania, OS, soft, RPM. Szczególnie OpenMandriva, ROSA, Mageia, Fedora, Red Hat, Mandrake, Mandriva, PCLinuxOS, Android, Mozilla, Ubuntu, Kali Linux i informatyka śledcza. CAE - Linux dla Inżynierów. RHL - Red Hat Linux. Środa, 3 sierpnia 2016. Bezpieczeństwo dzieci i staruszków w sieci. Nękanie w sieci powodem depresji, koszmarów oraz anoreksji . Co ciekawe, dzieci w wieku 8-16 lat mają większą świadomość tego zagrożenia niż ich rodzic...