Quantcast
Channel: Ubuntu Forums - Installation & Upgrades
Viewing all 26379 articles
Browse latest View live

removing a partially-installed package

$
0
0
I tried to install google chrome, and even with gdebi it fails, but now everytime i try to update it fails due to this in terminal, ubuntu software etc

running 17.04

i get this error for a normal apt-get upgrade:

Code:

Processing triggers for man-db (2.7.6.1-2) ...
Setting up google-chrome-stable:i386 (42.0.2311.90-1) ...
xdg-icon-resource: size argument must be numeric
Try 'xdg-icon-resource --help' for more information.
dpkg: error processing package google-chrome-stable:i386 (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 google-chrome-stable:i386
E: Sub-process /usr/bin/dpkg returned an error code (1)


[SOLVED] Trouble booting Windows 8 after Ubuntu 16.04

$
0
0
I installed Ubuntu on a Windows 8 system that had about half the SSD available. I used the option that simply installs Ubuntu along side Windows without me specifying any changes to the partition table. I can boot into Ubuntu just fine, but not Windows. I think Grub can't find windows. I only have four options at boot:

Ubuntu
Advanced something Ubutnu
Windows boot manager
System something

When I try Windows boot manager, I just get an Ubuntu-purple screen. I tried reinstalling Grub2 from the Ubuntu USB, but I got an error saying the file system i chose wasn't bootable.

Can anyone give me some guidance on what to do from here?

sudo fdisk -l

Code:

Disk /dev/sda: 465.8 GiB, 500107862016 bytes, 976773168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: B0391CDA-8D02-47B9-A582-7F502C03B5B8

Device        Start      End  Sectors  Size Type
/dev/sda1      2048  2050047  2048000  1000M Windows recovery environment
/dev/sda2    2050048  2582527    532480  260M EFI System
/dev/sda3  960178176 976771071  16592896  7.9G Linux swap
/dev/sda4    2582528  2844671    262144  128M Microsoft reserved
/dev/sda5    2844672 470614015 467769344 223.1G Microsoft basic data
/dev/sda6  470614016 500117503  29503488  14.1G Windows recovery environment
/dev/sda7  500117504 960178175 460060672 219.4G Linux filesystem

Partition table entries are not in disk order.


sudo fdisk -l

Code:

/dev/sda1: LABEL="WINRE_DRV" UUID="AEA86437A863FC69" TYPE="ntfs" PARTUUID="fae4e849-89cc-4c6c-97a3-aaba83311fb8"
/dev/sda2: LABEL="SYSTEM_DRV" UUID="1C65-5023" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="13798eb2-cc6a-483f-bdcd-91e7d23c0a08"
/dev/sda3: UUID="63e4025a-4d8e-4ae1-8eba-08d065a1a94d" TYPE="swap" PARTUUID="9f45ab31-fc5e-4e0b-93ce-ef8c8dbee8bd"
/dev/sda4: PARTLABEL="Microsoft reserved partition" PARTUUID="9ce06c71-0a9b-43be-84d4-5463d171e8fd"
/dev/sda5: LABEL="Windows8_OS" UUID="702A66FF2A66C1A8" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="1d166a08-5a55-41da-b87a-159905760f19"
/dev/sda6: LABEL="Lenovo_Recovery" UUID="CA0C62390C6220A5" TYPE="ntfs" PARTUUID="6c715388-c608-4281-8382-726fbfa0cf82"
/dev/sda7: UUID="e1f2e29b-fe90-4894-bb9d-845e6c4f7792" TYPE="ext4" PARTUUID="de2d99de-01cf-4e56-9c82-28b7b22ba465"



/boot/grub/grub.cfg

Code:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
  set default="${next_entry}"
  set next_entry=
  save_env next_entry
  set boot_once=true
else
  set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
  font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
else
  search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
    set gfxpayload="${1}"
    if [ "${1}" = "keep" ]; then
        set vt_handoff=vt.handoff=7
    else
        set vt_handoff=
    fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
    recordfail
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt7'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
    else
      search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
    fi
    linux    /boot/vmlinuz-4.10.0-33-generic.efi.signed root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro  quiet splash $vt_handoff
    initrd    /boot/initrd.img-4.10.0-33-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
    menuentry 'Ubuntu, with Linux 4.10.0-33-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-33-generic-advanced-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
        recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt7'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        else
          search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        fi
        echo    'Loading Linux 4.10.0-33-generic ...'
        linux    /boot/vmlinuz-4.10.0-33-generic.efi.signed root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro  quiet splash $vt_handoff
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.10.0-33-generic
    }
    menuentry 'Ubuntu, with Linux 4.10.0-33-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-33-generic-init-upstart-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
        recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt7'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        else
          search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        fi
        echo    'Loading Linux 4.10.0-33-generic ...'
        linux    /boot/vmlinuz-4.10.0-33-generic.efi.signed root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro  quiet splash $vt_handoff init=/sbin/upstart
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.10.0-33-generic
    }
    menuentry 'Ubuntu, with Linux 4.10.0-33-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-33-generic-recovery-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
        recordfail
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt7'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        else
          search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        fi
        echo    'Loading Linux 4.10.0-33-generic ...'
        linux    /boot/vmlinuz-4.10.0-33-generic.efi.signed root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro recovery nomodeset
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.10.0-33-generic
    }
    menuentry 'Ubuntu, with Linux 4.10.0-28-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-28-generic-advanced-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
        recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt7'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        else
          search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        fi
        echo    'Loading Linux 4.10.0-28-generic ...'
            linux    /boot/vmlinuz-4.10.0-28-generic root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro  quiet splash $vt_handoff
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.10.0-28-generic
    }
    menuentry 'Ubuntu, with Linux 4.10.0-28-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-28-generic-init-upstart-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
        recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt7'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        else
          search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        fi
        echo    'Loading Linux 4.10.0-28-generic ...'
            linux    /boot/vmlinuz-4.10.0-28-generic root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro  quiet splash $vt_handoff init=/sbin/upstart
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.10.0-28-generic
    }
    menuentry 'Ubuntu, with Linux 4.10.0-28-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-28-generic-recovery-e1f2e29b-fe90-4894-bb9d-845e6c4f7792' {
        recordfail
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_gpt
        insmod ext2
        set root='hd0,gpt7'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        else
          search --no-floppy --fs-uuid --set=root e1f2e29b-fe90-4894-bb9d-845e6c4f7792
        fi
        echo    'Loading Linux 4.10.0-28-generic ...'
            linux    /boot/vmlinuz-4.10.0-28-generic root=UUID=e1f2e29b-fe90-4894-bb9d-845e6c4f7792 ro recovery nomodeset
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.10.0-28-generic
    }
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-1C65-5023' {
    insmod part_gpt
    insmod fat
    set root='hd0,gpt2'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  1C65-5023
    else
      search --no-floppy --fs-uuid --set=root 1C65-5023
    fi
    chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
    fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###


