Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
Sorry about the mess. It finally worked. I was able to delete what I needed. Thanks for all your help. I then installed 3.5 from the repos on 19.04 (thought it was going to be 3.4) NICE surprise, indeed. Version: 3.5 Build ID: 3.5+(2019-03-30) Finance::Quote: 1.47 I like having the newer ver

Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
I saw that from your previous post, just checking to make sure, thanks!! Will run it. I’m very grateful for all your help!! Sent from my iPhone > On May 3, 2019, at 5:53 PM, John Ralls wrote: > > Locate uses a database that's generated periodically (typically weekly) from > cron. If you'v

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
Locate uses a database that's generated periodically (typically weekly) from cron. If you've deleted files since the last time it updated the database you'll get files that aren't there any more. You can run sudo locate.updatedb to regenerate. It scans all of storage traversing filesystem moun

Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
When I run locate gnucash in terminal I get 1,000's of lines. However, when I navigate to some of them some are empty (even with show all files checked). /home/dennis/.local/etc/gnucash/environment /home/dennis/.local/share/doc/gnucash/ChangeLog.1999 /home/dennis/.local/share/gnucash/scm/gnu

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
So you built in the parent directory of the sources. Not exactly recommended but at least it's not the source directory itself. What files are left? Regards, John Ralls > On May 3, 2019, at 1:16 PM, Dennis Powless wrote: > > I was able to run make uninstall on the Applications directory. >

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
No, cmake/cmake_uninstall.cmake.in is a source file so that's your source directory. try locate install_manifest.txt to find your build directory. Regards, John Ralls > On May 3, 2019, at 1:07 PM, Dennis Powless wrote: > > dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake > /home/dennis

Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
I was able to run make uninstall on the Applications directory. The terminal completed the task. However, there seems to be still files hanging around. d On Fri, May 3, 2019 at 4:07 PM Dennis Powless wrote: > dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake > /home/dennis/.local/share/Tra

Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/ cmake_uninstall.cmake.in /home/dennis/Applications/cmake_uninstall.cmake /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in Can I then run the cmake uninstall from this

Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
This is the begging of the entire terminal on the build. dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~$ cd /home/dennis/Applications dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~/Applications$ mkdir build-gnucash-3.1 dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~/Applications$ ls build-gnucash-3.1

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
David, You're right, I misread his cmake command line. I should have said `rm -rf ~/.local`. Of course that might also have collateral damage if he's installed other things into .local. find ~/.local -name *gnucash* -o -name *gnc* -exec rm -rf {} \; will safely remove everything GnuCash

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
Adrien, Yeah, that got me too because the line wrapped between .local and the second /home/dennis. There's a space there so the install prefix is /home/dennis/.local and the source directory is /home/dennis/Applications/gnucash-3.1. Regards, John Ralls > On May 2, 2019, at 9:38 PM, Adrien Mon

Re: [GNC] Uninstall GC

2019-05-02 Thread Adrien Monteleone
Curious about that cmake line... Was that: /home/dennis/.local/home/dennis/Applications/gnucash-3.1? Looks like an extra nested /home/dennis in there or am I reading that wrong? (If I am, apologies for the noise) Regards, Adrien > On May 2, 2019, at 6:48 PM, John Ralls wrote: > > > >> On M

Re: [GNC] Uninstall GC

2019-05-02 Thread David Cousens
John, Won't that simply remove the source directories. With that prefix Dennis has installed under /home/dennis/.local. If the build directory is under ~/Applications/gnucash-3.1 then he will lose the manifest by using rm -rf on the source directory. If he can locate the original build director

Re: [GNC] Uninstall GC

2019-05-02 Thread John Ralls
> On May 2, 2019, at 2:09 PM, Stephen M. Butler wrote: > > On 5/2/19 1:48 PM, Dennis Powless wrote: >> I've got GC 3.1 installed on my laptop running Ubuntu 19.04. Built from >> source. >> >> >> >> This was the command I ran to install GC back then. >> >> cmake -DWITH_AQBANKING=OFF -D CMA

Re: [GNC] Uninstall GC

2019-05-02 Thread Stephen M. Butler
On 5/2/19 1:48 PM, Dennis Powless wrote: > I've got GC 3.1 installed on my laptop running Ubuntu 19.04. Built from > source. > > > > This was the command I ran to install GC back then. > > cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local > /home/dennis/Applications/gnucash-3.

Re: [GNC] Uninstall GC

2019-03-14 Thread Dennis Powless
I have that file in the build directory.. build-gnucash-3.1 *The error says that "make" is on root's path but not dennis's and that it's a link to /usr/bin/cmake and that doesn't exist. That's a problem with your system and you need to clean it up.* How do I clean this up. I'm not sur

Re: [GNC] Uninstall GC

2019-03-11 Thread John Ralls
Dennis, The error says that "make" is on root's path but not dennis's and that it's a link to /usr/bin/cmake and that doesn't exist. That's a problem with your system and you need to clean it up. When `make uninstall` fails check to see if install_manifest.txt exists in the build directory. If

Re: [GNC] Uninstall GC

2019-03-11 Thread Dennis Powless
I tried that, see the error. I guess I’ll try some of those other things. D Sent from my iPhone > On Mar 10, 2019, at 10:16 PM, David Cousens wrote: > > Denis > > $cd ~/Applications/build-gnucash-3.1 > $make uninstall > > should do it since you installed in HOME/.local HOME is just /home

Re: [GNC] Uninstall GC

2019-03-10 Thread David Cousens
Denis $cd ~/Applications/build-gnucash-3.1 $make uninstall should do it since you installed in HOME/.local HOME is just /home/ where is your username on the system. I don't install there but use /usr/local for system wide installation not individual user so I am not sure of the exact details o

Re: [GNC] Uninstall GC

2019-03-10 Thread Dennis Powless
These are the commands I ran to install gnucash. cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local /home/dennis/Applications/gnucash-3.1 cmake cmake -D CMAKE_INSTALL_PREFIX=$HOME/.local ../gnucash-3. This is where gnucash is located. dennis@dennis-XPS-8500:~$ where

Re: [GNC] Uninstall GC

2019-03-07 Thread David Cousens
Dennis Take a look at https://wiki.gnucash.org/wiki/Uninstall_Gnucash_Ubuntu if you are on Linux. David - David Cousens -- Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html ___ gnucash-user mailing list gnucash-user@gnu

Re: [GNC] Uninstall GC

2019-03-07 Thread Stephen M. Butler
On 3/7/19 8:55 AM, Dennis Powless wrote: > -do I NEED to uninstall Gnucash? > If so I've been told that you need to do so.  > > I installed 3.1 from source, I now am trying to upgrade to 3.4. On 18.04 > LTS. Where did you do the build?  Do the "make uninstall" from that directory/folder.

Re: [GNC] Uninstall GC

2019-03-07 Thread ref...@gmx.net
If you installed from source, you need to uninstall, yes. Otherwise you have a potential mess. Where did you install into? I keep all programmes I compile myself under /usr/local/ which keeps it clean and easy to separate out if necessary. Peter Sent from my mobile. Please forg