Skip to main content

Indian Banks Upgrading ATMs To Linux OS (BOSS)

 Microsoft have announced the dead end of the its most popular operating system "Windows XP" on 8th April. This means Microsoft will not provide any security updates from the date.
As we all know that almost all the ATM's use Window Xp, and with the no further security updates makes it more in danger zone. As it is connected with internet connection 24*7, which is also a invitation for all cyber hackers. This is getting big issue as there are tonnes of ATM Machine all over the world and hacker got tonnes of target.

Every sec, ATM is used by users all over the world and about hundreds and thousands of transaction done in a minutes. So with this, it is a high risk of security.

Many of the banks have managed to pay some of the amount for the updates of Windows Xp, but except India. India is going to change its ATM platform from Windows to Linux. India is applying is own developed Linux operating system "BOSS" (Bharat Operating System Solutions) for ATM's which is an open source and free of cost.


Developer of BOSS operating system says that its is not vulnerable as like Windows Xp. There are about 115,000 ATM's across the country but the end of Windows XP will not make the much effect as they're prepare to transfer the ATM’s to linux when Microsoft will end its Windows XP support.
IBA says neither branches nor cash vending machines will be shut down once Microsoft stops support for the system from April 8.
“Banks are definitely well-prepared and the industry is seized of the matter. I am very sure that you will not see a problem where ATMs or bank counters are shut because of this,” said the industry lobby’s chief executive MV Tanksale at an event in Mumbai. “Only the old ATMs may face some problem as all the newer machines are running on newer platforms,” he added.

Well, moving to Linux is better choice, as it is open source and not much vulnerable also. But the main thing is that Linux have Command line  interface, and many of the users in India are unaware about Linux, so in this matter, "Will it create problem to users?" Or "They will make is user friendly as with the GUI interface. As we have seen the interface of BOSS OS, its having GUI interface, and may the same will apply on ATM machine also.

Till now we haven't got any update more on this. May Indian team had tested the system with the ATM machine and hope they will make more user friendly as like Windows.

SRC:cyberkendra.com

Comments

Popular posts from this blog

Step-by-Step guide for Installing MySQL on Windows

Step-by-Step guide for Installing MySQL on Windows Y ou can download the MySQL database from the MySQL website http://www.mysql.com by clicking on the downloads tab. Scroll down to the MySQL database server & standard clients section and select the latest production release of MySQL, 5.1.35 at the time of writing. Installation of MySQL Server: Unzip the setup file and execute the downloaded . MSI file. Follow the instructions below exactly when installing MySQL Server: Click on the "setup" MySQL Installing Type There are three type of MySQL Installation:- Typical  This MySQL installing process install the  MySQL server,command- line client and command line utilities. This command line and command client included in mysqldump, myisamchk and several tools to manage the MySQL Server. Complete By this installation type we install all the component included in the installation package. And this package include the component such as suppor...

How to Grant Privilages to an account in MYSQL

MYSQL 'GRANT' statement allows you to grant access privileges to database account. To achieve same ,syntax  is as follow: Syntax:- GRANT privileges [Column_List] ON  [Object_Type] Privilege_level To account [IDENTIFIED BY 'password'] [ REQUIRE encryption ] WITH with_option ; Detailed explanation: Privileges:- It indicates that you have assign privileges to account. column_List : - (1) Its  optional.                          (2) Column(s) to which privileges apply. Privileges_level :- Level at which privileges apply. You can use global  privileges,database privileges,table specific privileges, column privileges etc. Account :- Which  account is being granted privileges. Password: - Specifies password.It replace old password. Required:- Clause specify whether the account has to connect to database server over secure connec...

Exception Handling (RunTime Error)

Java Error Handling: In general, errors can be broken up into two categories: Design-time errors and Logical errors. Design-time errors are easy to spot because NetBeans usually underlines them. If the error will prevent the programme from running,   NetBeans will underline it in red. Logical errors are the ones that you make as a programmer. The programme will run but, because you did something wrong with the coding, there's a good chance the entire thing will crash. You'll see examples of run-time errors shortly. You'll also see how to handle them. But first a word on how Java handles errors. Exceptions What is an exception? An Exception can be anything which interrupts the normal flow of the program. When an exception occurs program processing gets terminated and doesn’t continue further. In such cases we get a system generated error message. The good thing about exceptions is that they can be handled. When an exception can occur? Exception can occur at run...