sudo update-grub

Code:

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.10.0-33-generic
Found initrd image: /boot/initrd.img-4.10.0-33-generic
Found linux image: /boot/vmlinuz-4.10.0-28-generic
Found initrd image: /boot/initrd.img-4.10.0-28-generic
Found Windows Boot Manager on /dev/sda2@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for EFI firmware configuration

[ubuntu_budgie] Cant do updates fresh install

$
0
0
hello there, is there any problem today? i cant do updates, everything get stuck.... are servers down?

Im using 16.4 remix budgie


Edit: if i try $ sudo apt update or any kind update it gets stuck on transfering and even on adicional devices changing the server it gets stuck on transfering, idk what to do.

[ubuntu] Installation Issues

$
0
0
I have been unable to boot and install Ubuntu onto my computer from a USB stick. I have an ASUS G75VW. It runs windows 10. I downloaded Ubuntu and used Rufus to put it on a USB as a bootable USB. The problem is when I restart my computer and go to the UEFI/BIOS, there is no option to boot from the USB.

[ubuntu] About This Computer Always Says "Install Updates" Even After Updating

$
0
0
When I select the upper right menu, "About This Computer", the panel always comes up with the button in the lower right saying "Install Updates". Even after I click "Install Updates", and it checks, it says "The software on this computer is up to date". But it never changes the button in "About This Computer" to "Up to Date" like it used to. Ubuntu 16.04 LTS.

I've been running Ubuntu for 9 years on another computer (which is now 16.04 LTS as well), and I've never seen this behavior before.

[ubuntu] Not able to install Ubuntu 17.04 on hard disk

