How to mount an ISO in Lubuntu

To simply mount an iso, you’ll need to select the following program:

2017-10-09-224758_1280x800_scrot

You can get to this package app by selecting the following from Lubuntu start menu:
Lubuntu Menu > System Tools > Gmount-iso

**Just make sure you create a directory first then mount to such so it will work correctly**

How to Setup Time Syncronization with Lubuntu

First, you’ll want to check to see if you are running NTPd [Network Time Protocol Daemon]

timedatectl status

Check the following lines:
Time zone: America/Los_Angeles (PDT, -0700)
Network time on: yes
NTP synchronized: yes
RTC in local TZ: yes

If you don’t have such setup, you should run the following command:

sudo apt install ntp

Configuration

Edit /etc/ntp.conf to add/remove server lines. By default these servers are configured:

# Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board
# on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for
# more information.

server 0.ubuntu.pool.ntp.org

server 1.ubuntu.pool.ntp.org

server 2.ubuntu.pool.ntp.org

server 3.ubuntu.pool.ntp.org

After changing the config file you have to reload the ntpd:

sudo systemctl reload ntp.service

Then re-run the first command in this post and you should be now setup.

SRC:
Time Synchronisation with NTP
https://www.quora.com/How-do-I-get-Ubuntu-Linux-to-sync-its-time-with-the-internet

Update to re-use Ubuntu sources.list

***Lubuntu 15.10.info Exclusive***

***UPDATE 09.2017*** You will not be able to use the following Ubuntu repositories:
#deb http://us.archive.ubuntu.com/ubuntu/ wily-updates universe multiverse main$
#deb http://security.ubuntu.com/ubuntu/ wily-security universe multiverse main $
#deb http://archive.ubuntu.com/ubuntu/ wily-updates restricted multiverse main $

YOU SHOULD RECEIVE THIS ERROR IF YOU TRY TO UPDATE USING THE DEFAULT ISO REPOSITORIES FROM UBUNTU.COM:
Failed to fetch http://us.archive.ubuntu.com

FINAL FIX:

Go to terminal > sudo nano /etc/apt/sources.list

TAKEN FROM SRC:
https://coderwall.com/p/3n6xka/fix-apt-on-old-unsupported-ubuntu-releases
https://askubuntu.com/questions/91815/how-to-install-software-or-upgrade-from-an-old-unsupported-release
https://askubuntu.com/questions/17909/how-to-fix-broken-repository-information/960665#960665

VIDEO OF HOW TO FIX MANUALLY:

Change each sources.list folder pointing towards to the following:
http://old-releases.ubuntu.com/ubuntu

ADD THE FOLLOWING TO YOUR SOURCES.LIST:

# deb cdrom:[Lubuntu 15.10 _Wily Werewolf_ – Release amd64 (20151021)]/ wily ma$

deb http://old-releases.ubuntu.com/ubuntu/ wily main restricted
deb-src http://old-releases.ubuntu.com/ubuntu/ wily main restricted

deb http://old-releases.ubuntu.com/ubuntu/ wily universe
deb-src http://old-releases.ubuntu.com/ubuntu/ wily universe

deb http://old-releases.ubuntu.com/ubuntu/ wily multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ wily multiverse

deb http://old-releases.ubuntu.com/ubuntu/ wily-backports main restricted universe
deb-src http://old-releases.ubuntu.com/ubuntu/ wily-backports main restricted universe

COPY/PASTE the commands above in between where you find the following text repeated:

EXAMPLE:

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://old-releases.ubuntu.com/ubuntu/ wily-backports main restricted unive$
deb-src http://old-releases.ubuntu.com/ubuntu/ wily-backports main restricted u$

 

 

Free Linux Security Training

Here is a list of resources that you can utilize online to gain up-to-date training  and resources to protect your OS for free:

For 1 Chapter Free Linux Security Training: http://go.linuxfoundation.org/training-LFS216-sample-chapter

CompTIA Security+ Free Linux Toolkit:
https://www.pcworld.com/article/224955/7_free_security_tools_for_linux.html

***I’m leaving this under my blog for those who wish to enhance their education since this flavor of Ubuntu ##.## is no longer being supplied updates***

How to install JIRA on Linux

Quora.com Source URL: https://www.quora.com/How-can-I-install-JIRA-in-Ubuntu-14-04-LTS

Here are the steps required for your installation instructions:

  1. Go to URL: https://www.atlassian.com/ondema…
  2. Select Linux [32 or 64 bit] from drop down menu to download software
  3. Go to download directory where you have the atlassian-jira-software-7.5.0-x64.bin file and use the following installation guide URL: Installing JIRA applications on Linux
  4. The rest you’ll do via terminal [Which I’ve shown in YT Vid doing a real install]
  5. https://www.youtube.com/watch?v=i381CoSUR2k
  6. NOTE: You will have a different named downloaded-jira-software-num.ber.ed-x64.bin file. Replace the name you download with this version for ease of installation.
  7. Complete rest of installation using terminal then finish from web browser using http://localhost:8080

Bluetooth Pairing

 

index

Beats Powerbeats 3 were used in above example

 

 

 

 


LXTerminal Installation Log: Use to setup Bluetooth Devices [Watch Video Above for final setup]

SU@lubuntu1510.info:~$ sudo apt-get install pulseaudio pulseaudio-module-bluetooth bluez
Reading package lists… Done
Building dependency tree
Reading state information… Done
bluez is already the newest version.
bluez set to manually installed.
pulseaudio is already the newest version.
The following packages were automatically installed and are no longer required:
chromium-codecs-ffmpeg-extra gstreamer0.10-gconf gstreamer0.10-plugins-good
gstreamer0.10-pulseaudio gstreamer0.10-x mythes-en-au
openoffice.org-hyphenation
Use ‘apt-get autoremove’ to remove them.
The following NEW packages will be installed:
pulseaudio-module-bluetooth
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 52.3 kB of archives.
After this operation, 271 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu/ wily/main pulseaudio-module-bluetooth amd64 1:6.0-0ubuntu13 [52.3 kB]
Fetched 52.3 kB in 0s (113 kB/s)
Selecting previously unselected package pulseaudio-module-bluetooth.
(Reading database … 181510 files and directories currently installed.)
Preparing to unpack …/pulseaudio-module-bluetooth_1%3a6.0-0ubuntu13_amd64.deb …
Unpacking pulseaudio-module-bluetooth (1:6.0-0ubuntu13) …
Setting up pulseaudio-module-bluetooth (1:6.0-0ubuntu13) …
SU@lubuntu1510.info:~$ sudo gedit /etc/bluetooth/audio.conf

** (gedit:4813): WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files

(gedit:4813): IBUS-WARNING **: The owner of /home/e6410/.config/ibus/bus is not root!

(gedit:4813): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files

SU@lubuntu1510.info:~$ cd /etc/bluetooth/
SU@lubuntu1510.info:/etc/bluetooth$ ls
input.conf main.conf network.conf proximity.conf
SU@lubuntu1510.info:/etc/bluetooth$ sudo pactl load-module module-bluetooth-discover
18
SU@lubuntu1510.info:/etc/bluetooth$

Support URL this process was taken from:

Official Ubuntu Forums Bluetooth Help URL