07-23-2014, 04:51 AM
When you run the first command you get the following error:
because the file issue is not there.
In reply #2 of this post you entered this command
and got this result
so the file issue was there.
Sometime between then and now the issue file was removed. This isn't a problem, it can be created easily with this command
and now you should be able to run the second command
now we can run a test to see if the issue file is correct
you should get this result
Quote:mv: cannot stat ‘/etc/issue’: No such file or director
because the file issue is not there.
In reply #2 of this post you entered this command
Quote:cat /etc/issue
and got this result
Quote:Ubuntu 14.04.1 LTS \n \l
so the file issue was there.
Sometime between then and now the issue file was removed. This isn't a problem, it can be created easily with this command
Code:
sudo touch /etc/issue
and now you should be able to run the second command
Code:
sudo bash -c 'echo "Linux Lite 2.0 LTS \n \l" > /etc/issue'
now we can run a test to see if the issue file is correct
Code:
cat /etc/issue
you should get this result
Code:
Linux Lite 2.0 LTS \n \l