$
0
0
Hi,
I’m trying to install on one of my hard disk, Ubuntu 17.04 Desktop, using an iso image « ubuntu-17.04-desktop-amd64.iso » (downloaded from « https://www.ubuntu.com/download/desk...itecture=amd64 »).


I use the same way as usual, loading the iso image on an usb key with « netbootin » and booting my system from the usb key using and instruction in the Bios. I have used this process in the past for many times without any problem. With the 17.04 version, the system start with the « Ubuntu ... » signal in the middle of the screen and after, nothing happens! The system seems to be freezed.


My global configuration is multi-boot and I use Grub2 to manage wich system I’m using. I have also tried to boot directly from Grub2 and the iso image as described on the Ubuntu documentation (in french : https://doc.ubuntu-fr.org/tutoriel/g...des_images_iso). The result was similar as what the usb produce.


I have tried to use the iso image with Virtualbox and the system load correctly all seems to run properly.


Is there somebody that can give me an idea where I can look to find the source of the problem!!!


Thanks in advance!

[ubuntu] How to add username for each installation log entry

$
0
0
I need to add 'username'(who is installing) in each installation log entry in ubuntu 16.04. Which file need to configure and what will be the configuration?

[ubuntu] python installation

$
0
0
when I typed the command : dpkg -s python
OUTPUT:

Package: python
Status: install ok installed
Priority: standard
Section: python
Installed-Size: 635
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: amd64
Multi-Arch: allowed
Source: python-defaults
Version: 2.7.11-1
Replaces: python-dev (<< 2.6.5-2)
Provides: python-ctypes, python-email, python-importlib, python-profiler, python-wsgiref
Depends: python2.7 (>= 2.7.11-1~), libpython-stdlib (= 2.7.11-1)
Pre-Depends: python-minimal (= 2.7.11-1)
Suggests: python-doc (= 2.7.11-1), python-tk (>= 2.7.11-1~)
Breaks: update-manager-core (<< 0.200.5-2)
Conflicts: python-central (<< 0.5.5)
Description: interactive high-level object-oriented language (default version)
Python, the high-level, interactive object oriented language,
includes an extensive class library with lots of goodies for
network programming, system administration, sounds and graphics.
.
This package is a dependency package, which depends on Debian's default
Python version (currently v2.7).
Original-Maintainer: Matthias Klose <doko@debian.org>
Homepage: http://www.python.org/


when I typed the command : dpkg -s python-numpy
OUTPUT:

Python 2.7.13 (default, Sep 1 2017, 21:33:27)
[GCC 5.3.1 20160413] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named numpy

>>>




So, I checked if python-numpy was installed




when I typed the command : dpkg -s python-numpy

OUTPUT:

Package: python-numpy
Status: install ok installed
Priority: optional
Section: python
Installed-Size: 9373
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: amd64
Version: 1:1.11.0-1ubuntu1
Provides: python-f2py, python-numpy-abi9, python-numpy-api10, python-numpy-dev, python2.7-numpy
Depends: python (<< 2.8), python (>= 2.7~), python2.7:any, python:any (>= 2.7.5-5~), libblas3 | libblas.so.3, libc6 (>= 2.14), liblapack3 | liblapack.so.3
Suggests: gcc (>= 4:4.6.1-5), gfortran, python-dev, python-nose (>= 1.0), python-numpy-dbg, python-numpy-doc
Description: Numerical Python adds a fast array facility to the Python language
Numpy contains a powerful N-dimensional array object, sophisticated
(broadcasting) functions, tools for integrating C/C++ and Fortran
code, and useful linear algebra, Fourier transform, and random number
capabilities.
.
Numpy replaces the python-numeric and python-numarray modules which are
now deprecated and shouldn't be used except to support older
software.
Homepage: http://www.numpy.org/
Original-Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>

So I don't understand why
1.there is inconsistency in version numbers of python and
2.why numpy module could not be imported

[ubuntu] Problem booting 16.04 LTS on Dell Inspiron 1525 after failed software update

$
0
0
Hi,

I had 16.04LTS running OK on an old Dell Inspiron 1520 laptop but I some kind of failure when installing software (including I think OS) updates, power may have failed during this (not sure as pc was unattended).

Unfortunately now it gets stuck in boot up process. I get a few screens of technical text running quickly by so I can't read it, the last line says

Code:

[0.477393] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unkonwn-block(0,0)
Is there any way to repair or restore the installation without having to just reinstall everything from scratch?


Many thanks

[ubuntu] removing package from synaptic package manager

$
0
0
  1. I've added a PPA to get the version of a media player I want
  2. I installed the media player and realized that it has a bug
  3. I removed the PPA by deleting the reference in /etc/apt/sources.list.d
  4. I then used the the package manager to completely remove the package
  5. When I search for the media player in the package manager, it still shows up. This prevents me from installing another version of this player


How can I remove all references to this package?

Thanks

[ubuntu] 16.04 does not boot in normal and recovery kernel . Only boots in startup option

$
0
0
I have just upgraded my netbook Dell Inspiron mini 1012 to Ubuntu 16.04 and I cannot boot normally. The only possibility to boot is in advanced options: kernel (upstart). In the other options the boot freezes and I have to shut down the power to boot with the startup advanced option.

Uhoh - pooped my system trying to dual boot

$
0
0
Hello folks,
I've obtained a new pc (weeeh!) and wanted to dual boot with the windows version it came with (win7,home).
So I created a bootable usb with rufus.
Installation was succesful, it was SUPPOSED to have created a seperate partition.
Unfortunately, now theGrub only lists Ubuntu.
And I'm a noobuntu, so its no fun.
Any ways to "revert"or roll back the install? Thanks..
C

[ubuntu] Too many partitions - what can I do to install ubuntu 16.04.03

$
0
0
Hey guys, I want to install Ubuntu beside my Windows 7 - for that i created an Unallocated partition (15.26GB) on my Computer. If i want to install UBUNTU i cant click the + ( because i have to many primary partitions, I found out searching for the problem). I made you an attachment (overview) over my HDD. Looking forward to your help. Best, Fabian
Attached Images

[ubuntu] ubuntu 16.04 update failure

$
0
0
Code:

395 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.
Need to get 49.7 MB/587 MB of archives.
After this operation, 97.8 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Err:1 https://deb.opera.com/opera-stable stable/non-free amd64 opera-stable amd64 45.0.2552.635
  404  Not Found
E: Failed to fetch https://deb.opera.com/opera-stable/pool/non-free/o/opera-stable/opera-stable_45.0.2552.635_amd64.deb  404  Not Found

tried
sudo apt-get install --reinstall ubuntu-extras-keyring
gpg --keyserver keyserver.ubuntu.com --recv 3E5C1192
gpg --export --armor 3E5C1192 | sudo apt-key add -

Code:

sudo apt-get updateIgn:1 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu xenial InRelease                           
Hit:3 http://dl.google.com/linux/chrome/deb stable Release                           
Get:4 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]           
Hit:5 http://ppa.launchpad.net/ondrej/php/ubuntu xenial InRelease                     
Hit:6 http://archive.canonical.com/ubuntu xenial InRelease                           
Get:7 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]           
Hit:9 http://www.geogebra.net/linux stable InRelease                                 
Get:10 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease [102 kB]       
Hit:8 http://screenshots.getdeb.net xenial-getdeb InRelease                           
Get:12 https://deb.opera.com/opera-stable stable InRelease [2,592 B]             
Err:12 https://deb.opera.com/opera-stable stable InRelease
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D615560BA5C7FF72
Fetched 309 kB in 2s (151 kB/s)
Reading package lists... Done
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://deb.opera.com/opera-stable stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D615560BA5C7FF72
W: Failed to fetch https://deb.opera.com/opera-stable/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D615560BA5C7FF72
W: Some index files failed to download. They have been ignored, or old ones used instead

