Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Navicat on Ubuntu 14.04 LTS

is there a way to install Navicat on Ubuntu 14.04 without using wine? just straight up from deb or apt-get install.. I tried installing it using wine, but the problem is it does not function well enough. thanks

like image 471
cocoboy Avatar asked Mar 27 '15 08:03

cocoboy


2 Answers

New Version of Navicat:

Download: https://navicat.com/download/direct-download?product=navicat15-mysql-en.AppImage&location=1

Open terminal

Go to Downloads folder: cd Downloads/

Give power to run: chmod +x navicat15-mysql-en.AppImage

open Navicat: ./navicat15-mysql-en.AppImage

source: https://navicat.com/en/download/navicat-for-mysql#lin

like image 132
Grisotto Avatar answered Nov 01 '22 17:11

Grisotto


You may also want to add a shortcut to the applications menu. Got it from this post

Create a new entry in /usr/share/applications

[Desktop Entry]
Name=Navicat
Comment=Database Admin Tool
Exec=/bin/sh  "/opt/navicat/start_navicat"
Icon=/path/to/icon
Terminal=false
Type=Application
Categories=Wine;
StartupNotify=true
like image 39
MarcSitges Avatar answered Nov 01 '22 19:11

MarcSitges