How to install the latest filezilla to Ubuntu 14.04 LTS laptop

Need help with FileZilla Client? Something does not work as expected? In this forum you may find an answer.

Moderator: Project members

Message
Author
User avatar
botg
Site Admin
Posts: 35575
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#16 Post by botg » 2024-04-18 14:54

The usual compiler is GCC, and available from https://gcc.gnu.org/

cto4autonomoussystem.ai
500 Syntax error
Posts: 13
Joined: 2024-03-26 08:17
First name: CTO
Last name: Autonomous System AI

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#17 Post by cto4autonomoussystem.ai » 2024-04-19 03:02

Installing-c17-and-c20-on-ubuntu
would the following work:

[42] #1
"run the following commands to add
the Ubuntu Toolchain repository:"

$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update

[42] #2
"Once updated the apt, install them with the following
commands:"

$ sudo apt install gcc-10 gcc-10-base gcc-10-doc g++-10
$ sudo apt install libstdc++-10-dev libstdc++-10-doc

[42)#3 how ?
&
is flag needed to build filezilla client ?

"Then you need to tell the compiler to use
the C++20 standard by using the
-std=c++20 flag"

[42)#4
"Check that libs got installed :"

$ apt list --installed gcc-10*
$ apt list --installed g++-10
$ apt list --installed libstdc++-10*

ref:
https://gasparri.org/2020/07/30/install ... zon-linux/

or just ?

[42)#1
$ sudo apt install g++-17
$ g++ --version

and ?

[42)#2
create hello.cc

#include <iostream>
using namespace std;

int main()
{
cout << "Hello, World!" << endl;
cout << "This code is compiled with G++ version: " << __GNUC__ << "." << __GNUC_MINOR__ << "." << __GNUC_PATCHLEVEL__ << endl;
return 0;
}

$ nano hello.cc
$ g++ -o hello hello.cc
$ ./hello

ref:
https://linuxconfig.org/how-to-install- ... ossa-linux

or ?
https://phoenixnap.com/kb/install-gcc-ubuntu

User avatar
botg
Site Admin
Posts: 35575
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#18 Post by botg » 2024-04-19 07:08

No idea as to the above. I'd start reading here: https://gcc.gnu.org/install/

cto4autonomoussystem.ai
500 Syntax error
Posts: 13
Joined: 2024-03-26 08:17
First name: CTO
Last name: Autonomous System AI

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#19 Post by cto4autonomoussystem.ai » 2024-04-19 07:58

how to get filezilla client configure (fzcc) succeed ?

[42]#8.1
how to get filezilla client configure (fzcc) succeed ?


[42]#8.2
how to get fzcc to accept all its checking
whether the g++ compiler fzcc uses
accepts certain features ?

[42]#8.3
what to install for fzcc
has the right C++ version ?
ref:
configure: error: *** A compiler with
support for C++17 language features
is required

what was wrong/missing
in the folliwing steps
[42] #1 ...#7


[42] #1
run the following commands to add
the Ubuntu Toolchain repository:

$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update

(doing it individually did not help)
$ sudo add-apt-repository gcc
$ sudo apt-get update
$ sudo apt install gcc-10

[42] #2
Installed them with the following
commands:

$ sudo apt install gcc-10 gcc-10-base gcc-10-doc g++-10
$ sudo apt install libstdc++-10-dev libstdc++-10-doc

[42]#3
Checked that libs got installed :

$ apt list --installed gcc-10*
$ apt list --installed g++-10
$ apt list --installed libstdc++-10*

ref:
https://gasparri.org/2020/07/30/install ... zon-linux/

[42]#4

$ sudo apt-get update <-- Google Package not found
$ sudo apt install g++-17 <-- unable to locate g++-17
$ sudo apt install

how to interprete/act to the following
messages ?

[42]#4.1
g++ already the newest version

[42]#4.2
g++ set to manually installed

[42]#4.3
312 not upgraded

[42] #5 checked my g++ version
$ g++ --version
got
g++ Ubuntu (Ubuntu 4.8.2-19ubuntu1) 4.8.2

[42] #6 tried fzcc
$ sudo ./configure <-- started
....
checking ...-Warrior=partial availability
checking ig g++ supports c++17 -std=c++17
...
** no to 8 c++17 checks **

[42] #7 final statement from fzcc
configure: error: *** A compiler with
support for C++17 language features
is required

how to get it installed for fzcc ?

User avatar
botg
Site Admin
Posts: 35575
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#20 Post by botg » 2024-04-19 08:30

You do need a newer compiler. As stated before:
botg wrote:
2024-04-19 07:08
I'd start reading here: https://gcc.gnu.org/install/

cto4autonomoussystem.ai
500 Syntax error
Posts: 13
Joined: 2024-03-26 08:17
First name: CTO
Last name: Autonomous System AI

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#21 Post by cto4autonomoussystem.ai » 2024-04-19 08:41

Why failures to fetch required g++ for fzcc ?

The folloging finally failed, why ?

1. Ctrl+alt+T (ok)

2. updated all the repositories

$ sudo apt update

3. installing g++ failed, why ?
3.1
~ it looked like my Ubuntu laptop
was not able to fetch all required
compiler component although
net connections are ok, why ?

3.2
~ some IP addresses my Ubuntu laptop
tried were not available/did not respond
why ?

3.3
~ how to define to my Ubuntu laptop
where to fetch g++ version 17
fzcc obviously requires ?


$ sudo apt install g++

4. verify

$ g++ --version <-- old

ref:
https://www.naukri.com/code360/library/ ... -on-ubuntu

[42] #6 tried fzcc
$ sudo ./configure <-- started
....
checking ...-Warrior=partial availability
checking ig g++ supports c++17 -std=c++17
...
** no to 8 c++17 checks **

[42] #7 final statement from fzcc
configure: error: *** A compiler with
support for C++17 language features
is required

how to get it installed for fzcc ?

cto4autonomoussystem.ai
500 Syntax error
Posts: 13
Joined: 2024-03-26 08:17
First name: CTO
Last name: Autonomous System AI

Re: How to install the latest filezilla to Ubuntu 14.04 LTS laptop

#22 Post by cto4autonomoussystem.ai » 2024-04-19 08:56

exploring it - thanks for advice!
ref:
https://gcc.gnu.org/install/

Post Reply