How to Install SQL Developer in Linux? Last Updated : 12 Apr, 2025 Comments Improve Suggest changes Like Article Like Report SQL Developer is a client application or a desktop application. We can install it in our local system & can access Oracle Database. Oracle provides it. Oracle has a server component & SQL Developer has a client component. By using SQL developer we can access the Oracle database. SQL Development gives us an integrated development environment. It helps to develop the database & maintain it also. It is like a kind of worksheet for running queries.Features of SQL DeveloperIt is easy to download & install.It gives a free development platform.It helps to solve data modeling problems easily.It is a full-featured SQL IDE.It offers complete end-to-end development of your application.PrerequisiteYou need JDK of a specific version based on a version of SQL Developer Tool, to check which JDK version is required refer to notes which are available next to the download column here (while writing this article latest version 22.2.1 requires JDK 11)to install JDK refer - How to Install JDK in Linux?Steps to InstallYou can install using two methodsusing .rpm file (it does everything for you, but requires specific attention if your Linux doesn't support the rpm package manager ex. Ubuntu)using source file (the process is the same for every Linux distribution and very useful if you need a custom path to file)1) using .rpm fileGo to the official Oracle SQL Developer Download page and download the Linux (.rpm) image. (to download you need Oracle Account if you don't have you can create a free account here or go with sign up option while downloading) Once you have the .rpm file open terminal in the directory containing file, to do the same open files app and navigate to folder you have the file then right-click and select open in terminal, or you can use cd command to navigate to folder in terminal.Now, if your Linux distribution supports .rpm packages (ex. Oracle Linux, Fedora Linux), run the command sudo rpm -i path/to/file.rpm (in my case sudo rpm -i ./sqldeveloper-22.2.1.234.1810.noarch.rpm), if you have JDK installed in a custom location it will prompt for it, enter path if prompted. Once done installation is completed! Launch it! But if you are using debian based Linux distribution, we first need to convert rpm package to debian package and for that we will use alien packagehere are commands to run in your directory containing .rpm package, read more at How to convert .rpm to .debsudo apt updatesudo apt install alien alien --to-deb [file_name.rpm]sudo apt install ./[file_name.deb]2) using source fileGo to Oracle SQL Developer Download page and download source file. (again you need Oracle account which is free, for more read step 1 in using .rpm package) extract the zip file by right-click then extract option.Once file is extracted move it to your preferred locationnow to run sqldeveloper just run bash file - sqldeveloper.sh - inside source folder, to do that run bash ./sqldeveloper.sh with terminal open in source file directory this post ends here, but not guide to installation using source file, you can automate running command, create desktop icon and much more.Installation ProcessSQL Developer Page Comment More infoAdvertise with us Next Article How to Install SQL Developer in Linux? S sounetraghosal2000 Follow Improve Article Tags : Linux-Unix SQL How To Installation Guide how-to-install +1 More Similar Reads How to Install SQL Client in Linux? The installation of MySQL client on Linux systems allows plenty possibilities to connect, manage and interact with MySQL databases straight from terminal. Whether itâs for Developers, Database Administrators or System Users, efficiently querying and managing databases requires setting up MySQL clien 3 min read How to Install SQL Developer on MacOS? Oracle SQL Developer is a free, integrated development environment that optimizes Oracle Database development and management in both traditional and cloud deployments. SQL Developer provides complete end-to-end development of your PL/SQL applications, a spreadsheet for running queries and scripts, a 2 min read How to Install SQLmap in Linux? SQL Injection Vulnerability can be detected and exploited through various automated tools. It is an open-source cyber security tool that introduces its most powerful SQLi detection engine. All the task of flaw detection and gaining access to the database is done in an automated way. This tool is so 3 min read How to Install SQL Developer on Windows? SQL Developer is a free, integrated development environment that simplifies development and management. SQL Developer offers complete end-to-end development of your PL/SQL applications, a worksheet for running queries and scripts. Installing SQL Developer on Windows: Follow the below steps to instal 1 min read How to Install SQL Server Express in Linux? Microsoft SQL Server Express is a feature-limited edition of Microsoft's SQL Server relational database management which is free to download, distribute, and use. It is used for creating or developing small-scale applications. It has been published since the SQL Server 2005. Microsoft provides it fo 2 min read Like