Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

Sunday, 21 February 2016

How to Add FTP User With LinuxIn Feburary 2016 21,

In Feburary 2016 21,
Log in to the FTP server as user 'root.' Start a shell by either logging in in text mode, or by launching a terminal window from graphical mode. The specific way of performing this step depends on the Linux distribution. For example, for Ubuntu Linux, click on 'Applications' on the taskbar at the top of the screen, then select 'Terminal.'
Create the new FTP user by entering the following command into the shell:adduser -c 'Jake Nix (FTP)' -m jakenixReplace 'Jake Nix' with the user's full name, and 'jakenix' with the user name he will use to access the FTP server.
Set a password for the new account by entering the following command into the shell:passwd jakenixPress 'Enter,' then enter the same password twice, pressing 'Enter' after each time.
Configure the FTP server to make FTP accounts correspond to accounts local to the server, by adding the following line to file '/etc/vsftpd.conf' with a text editor:local_enable=YESSave the file and exit the text editor.
Restart the FTP server to make it read the change to its configuration, by entering the following command into the shell:service vsftpd restartPress 'Enter.' At that point, the new user will have been added to the FTP server, and the server will be ready to accept FTP connections from the new user.
In Feburary 2016 21,

How to Reinstall Ubuntu Via Command LineIn Feburary 2016 21,

In Feburary 2016 21,
Click on 'Applications' in the top left corner of your desktop. A drop-down menu appears.
Scroll down and hover your mouse over 'Accessories.' Click on 'Terminal.' The Ubuntu terminal appears. The terminal is an application that allows you to enter command-line text to perform operating system functions.
Input 'sudo dpkg-reconfigure -phigh -a' into the terminal and press 'Enter.' Allow the command to process and the system to reinstall the Ubuntu distribution package.
In Feburary 2016 21,