emacs24: ftp doesn't work - emacs

this is a real problem to me:
Using emacs23 you connect to ftp with command:
/ftp:user#domain.ltd#ftp.domain.ltd/
So it ask you the password and you enjoy programming online...
well...this in emacs 23 ... but now i have to work with emacs24 using its new features and that command don't work anymore...
i'm desperate! help me...this happened in all pc's and brand new system (ubuntu, trisquel, windows, mac..) i'm using so i think its a problem of emacs24 but i don't know how to solve it...
thanks in advance

I've solved in this mode.
download emacs-24.1xxxxxx.tar.gz from here
http://alpha.gnu.org/gnu/emacs/pretest/
sudo apt-get install xorg-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libncurses-dev
tar xvf emacs-24.1xxxxxxx.tar.gz
cd /emacs-24.1xxxxxxx
./configure
make
----------- I'VE TESTING THE FUNCTIONALITY OF FTP in /SRC/emacs >>>FTP WORKS!!!!
----THEN-----
sudo make install
emacs

Related

How to install "stunnel" on CloudLinux RHEL Feddora CentOS yum install not working

!!JUST WRITING THIS POST SO THAT SOMEONE CAN SAVE HOURS IN THIS!!
I tried a hell lot to install this "stunnel" but was unable to do so
I was in my cpanel's terminal
What I tried all with 'sudo'
yum install stunnel
yum -y install stunnel
yum install stunnel5u
yum install stunnel4
etc BUT NONE OF THEM WORKED it just said No package stunnel found
I thought of manually install but still failed
I followed
https://developers.exlibrisgroup.com/blog/newcastle-stunnel-manual-installing-stunnel-on-centos-6/
I tried with the latest version though 5.57
But I stuck on makefile as for this entire stunnel tar package I don't know how to create a makefile
Please Help!!
I searched everywhere but I didn't find it so I tried it myself and it worked
Hope this may help others who are stuck with this in their cpanel RHEL FEDDORA CENTOS
What I did is this:
Open Terminal from Cpanel and run this
wget https://dl.iuscommunity.org/pub/ius/stable/CentOS/7/x86_64/stunnel5u-5.44-1.ius.centos7.x86_64.rpm
rpm -Uvh stunnel5u-5.44-1.ius.centos7.x86_64*rpm
This gave me sign of relief

There is no activate when I am trying to run my virtual env

1) I installed virtualenv using pip.
2) I ran the command virtualenv venv
3) Then I ran source venv/bin/activate but it says that there is no such file or directory.
When I cd into venv/bin I find 3 things - python, python 2.7, and python 3.5. Does anyone know the problem?
i have had the same problem. and what i did is just run the command
virtualenv env
again. And then more files were generated under directory env/bin, including the activate file. it's so weird.
I solved the similar problem running python3.7 -m venv venv, you can change for your version of python that is installed in your enviroment.
According to Python doc, the installation step is
$ python3 -m pip install --user virtualenv
$ python3 -m venv env
The last command gives a warning message,
The virtual environment was not created successfully because ensurepip is not
available. On Debian/Ubuntu systems, you need to install the python3-venv
package using the following command.
apt-get install python3-venv
You may need to use sudo with that command. After installing the python3-venv
package, recreate your virtual environment.
$ sudo apt-get install python3-venv
Now, activate is available.
I solved a similar problem by naming it venv2 when I ran virtualenv. I already had a virtual environment named venv for another project. This allowed me to proceed.
I experienced this problem when using the --upgrade option. Removed the option, and all ran as expected.
I double it is caused by some networking issue, I run it twice to get 'activate' script installed. Maybe first it can't connect to some source so it just abort installation.
I had this happen on rasbian when I hadn't installed python3-pip before creating the venv.

Having issues with watchman

Can someone tell me how to remove watchman from linux terminal? Going to try a different nodewatcher. I tried "sudo apt-get --purge remove watchman" and that didn't work.
If you have build it from source.
Usually you can just use:
make uninstall
or
sudo make uninstall
if the app was installed as root.
from build directory.

how to install filezilla on CentOS?

I downloaded FILEZILLA from https://filezilla-project.org/download.php.Now how to install this on CentOs,please suggest me.
For Cent OS 7
sudo yum -y install epel-release
sudo yum -y install filezilla
Go to Application > Internet > Filezilla
You need to first download and install epel-release package from here..
http://fedora.mirrors.pair.com/epel/6/i386/repoview/epel-release.html
then you can install by typing yum install filezilla
Thanks..
100% working solution is here:
the question is very old.. but i m posting answer so that anyone else struggling to install fileZilla on centOS 6 or 5 may get help.
this works for me on centOS6.5 goto below link and follow the instruction:
note before following the instruction run this command on terminal:
su
sudo -i
cd /tmp
now follow the instruction from below link.
http://www.servermom.org/2-cents-tip-how-to-enable-epel-repo-on-centos-6-and-5/894/
then install filezilla like this:
yum install filezilla
and you done.
to start fileZilla goto Applications->Internet->FileZilla

Uninstall memcached and/or (force) install with Homebrew - Mac OS X

I need a memcached on my Mac (os X 10.8), and I began by installing memcached and libevent 'manually' (1).
Well, maybe I did this a bit too quickly, and now I'm figuring out that it would be better to install it 'cleanly' with Homebrew.
I think I should first uninstall 'cleanly' libevent and memcached. Should I ?
Or should I simply run brew install memcached , and use the function to delete the files Homebrew thinks are to be deleted ? (I mean brew link -f memcached after brew install memcached ; I'm wondering how 'clean' it will be , and if I won't encounter problems hard to solve later on ...)
Thanks for your help !
(1) how I installed libevent:
cd /tmp
wget http://www.monkey.org/~provos/libevent-1.4.13-stable.tar.gz
tar zxvf libevent-1.4.13-stable.tar.gz
./configure
make
sudo make install
and memcached :
wget http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz
tar xzvf memcached-1.4.1.tar.gz
cd memcached-1.4.1
./configure
make
make test
sudo make install
memcached -d -P pidfile -l 127.0.0.1
Both Memcached & libevent ship with a Makefile uninstall target-command. Assuming you still have your previously configured source files; else, you need to run ./configure before running any make commands.
cd memcached-1.4.1
sudo make uninstall
cd ../libevent-1.4.1-stable
sudo make uninstall
Afterward, you should be able to install everything cleanly with Homebrew.