Skip to main content

Posts

Showing posts with the label tutorial
Gnuplot I came across with gnuplot few days back when I was forced to generate a graph which portrayed memory and cpu usage for certain process with specific IDs. Gnuplot doesn't seems bad although I guess it was a little bit cryptic at first. I did installed Gnuplot in my cygwin terminal as well. Anyway it seems that cygwin didn't have some tool that I need to work on and I believe that if I want to do any profiling task, just do it natively on *nix instead. Well, I just put some of the important links here in case I need it afterwards: Gnuplot tutorial IMHO, Gnuplot is the best tool once you deal with lot of lines of data say, in text file log output. It really helps you I mean it. You can create the same graph(almost) in the spreadsheet such as Excel or Calc, but I think Gnuplot gives you more in term of customization and it really awesome. Dealing with hundreds, even thousands of data; I don't think you want to cut+paste all these within your spreadsheets. It doesn'...
Gnuwin32/Cygwin Saya tidak pasti bagaimana anda menggunakan Cygwin(jika ada),tetapi kadangkala katakanlah anda tidak mempunyai aplikasi tersebut di dalam cygwin,sebaliknya pada projek GNUWin32 Contohnya saya ingin mengekstrak file bersuffiks .shar (shell archive) Aplikasi itu (shar/unshar) ada di sini: http://gnuwin32.sourceforge.net/ http://sourceforge.net/project/shownotes.p...;group_id=23617 Yang saya ada ialah Cygwin. Setakat pengalaman saya,anda boleh mengekstrak installer dari laman Gnuwin32 dan ia akan mengekstrak aplikasi itu ke: C:\Program Files\GnuWin32\bin Namun demikian, Cygwin anda tidak dapat membaca executable file tersebut kerana set arahan Cygwin berada pada: /bin dalam cygdrive (virtual drive). Apa yang anda boleh lakukan ialah mencipta softlink dengan arahan "ln" ln -s /cygdrive/c/Program\ Files/GnuWin32/bin/unshar.exe /bin/unshar.exe ln -s /cygdrive/c/Program\ Files/GnuWin32/bin/shar.exe /bin/shar.exe Cara yang sama juga saya gunakan untuk aplikasi lain yg...
Nepenthes on Fedora Core 6 Issue Question: Me wrote: Hello. Currently I'm running nepentes 0.2.0 on Fedora Core 6 installed using RPM. I got this message when I want to check it's status since when I scanned the localhost port it didn't mock the meant service: [root@localhost ~]# /etc/init.d/nepenthes status nepenthes dead but subsys locked What subsys mean? Answer: try /etc/init.d/nepenthes restart if that doesn't get it, find the lock file in /var and delete it. then start it.
Mari Belajar Regular Expression (Regexp) Regular expressions atau daripada sesetengah-setengah individu memberi gelar sebagai "ungkapan nalar" ialah salah satu cara untuk memudahkan pencarian aksara sasaran dengan corak/pattern tertentu. 1) Ringkasan Secara ringkas, ia melihat syarat/pattern matching untuk sesuatu target sebelum input tersebut di"cekup" bagi dipaparkan/digunakan. Sebagai contoh: $ls -l |grep ^d Di sini , arahan penyenaraian panjang digunakan untuk memaparkan kandungan direktori, dan output senarai tersebut di"cekup" menggunakan aksara "caret" yang menginginkan penyenaraian bermula dengan aksara "d" Tujuan pengguna menggunakan arahan ini ialah untuk memaparkan direktori saja. Arahan ini mempunyai nilai yang sama dengan: find . -maxdepth 1 -type d (yang secara default mempunyai nilai -print ) atau jika ingin memperkecilkan skop find . -maxdepth 1 -iname " " -type d maxdepth ialah tahap jutsu atau chakra yang...