1 ssh login
sudo service ssh status
And finding nothing existed (with the message ssh: unrecognized service) just installing the service:
sudo apt-get install openssh-server
vi /etc/ssh/sshd_config
change no to yes
给 root 用户设置密码
passwd root
/etc/init.d/ssh restart
2.gcc
sudo apt-get install gcc
3.fftw
sudo apt-get install fftw3
sudo apt-get install ffw3-dev
sudo apt-get install libfftw3-dev
Sometimes, if they do not work, go to page
FFTW - Installation and Customization
4.screen
apt-get install screen

本文档详细介绍了在Ubuntu系统中安装SSH服务、GCC编译器、FFTW库及其开发包,以及Screen管理工具的步骤。首先,通过`sudo apt-get install openssh-server`来安装SSH,并配置sshd_config文件启用服务。接着,使用`sudo apt-get install gcc`安装GCC。然后,安装FFTW库和开发包,如果遇到问题,可以参考FFTW的官方安装指南。最后,安装Screen工具以便于多会话管理。
5063

被折叠的 条评论
为什么被折叠?