Code:

sudo apt-get upgrade 395 upgraded, 0 newly installed, 0 to remove and 28 not upgraded.Need to get 49.7 MB/587 MB of archives.
After this operation, 97.8 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Err:1 https://deb.opera.com/opera-stable stable/non-free amd64 opera-stable amd64 45.0.2552.635
  404  Not Found
E: Failed to fetch https://deb.opera.com/opera-stable/pool/non-free/o/opera-stable/opera-stable_45.0.2552.635_amd64.deb  404  Not Found


Thanks in advance for your help!

[ubuntu] Problem with UEFI install on Dell Tower - boot-repair does not fix

$
0
0
Whe I first tired to install ubuntu on my new DELL XPS 8920 tower the SSD drive was not showing up as an option.

I figured out I had to enable the UEFI boot in the bios -- then I could see the drive, and was able to install 17.10 on the SSD drive /dev/nvme0n1p1.

When I rebooted it worked great for several weeks - but after installing some updates and rebooting I am unable to get the boot loader to start grub.

I tried booting to live cd off of USB stick and installing and running boot-repair but it did not solve problem.

Here is the paste bin output from boot-repair: http://paste.ubuntu.com/25453270/

I don't care about /dev/sda -- that is a 1 TB drive I will use for data later.

Goal is to just get UBUNTU running from the SSD ( which was working )

