Showing posts with label change. Show all posts
Showing posts with label change. Show all posts

Sunday, June 4, 2017

Posted by beni in , , , , | June 04, 2017

A change in INET source


Receiving the erroneous packet during the waiting period for ACK or CTS indicates that there is a problem and you do not need to wait for time out and you can retransmit it again. We can check the erroneous packets and if they happens during the waiting period, cancel the timer and retransmit the packet. This is the standard. But in the current version, it waits for time out and does not care these erroneous packets.

You can find the patch here:

https://github.com/aarizaq/inetmanet-2.0/commit/1d80b4c7c1956487009391f1c02331b57ee8ed4d

*By default is disabled, you can enable it in the omnetpp.ini file or in Ieee80211Mac.ned file.
 
*****************************************************************************************************************************************************

To have more clear code some modifications done as follows:


FixFSM and patchErrorReceptionWithErrors parameters have been removed, if somebody need to return to the old behavior it is possible removing the commentaries from

// #define DISABLEERRORACK

this commit remove fixFSM and patchErrorReceptionWithErrors
https://github.com/aarizaq/inetmanet-2.0/commit/04d389ee595505c39ba0d8f880dd74a0d2684922

Wednesday, May 17, 2017

Posted by beni in , , , , , , | May 17, 2017

5 Technologies That Will Change Classroom Education


Wednesday, May 10, 2017

Posted by beni in , , , , , , | May 10, 2017

916 Malaysia government going to change soon


16 of September 2008 (916) this is the date where Anwar Ibrahim will be the minister in Selangor Kuala Lumpur.

He plan to pursue Malaysia Sabah and Sarawak party to join him and hopefully this can turn him to become the new prime minister in Malaysia to replace Pak Lah the current PM.

If the coming Tuesday (16.09.2008) he cant make the Malaysia PM to change, he will continue it on the next time which will be the end of year December. Heard from the news said that maybe it this time it may fail due to some technical problem but he will strike again on December 08 if the coming Tuesday he cant be the New PM in Malaysia.

For more info you can visit Anwar Ibrahim website at HERE

Thursday, May 4, 2017

Posted by beni in , , , , , , , , | May 04, 2017

8 Future Technology Inventions That Will Change The World


Future Technology Inventions

Nothing screams innovation and creativity like a piece of new technology. It is especially true if you have things like a cure for diseases, teleportation, artificial intelligent chatbots and robots, self-driving cars and food equality at the back of your mind. Following are some of the new and upcoming Top Eight (8) Best Future Technology Inventions That Will Change The World.

Tuesday, April 18, 2017

Posted by beni in , , , , , , , , , , | April 18, 2017

A different approach to change MySQL root password in Ubuntu Server


The other day I was having a problem with the MySQL server on my Ubuntu machine. After connecting to mysql server in php, I could not select a database. The error was: Access denied for user @localhost to database foo. I did specify the user being root, but it keept saying I dont have permissions with the user (anonymous). Reinstalling mysql didnt do the job. So, lets delete the user .

1. Stop the MySQL Server:

sudo /etc/init.d/mysql stop

or
sudo service mysql stop

2. Start the mysqld:
sudo mysqld --skip-grant-tables &

Press CTRL+C (^C) to be able to enter the new command.
3. Login to mysql server:
sudo mysql -u root mysql

4. Delete the user :
If you enter the following command:
SELECT USER(),CURRENT_USER();

you will see that the users are different, one being and the other root.
Delete the anonymous user:
DELETE FROM mysql.user WHERE user = ;

Update root password (optional, if you know it):
UPDATE user SET Password=PASSWORD(1234) WHERE User=root;

5. Stop mysql server instance:
ps aux | grep mysql

On the second column, you will find the PID (process id) of mysql server. Kill it:
kill 20233

6. Start the usual mysql server:
sudo service mysql start


Resources: ubuntu.flowconsult.at

Search