LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-14-2018, 10:55 PM   #1
Chels
Member
 
Registered: Sep 2018
Location: Australia Newcastle
Distribution: Ubuntu / Mint
Posts: 52

Rep: Reputation: Disabled
Official Linux user now - still boot issues and app store issues


Hi all,

Many thanks to all that have helped me so far, I would like to say I am now and official Linux Deepin distro user.

I still have boot issues which I have to go to a boot menu every time and tell the computer to boot from the hard disk then a Deepin window appears and I choose the first option and it takes me the OS yay.

My other small issue is the Deepin apt store doesn't seem to work,I can't down load the programs from there like Libre Office and Firefox, does anyone know how to fix or work around this issue?

thanks everyone once again
chels
 
Old 09-14-2018, 11:41 PM   #2
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Hi Chels.

When you say "doesn't seem to work", what exactly do you mean?: Fails to launch? Doesn't list the software? Doesn't let you select the package? Appears to download the software but does nothing? Or something else?
 
1 members found this post helpful.
Old 09-15-2018, 12:07 AM   #3
Chels
Member
 
Registered: Sep 2018
Location: Australia Newcastle
Distribution: Ubuntu / Mint
Posts: 52

Original Poster
Rep: Reputation: Disabled
[QUOTE=hydrurga;5903500]Hi Chels.

