Difference between revisions of "Installing Kubuntu 19.10"

From Applied Optics Wiki
Jump to: navigation, search
(Created page with "Kubuntu 19.10(Eoan Ermine) is the latest release of Kubuntu. As it stands, '''it is not recommended to install'''. The notes below are the steps we've taken to ''kinda'' get i...")
 
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
Kubuntu 19.10(Eoan Ermine) is the latest release of Kubuntu. As it stands, '''it is not recommended to install'''. The notes below are the steps we've taken to ''kinda'' get it to work. Whilst 18.04 is the most recent LTS version, 20.04 LTS is due out April 202 and we'll probably encounter the same issues then. If anyone has further solutions, please edit below and let Paul/Rikesh know.
+
Kubuntu 19.10(Eoan Ermine) is the latest release of Kubuntu. As it stands, '''it is not recommended to install''' 18.04 LTS is a better option. The notes below are the steps we've taken to ''kinda'' get it to work. Whilst 18.04 is the most recent LTS version, 20.04 LTS is due out April 2020 and we'll probably encounter the same issues then. If anyone has further solutions, please edit below and let Paul/Rikesh know.
  
 
After completing install/upgrading on restart you'll be unable to login as a network user. Try the following steps, make sure you're root:  
 
After completing install/upgrading on restart you'll be unable to login as a network user. Try the following steps, make sure you're root:  
  
 
Bin the perennially useless network manager  
 
Bin the perennially useless network manager  
<code>sudo apt-get purge Network-Manager</code>  
+
 
 +
<code>apt-get purge Network-Manager</code>  
  
 
Set ypbind to autostart  
 
Set ypbind to autostart  
 +
 
<code>sysv-rc-conf ypbind on</code>  
 
<code>sysv-rc-conf ypbind on</code>  
  
Line 12: Line 14:
  
 
Generate ypbind files, this might need more than one execution.  
 
Generate ypbind files, this might need more than one execution.  
 +
 
<code>ypwhich</code>
 
<code>ypwhich</code>
  
Restart ypbind
+
You may need to ypbind -broadcast to get this to work. Restart ypbind
 +
 
 
<code>systemctl restart ypbind</code>
 
<code>systemctl restart ypbind</code>
  
 
Check ypbind has connected  
 
Check ypbind has connected  
 +
 
<code>ypbind -d</code>
 
<code>ypbind -d</code>
  
 
Auto mount the directories  
 
Auto mount the directories  
 +
 
<code>systemctl restart autofs</code>
 
<code>systemctl restart autofs</code>
  
All going well you should now be able to login with your normal username.
+
All going well you should now be able to login with your normal username. There's a high chance you'll need to repeat these steps on every restart.

Latest revision as of 14:21, 27 January 2020

Kubuntu 19.10(Eoan Ermine) is the latest release of Kubuntu. As it stands, it is not recommended to install 18.04 LTS is a better option. The notes below are the steps we've taken to kinda get it to work. Whilst 18.04 is the most recent LTS version, 20.04 LTS is due out April 2020 and we'll probably encounter the same issues then. If anyone has further solutions, please edit below and let Paul/Rikesh know.

After completing install/upgrading on restart you'll be unable to login as a network user. Try the following steps, make sure you're root:

Bin the perennially useless network manager

apt-get purge Network-Manager

Set ypbind to autostart

sysv-rc-conf ypbind on

systemctl start rpcbind

Generate ypbind files, this might need more than one execution.

ypwhich

You may need to ypbind -broadcast to get this to work. Restart ypbind

systemctl restart ypbind

Check ypbind has connected

ypbind -d

Auto mount the directories

systemctl restart autofs

All going well you should now be able to login with your normal username. There's a high chance you'll need to repeat these steps on every restart.