Would be ok if I could just make a usb that would boot and let me add an entry to launch linux from the SSD.

Can anyone help me get this Dell bios to recognize and boot my uefi

FYI: I am running EFI with secure boot off.

[ubuntu] 17.04 Software Updater Doesn't Launch

$
0
0
Running 17.04 with kernel 4.10.9-32

The Software Updater does not launch when updates are available. The icon has turned green to indicate that updates are available.

When I click on the icon in the Unity Launcher nothing happens.

I have to reboot before I can launch the Software Updater. I get a "system problem" popup but that is for cupsd, which should be irrelevant.

What information should I collect to diagnose this problem?

[ubuntu] Install L365 Scanner in Ubuntu 16.04

$
0
0
I need help installing a scanner in Ubuntu 16.04, it is urgent: -; (Epson L365, I already installed the printer drivers and I can print perfectly, but when I install the drivers that ask me for the scanner, it does not work)

[SOLVED] Installation problem

$
0
0
Hi guys,


I installed Kubuntu Linux 17.04 in my Lenovo All-in-One. It has a UEFI system and, after installing Linux, it always starts Windows at startup and no bootloader is showed after power on.
I created an usb disk with Boot-repair-disk distribution and try to repair the boot, but nothing happens.
However, it created a report but i can't post it to the forum.

Can you help me?

PS: I disabled Secure Boot and Quick-Boot from BIOS settings

EDIT:

I Solved the problem disabling a BIOS settings for windows 8/10. Doing this, the boot options were unlocked and Now I can choose the Legacy Boot Mode that works with Linux.

[mythbuntu] Mythtv Totally Screwed Up After 'Upgrade' to 16.04

$
0
0
I just 'upgraded' from 14.04 to 16.04. I have a Hauppauge HVR-2255 video card which required a custom kernel supplied from Hauppauge. After the 'upgrade,' mythtv is useless. First off, when I try to play a recording, all I get is sound and mythtv disappears from the screen. The card is said to be supported in the 16.04 kernel but backendsetup -> capture cards doesn't even show any dvb devices.

So, I restarted with the old kernel. Running the backend setup started out with a lot of missing information. After deleting and adding cards and making connections, everything looks OK, but I still just get errors on all cards. When I quit, I get a message saying that card 10 (?) is set to start on a channel that doesn't exist. I have no idea where it's getting that information or why it thinks I have that many cards.

Am I wrong that the card should be supported? If I uninstall mythtv and reinstall it, how do I retain all my recording information? Is a reinstall likely to help?

Also, the frontend on my laptop running ubuntu 14.04 can't connect to the remote backend because of the 'upgraded' database. Can I upgrade the frontend on my laptop without 'upgrading' to 16.04?

Ubuntu hangs when installing plugins

$
0
0
I freshly installed Ubuntu 4.10.0-28-generic 64 bit. I installed it onto vmware Workstation 12 latest update. I then ran sudo apt-get to update the system. Then I ran sudo apt-get install codeblocks.

After that I noticed that the terminal window is hung with the following:

Master path of compiler ID "null" is empty -> triggers auto-detection.
ClassBrowser::UpdateClassBrowserView(): No active project available.
ClassBrowser::OnThreadEvent(): Updated class browser...
ClassBrowser::OnThreadEvent(): Class browser updated.
Compiler plugin nactivated
Debugger plugin activated
Loading toolbar...
Initializing plugins...

I did not kill the terminal because I'm not sure if it is in the middle of something that could cause more problems if interrupted.

Does anyone have a suggestion as to what I should do?
Viewing all 26379 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>