When you say "doesn't seem to work", what exactly do you mean?: Fails to launch? Doesn't list the software? Doesn't let you select the package? Appears to download the software but does nothing? Or something else?[/QUOTE

Hi hydrurga,
With the app store the programs are shown yet when I try and download the programs I get an error message saying 'failed to download' some apps do download yet libreoffice didn't and firefox.

I did however find a on-line tutorial and I was able to download the file and set it up through terminal - that was exciting I feel thrilled about that

thanks chels
 
Old 09-15-2018, 12:14 AM   #4
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Thanks. Let's do things on the command line and see if we can find any issues.

Can you please paste the output from the following command (using CODE tags - see https://www.linuxquestions.org/quest...g.php?b=36313):

Code:
sudo apt update
 
1 members found this post helpful.
Old 09-15-2018, 06:16 PM   #5
Chels
Member
 
Registered: Sep 2018
Location: Australia Newcastle
Distribution: Ubuntu / Mint
Posts: 52

Original Poster
Rep: Reputation: Disabled
Talking

Quote:
Originally Posted by hydrurga View Post
Thanks. Let's do things on the command line and see if we can find any issues.

Can you please paste the output from the following command (using CODE tags - see https://www.linuxquestions.org/quest...g.php?b=36313):

Code:
sudo apt update
Hi thanks again

Code:
chelsea@chelsea-PC:~$ sudo apt update
[sudo] password for chelsea: 
Get:1 http://repository.spotify.com stable InRelease [3,302 B]              
Hit:2 http://packages.deepin.com/deepin panda InRelease                          
Err:1 http://repository.spotify.com stable InRelease
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A87FF9DF48BF1C90
Get:3 https://deb.opera.com/opera-stable stable InRelease [2,592 B]
Get:4 https://deb.opera.com/opera-stable stable/non-free i386 Packages [1,820 B]
Get:5 https://deb.opera.com/opera-stable stable/non-free amd64 Packages [1,821 B]
Reading package lists... Done       
W: GPG error: http://repository.spotify.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A87FF9DF48BF1C90
E: The repository 'http://repository.spotify.com stable InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
I think that worked but I'm not sure what I'm looking for in the coding. Yesterday with a video tutorial I managed to use the terminal to install Libre office which is a fantastic program especially coming from a slow Macbook running MS office badly I love the fact I can do essay without crashing

Very Impressed with Linux as an OS and the programs too

chels
 
Old 09-15-2018, 08:33 PM   #6
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Thanks. Just to explain, that last command sudo apt update effectively synchronises what packages your computer thinks are in the various software repositories with what the actually situation is, by contacting each repository and asking it for an up-to-date list of the software in it.

You'll obviously need to sort out that Spotify repository error. Normally at the end of the output from that command there should be a line that shows how many packages need upgrading or something along the lines of:

Code:
Building dependency tree       
Reading state information... Done
All packages are up-to-date.
That isn't present in the output you gave above. Please run the command again and if it actually does stop at the point you mentioned i.e. "N: See apt-secure(8) manpage for repository creation and user configuration details." then the command is terminating prematurely and we'll need to comment out that Spotify repository.
 
1 members found this post helpful.
Old 09-15-2018, 11:37 PM   #7
Chels
Member
 
Registered: Sep 2018
Location: Australia Newcastle
Distribution: Ubuntu / Mint
Posts: 52

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hydrurga View Post
Thanks. Just to explain, that last command sudo apt update effectively synchronises what packages your computer thinks are in the various software repositories with what the actually situation is, by contacting each repository and asking it for an up-to-date list of the software in it.

You'll obviously need to sort out that Spotify repository error. Normally at the end of the output from that command there should be a line that shows how many packages need upgrading or something along the lines of:

Code:
Building dependency tree       
Reading state information... Done
All packages are up-to-date.
That isn't present in the output you gave above. Please run the command again and if it actually does stop at the point you mentioned i.e. "N: See apt-secure(8) manpage for repository creation and user configuration details." then the command is terminating prematurely and we'll need to comment out that Spotify repository.
Hi,

I ran sudo apt update again and it stops at N, so do I try and fix spotify or delete the program?

Im not sure how to get into the repository on the system, or how to fix the program default.

chels
 
Old 09-16-2018, 01:21 AM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
since this thread isn't about spotify.
i suggest you simply delete the sources entry for spotify.
you can do it through synaptic => software sources (iirc), or by editing /etc/apt/sources.list or by deleting the approprate file in /etc/apt/sources.list.d/ .
 
Old 09-16-2018, 06:23 AM   #9
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
As ondoho correctly points out, you should disable/remove the Spotify repository from your software sources. There are different ways of doing this, but first let's try it by running Synaptic Package Manager, then clicking on Settings->Repositories. Different distros present this differently, so you will need to look for the Spotify repository here and disable it by e.g. unchecking the check box next to it. If you have problems with this, let us know.
 
1 members found this post helpful.
Old 09-17-2018, 07:40 PM   #10
Chels
Member
 
Registered: Sep 2018
Location: Australia Newcastle
Distribution: Ubuntu / Mint
Posts: 52

Original Poster
Rep: Reputation: Disabled
Hi all,

So I’ve had a think about Deepin and decided to try and switch over to Ubuntu latest addition in the hope I can get a better handle on things especially before I buy another proper laptop for university to replace the old Mac. I’m just testing the operating system on the Acer before I do anything in a rush.

I’m happy I found Ubuntu and then ciro dock which will give me everything I want from a OS. I’m now looking at machines for a Linux machine machine for uni, I found mostly 15” a dell 3000 with i3 8gig hopefully that would be stable to install Linux.

I really like Deepin but I think I need to switch to Ubuntu so I can get a more stable OS to learn and use maybe then switch back or keep the Ubuntu system. Ciro dock upgrade has sold me to switch that’s my main thing I loved in Mac OS was a dock at the bottom.

Thanks everyone once again
 
Old 09-18-2018, 02:42 AM   #11
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Ok. Thanks for letting us know. All the best!
 
1 members found this post helpful.
Old 09-18-2018, 03:19 AM   #12
Chels
Member
 
Registered: Sep 2018
Location: Australia Newcastle
Distribution: Ubuntu / Mint
Posts: 52

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hydrurga View Post
Ok. Thanks for letting us know. All the best!
Hi, I just downloaded Ubuntu and a boot disk creator, hopefully Ubuntu has a bit better support for things like HDMI which didn’t work on the laptop at the moment yet weirdly the touch screen works sort of with the Deepin OS.

Just finding out about Ubuntu dock has made me super excited, I love the dock. Windows has so much going on these days seems to be full of flashing and rubbish and it has a meltdown when it can’t connect to the internet and tell you the stocks shares weather. Windows 95 was nice and simple now days they spoilt it by putting too much rubbish on screen distracting users. Linux is beautiful simple and elegant and powerful, I’m in love with all features of this system.

Now I’m on the hunt for a good laptop to run the system, most are sadly 15” one is HP 250 with i3 yet comes pre loaded with Ubuntu other is dell 15” 3000 comes with windows and is nice but I’ll have to worry about the compatibility loading Linux. The last option is to try and get a 13” dell touch Inspiron with Windows and re-install Linux.


Definitely getting the hang of this now, just buying computers I’m very cautious as a cat to whether it will work with Ubuntu. Dell Australia won’t tell me if the computer can run Linux they said it voids warranty loading Linux yet I think it’s only software how is this opening it up. Silly computer sales unfortunately they want us to use windows.

Chelsea
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Lenovo t450 - Issues on boot tested on Manjaro and MX Linux both had same issues diddyonlinux Linux - Hardware 2 07-26-2018 03:42 PM
issues with fsck at boot - remove user response requirements natosaichek Linux - Server 5 04-04-2012 05:11 AM
ATI Ain in Wonder 8500DV LINUX LIVE boot issues (and TV issues) Flashmahn Linux - Hardware 1 03-09-2009 06:40 AM
Mandrake official 10.1 Dell 5150 post install issues wcujoe Mandriva 8 01-25-2005 11:39 AM
Mandrake 10.1 Official - anyone having issues with fish:// in Konqueror? bongwater Mandriva 2 01-06-2005 09:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration