LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-16-2017, 09:43 PM   #1
ObsoleteMan
Member
 
Registered: Nov 2016
Location: Philadelphia, Pa
Distribution: DebIan, Knoppix.
Posts: 61

Rep: Reputation: Disabled
Missing applications


Hi everybody,

I have a puzzle, a couple of apps called gparted and disks has dropped from the application launcher menu. Apper says it is installed. I running DebIan 8.6.0 on a Hp Elitebook 8730w.

Any ideas?

Mike
 
Old 01-16-2017, 10:40 PM   #2
TheEzekielProject
Member
 
Registered: Dec 2016
Distribution: arch
Posts: 668

Rep: Reputation: 190Reputation: 190
Have you tried launching from command line? It's been a while since I used Debian but I believe
Code:
dpkg -l | grep packagename
would confirm whether it's installed or not.
If not just reinstall
 
Old 01-16-2017, 11:44 PM   #3
JJJCR
Senior Member
 
Registered: Apr 2010
Posts: 2,150

Rep: Reputation: 449Reputation: 449Reputation: 449Reputation: 449Reputation: 449
have you tried:

whereis <app_name>

or if locate is installed try:

locate -b <app_name>
 
Old 01-17-2017, 01:45 AM   #4
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,574
Blog Entries: 19

Rep: Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452
What is installed and what you find on your menu are two different things. You usually have a lot more programs installed than your menu shows you. In any case, most desktops have a menu-editing utility. If you want quick access to these tools, you can edit them back in.
 
Old 01-18-2017, 12:21 AM   #5
Jjanel
Member
 
Registered: Jun 2016
Distribution: any&all, in VBox; Ol'UnixCLI; NO GUI resources
Posts: 999
Blog Entries: 12

Rep: Reputation: 364Reputation: 364Reputation: 364Reputation: 364
Try this web-research (as a starting point, for clues as to what may have happened & be needed)
Quote:
debian remove application from launcher menu
(ubuntu is based on debian, so that info may be related) Best wishes! Let us know.
 
Old 01-27-2017, 12:17 AM   #6
ObsoleteMan
Member
 
Registered: Nov 2016
Location: Philadelphia, Pa
Distribution: DebIan, Knoppix.
Posts: 61

Original Poster
Rep: Reputation: Disabled
Hi everybody,
I'm sorry for the delay in my response. I've tried all of the above to no avail. It says gdisk is installed but it's nowhere to be seen.

Thanks again,
Mike
 
Old 01-27-2017, 12:29 AM   #7
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,850

Rep: Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309
Probably this helps:
if you have gnome you need to click on "show application" (this is the last icon on the bottom). There will be a "type to search" field where you can enter gparted. Right click, add to favorites.
 
Old 01-27-2017, 07:21 AM   #8
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by ObsoleteMan View Post
Hi everybody,
I'm sorry for the delay in my response. I've tried all of the above to no avail. It says gdisk is installed but it's nowhere to be seen.

Thanks again,
Mike
if you can find the executable in the bin then look in /usr/share/applications to see if it has a desktop file so it will show up in your menu, if no then create one for it.

copy one then change its name to the name of the program you're going to make it for. then open it up in a editor using root privileges, and change everything that needs to be changed so it will work. simple yes?

But is not gdisk just a command line app?

Code:
sudo find / -type f -name gdisk
or
sudo find / -type f -name gdisk*
that will find it
 
Old 01-28-2017, 12:11 AM   #9
ObsoleteMan
Member
 
Registered: Nov 2016
Location: Philadelphia, Pa
Distribution: DebIan, Knoppix.
Posts: 61

Original Poster
Rep: Reputation: Disabled
I ran the above code and here is the return:

root@Debian:/home/michael# find / -type f -name gdisk
/sbin/gdisk
/usr/share/lintian/overrides/gdisk
/usr/share/doc-base/gdisk

The /usr/share/doc-base/gdisk part is a document that says: Document: gdisk
Title: Gdisk manuals
Author: Roderick W. Smith
Abstract: Manuals for cgdisk, fixparts, gdisk and sgdisk
Section: System/Administration

Format: HTML
Index: /usr/share/doc/gdisk/index.html
Files: /usr/share/doc/gdisk/*.html

The lintain part saysocument: lintian
Title: Lintian User's Manual
Author: Christian Schwarz, Richard Braakman, Sean 'Shaleh' Perry
Abstract: This manual describes Lintian, the Debian package checker.
Section: Debian

Format: HTML
Index: /usr/share/doc/lintian/lintian.html/index.html
Files: /usr/share/doc/lintian/lintian.html/*.html

Format: text
Files: /usr/share/doc/lintian/lintian.txt.gz

The DebIan site says nothing about lintain at all.

By the way, I'm running KDE

Thanks for any ideas
Mike
 
Old 01-28-2017, 04:43 AM   #10
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by ObsoleteMan View Post
I've tried all of the above to no avail. It says gdisk is installed but it's nowhere to be seen.
maybe it's been moved to a different submenu and/or renamed.
maybe it was a conscious decision to remove it from the menus completely because these are potentially harmful apps.
who knows what DE developers are up to in common, and KDE in particular...

if you're still confused, do this:
Code:
apt search nginx|grep installed
(replace "nginx" with whatever you want to search for, e.g. gparted or disks)
Code:
apt search nginx|grep installed|cut -d/ -f1| while read line; do dpkg -L "$line"|grep bin; done
(replace "nginx" with whatever you want to search for, e.g. gparted or disks)
 
Old 01-28-2017, 05:48 AM   #11
Habitual
LQ Veteran
 
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Blog Entries: 37

Rep: Reputation: Disabled
Quote:
Originally Posted by BW-userx View Post
Code:
sudo find / -type f -name gdisk
or
sudo find / -type f -name gdisk*
that will find it
Something. Not that.
OP: It's called gnome-disks, try it in Alt+F2.
same for gparted
terminal > gparted
 
Old 01-28-2017, 07:28 AM   #12
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by Habitual View Post
Something. Not that.
OP: It's called gnome-disks, try it in Alt+F2.
same for gparted
terminal > gparted
now I am wondering where did I get the idea it was about "gdisk" but the same find method would apply, if just typing gnome-disks in the launcher or command line does not work.
 
Old 01-28-2017, 08:38 AM   #13
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
$ sudo apt-get install menu
$ sudo update-menus

$ sudo apt-get install gpart
$ sudo apt-get install gparted

But I don't use a wm with menus. Baring rare times that I get less lazy and use dmenu. Full circle from a certain pov as I stopped using gentoo because it didn't update menus, or build them at all, for my non-mainstream wm at that time (IceWM).

I tend to use apt-file to figure these things out.

$ apt-file list gpart | grep -i menu
gparted: /usr/share/menu/gparted

Which means that gpart lacks the /usr/share/menu/ item for a menu entry. So wont be grabbed by update-menus. You can create that entry though.

$ cat /usr/share/menu/gparted

Applications -> System -> Administration -> Gnome partition editor

For debian jessie.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Missing applications in taskbar mb722004 Linux - Newbie 3 05-17-2008 05:36 PM
Applications Missing In Gnome Menu jlacroix Linux - Software 1 06-08-2005 08:22 PM
minimized applications missing Raptor102 Fedora 3 06-29-2004 11:00 PM
missing text in applications MunterMan Mandriva 5 02-27-2004 06:24 AM
Missing Applications Menu ? Blacklight Linux - Software 5 08-01-2003 07:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration