Articles Comments

{ Berbagi, Menulis, Dan Mengajar } Ilmu… » 7. Operating System

AT+CMGR –> see ITEGNO firmware… Bekap2x Artikel ITEGNO

Hi Dimas, bisa di lihat via hyperterminal dgn menjalankan command AT+CGMR  Oh iya, utk source code buat simple program itegno, bisa didapat dimana? Apa ada juga di internet? Thanks. Regards, Harris —– Original Message —– From: Dimas Adityo To: harris@dsc.co.id Sent: Friday, December 26, 2008 5:31 PM Subject: Ada yng kelupaan Pak Harris … kemarin di jkt ada yang kelupaan mo saya tanyakan … yaitu bagaimana caranya ngeliat versi firmware dari itegno 3800 ? — trims … Read entire article »

Filed under: 7. Operating System

Itegno 2x …

Dear All, Di bawah ini satu statement command yg perlu disisipkan pd software aplikasi Developer yg biasa menggunakan itegno 3000 dan skrg mau menggunakan itegno 3800 agar responsenya sama. Rgds, Sudiro ----- Original Message ----- From: Kamyhoo To: Sudiro Warsito ; Lee Yao Chiang Sent: Friday, September 05, 2008 1:44 PM Subject: Re: Quotation Request Hello Mr. Sudiro, Thank you for your time over the phone. based on the documetation, These are the command responses different that releated to SMS: iTegno 3000/3045/3232 iTegno 38XX AT+CPMS=? +CPMS: (("SM","ME","BM","SR"), ("SM","ME"), ("SM","ME") OK AT+ CPMS=? +CPMS: ("SM,"SM","SM") OK iTegno 3000/3045/3232: When SMS storage is empty, AT+CMGL returns an OK. iTegno 38XX: When SMS storage is empty, AT+CMGL returns "+CMS ERROR: 321" according to GSM 07.05. Best regards, kamy … Read entire article »

Filed under: 7. Operating System

setting up VLAN di debian

# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto vlan11 #vlan11 iface vlan11 inet static address 192.168.11.253 netmask 255.255.255.0 network 192.168.11.0 broadcast 192.168.11.255 mtu 1500 vlan_raw_device eth1 #auto eth1.11 #iface eth1.11 inet static #        address 192.168.11.253 #        netmask 255.255.255.0 #        name Ethernet LAN card #        broadcast 192.168.11.255 #        network 192.168.11.0 #pre-up /etc/init.d/splitaccess-up auto dsl-provider iface dsl-provider inet ppp pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf provider dsl-provider auto eth0 iface eth0 inet manual … Read entire article »

Filed under: 7. Operating System

Ganti IP komputer debian lewat php –> COPAS dari Web Eepis – its… gpp ya saya copy…:D

Cara mengganti IP address lewat web browser : 1. install apache2 php5 visudo 2. edit /etc/visudo # # This file MUST be edited with the ‘visudo’ command as root. # # See the man page for details on how to write a sudoers file. # Defaults        env_reset # Host alias specification # User alias specification # Cmnd alias specification # User privilege specification root    ALL=(ALL) ALL www-data ALL=(ALL) NOPASSWD:ALL —————————————— 3. Buat file .php dengan nama do.php dev: ip: netmask: 4.   Jangan lupa meletakkan file php di /var/www/apache-default kalau tidak bisa di letakan coba di chmod 666 5. jalankan di browser //localhost/do.php Filed under: Uncategorized – Trackback Uri … Read entire article »

Filed under: 7. Operating System

VideoGet –> tool Ampuh Buat Download video

Cari Key-nya di 4shared.com –> tools ampuh buat download video … Read entire article »

Filed under: 7. Operating System

Ngeset Baudrate Modem Wavecom 2c2

Berikut ini cara ngeset bautrate 2c2 dari 9600 Standart menjadi 11520 — AT+IPR=115200 AT&W — GoodLuck … Read entire article »

Filed under: 7. Operating System

MySQL: “Access denied for user ‘debian-sys-maint’@’localhost’”

with 4 comments For all you Ubuntu/MySQL developers out there, have you ever seen the following? neo@thematrix:~$ sudo /etc/init.d/mysql restart * Stopping MySQL database server mysqld [fail] * Starting MySQL database server mysqld [ OK ] /usr/bin/mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'debian-sys-maint'@'localhost' (using password: YES)' So, what is this “debian-sys-maint” user?  Well, this MySQL user is created for the Ubuntu to be able to start/stop the database and to carry out other maintenance operations. Sounds well enough, but then why do I keep running into the “access denied” problem for this user?  Well, the issue is that with each update to MySQL, the user’s password in the database is overwritten.  Ubuntu seems to go to the file /etc/mysql/debian.cnf in order to find this user’s password, but obviously … Read entire article »

Filed under: 7. Operating System

Check History By TIME

History is a common command for shell to list out all the executed commands. It is very useful when it comes to investigation on what commands was executed that tear down the server. With the help of last command, you be able to track the login time of particular user as well as the the duration of the time he/she stays login. last ... mysurface tty7 :0 Mon Oct 6 20:07 - down (00:00) reboot system boot 2.6.24.4-64.fc8 Mon Oct 6 20:06 (00:00) mysurface pts/8 … Read entire article »

Filed under: 7. Operating System

SMS QUERY

Laporan Harian kas bank isi dot php // QRY = Pengeluaran kambek penerimaan Line 182, 207 YLL $sisaJumlah = $inJmlYbl – $outJmlYbl ; //SDHI lihat dibawahnya … Read entire article »

Filed under: 7. Operating System

Call External Script By Using Trigger on Mysql

You can use ‘\!’ instead of ‘system’. Should work in triggers and SPs. Example: CREATE TRIGGER tg1 BEFORE UPDATE ON alarms FOR EACH ROW BEGIN \! echo “I am message from a system call.”; END $$ — Hello, This is my example. It’s right! Please, use mysql shell on linux command line (On Windows throw an syntax error): DELIMITER $$ CREATE TRIGGER tg1 AFTER INSERT ON `your_table` FOR EACH ROW BEGIN \! echo “php algun_script_php.php” >> /log/yourlog.txt END $$ DELIMITER ; Please, check rigth permissions for write the file yourlog.txt. Regards! Marco  … Read entire article »

Filed under: 7. Operating System