Skip to main content

Ubuntu 18.04 LTS (bionic beaver)


Hey! Ubuntu lovers ðŸ˜Š your next buddy, Ubuntu 18.04 LTS (bionic beaverwill release on next 26th of April 2018. There are many new features in this Ubundu 18.04.Okay... Let's see some new features in Ubuntu 18.04 LTS.

ubuntu 18.04 default wallpaper


  1.  New Ubuntu 18.04 has GNOME 3.28
  2.  It has a better boot speed.
  3. It has a new minimal installation option.
  4. Using PPA in new Ubuntu 18.04 is slightly easy.
  5. New look in file manager.
  6. New installer for Ubuntu 18.04 Server edition.
  7. Native support for color emojes.
  8. The proposed brand new themes and icon developed by the community will no longer be the default.
  9. Default new applications.
    • Some of the are,
      • Video player/Music Player        VLC
      • IDE                                            Visual Studio Code
      • Video Editor                              Kdenlive
      •  Screen Recorder                       Open Broadcaster Software (OBS)
      • Email Client                              Thunderbird
      • Text Editor                                gedit
      • Office Suite                               LibreOffice
      • Browser                                     Mozilla Firefox
      •  Photo Viewer                            Shotwell
      • Terminal                                    GNOME Terminal
      •  PDF Reader                              Evince
      • Photo Editor                              Gimp
      • IRC/IM                                      Pidgin
      •  Calendar                                   GNOME Calendar
What do you think about this new Ubuntu 18.04 LTS (Bionic Beaver).... Comment below :)

Comments

Popular posts from this blog

Koobiyo with Ants

NIC birthday checker Using Scala

package main.scala import scala.util.control._ /** * Created by Dinuka on 4/8/2017. */ object Nic extends App{ print ( "Please input your NIC :" ) var nicNo = scala.io.StdIn.readLine() val year = nicNo .substring( 0 , 2 ).toInt+ 1900 var monthdates = Array ( 31 , 29 , 31 , 30 , 31 , 30 , 31 , 31 , 30 , 31 , 30 , 31 ) var dayNo = nicNo .substring( 2 , 5 ).toInt var gender = "Male" if ( dayNo > 500 ){ dayNo -= 500 gender = "Female" } def setMonth(day1:Int): String ={ var month ,da = 0 var day=day1 var i= 0 val loop = new Breaks; loop.breakable { for (i<- 0 until monthdates .length- 1 ){ if (day < monthdates (i)){ month=i+ 1 da=day loop.break } else { day =day- monthdates (i) } } } ( " \n Month : " + month + " \n Date : " + da+ " \n " ); } println ( "Year :" + y...