LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 01-28-2016, 11:07 PM   #16
MrTux
Member
 
Registered: Dec 2015
Posts: 131

Rep: Reputation: Disabled

Quote:
Originally Posted by keithgmccall View Post
It's a laptop with nothing special added. When I do sudo blkid, all of the options would show up right?
all your devices would show up and what inode (/dev/sdX) it is at.

unless your hard drive is doomed but it should give you an error.

Last edited by MrTux; 01-28-2016 at 11:09 PM.
 
Old 01-29-2016, 08:45 AM   #17
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by keithgmccall View Post
It's a laptop with nothing special added. When I do sudo blkid, all of the options would show up right?
it show you HDD's

Code:
%userx@voided ~>>$sudo blkid
/dev/mmcblk0p1: UUID="7EE4-AA6E" TYPE="vfat" PARTUUID="0004dc97-01"
/dev/sdb1: LABEL="data" UUID="8dd0fcbe-9526-428c-8760-104d7f3dde45" TYPE="ext4" PARTUUID="24f545a6-01"
/dev/sda1: UUID="f79f684e-c079-4daa-8eb7-570890855ef9" TYPE="swap" PARTUUID="6147b2c4-01"
/dev/sda2: UUID="aa6520d6-bf65-4039-abd1-4b55bf95b551" TYPE="ext4" PARTUUID="6147b2c4-02"
/dev/sda3: UUID="cd01a154-f459-4b13-b867-1e4dbc86d677" TYPE="ext4" PARTUUID="6147b2c4-03"
/dev/mmcblk0: PTUUID="0004dc97" PTTYPE="dos"
/dev/sdc1: LABEL="WD3TB" UUID="89f35fb4-9578-42ca-9244-0f4b5ef1604d" TYPE="ext4"
so now you'll know what to use to mount off of...

try sudo cat /etc/fstab

just to be sure it is or is not there.
 
Old 01-29-2016, 08:49 AM   #18
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by keithgmccall View Post
It says "mount: can't find all in /etc/fstab or /etc/mtab"
it is
Code:
sudo mount -a
not mount all...

by the error message it is telling you that it cannot find ALL within fstab .. not that fstab is not there....

because mount all is like telling it to mount all, using the word "all" as a device address, not a switch, mount -a is what he meant to say. it means mount all, but written "mount -a".

Last edited by BW-userx; 01-29-2016 at 09:00 AM.
 
Old 01-29-2016, 08:57 AM   #19
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Quote:
Originally Posted by keithgmccall View Post
I was playing a game with playonlinux that stopped responding. I couldn't click on anything so I did a hard reset. The Linux mint logo came up, then a black screen with just the mouse pointer was showing. I was able to open the terminal, but I don't really know what the problem is or how to fix it. I have searched the internet for various sokutions, but nothing seems to work.[
did this repeat itself when you tried playing that game again?

did you reboot your system? it is not working now at all because of it?


Quote:
The first think I tried was sudo apt-get update. This seems to fail. It's shows a bunch of lines that start with err then lines with w: failed to fetch then lists various things. It almost seems like the update can't connect to the internet to update anything. Can anyone help me get my computer usable again?
"failed to fetch" means something is wrong with your connection, bad internet connection, or your repo address is calling to a server that is down, or backed up or bad address to it, so it cannot connect to it, or your source list is malformed.


if you can get to a terminal within the system -- try removing the game, reboot, then see if it starts up proper like.

Last edited by BW-userx; 01-29-2016 at 09:02 AM.
 
1 members found this post helpful.
Old 01-29-2016, 10:51 PM   #20
keithgmccall
LQ Newbie
 
Registered: Jan 2016
Posts: 13

Original Poster
Rep: Reputation: Disabled
I do have access to all of my files if that changes anything.
 
Old 01-29-2016, 11:00 PM   #21
MrTux
Member
 
Registered: Dec 2015
Posts: 131

Rep: Reputation: Disabled
Do an fsck on your hdd.
 
Old 01-29-2016, 11:13 PM   #22
keithgmccall
LQ Newbie
 
Registered: Jan 2016
Posts: 13

Original Poster
Rep: Reputation: Disabled
Okay, for some reason your posts weren't coming through until after I posted again. When I run the fstab command, it says command not found. After the computer froze and I rebooted it by holding down the power button, it has not booted back up. On the bright side, apt get update has started working again.
 
Old 01-29-2016, 11:17 PM   #23
keithgmccall
LQ Newbie
 
Registered: Jan 2016
Posts: 13

Original Poster
Rep: Reputation: Disabled
When I started to do the fsck, it says the drive is mounted, and it will cause severe damage...
 
Old 01-29-2016, 11:19 PM   #24
MrTux
Member
 
Registered: Dec 2015
Posts: 131

Rep: Reputation: Disabled
I think it may be best if you boot from a live disk then do the repair without mounting it.

Last edited by MrTux; 01-29-2016 at 11:20 PM.
 
Old 01-29-2016, 11:22 PM   #25
keithgmccall
LQ Newbie
 
Registered: Jan 2016
Posts: 13

Original Poster
Rep: Reputation: Disabled
It seems like there is something wrong with cinnamon itself. It is saying that it is not found. What repair are you talking about? The hard drive seems to be working as I can access all of my files.
 
Old 01-29-2016, 11:35 PM   #26
MrTux
Member
 
Registered: Dec 2015
Posts: 131

Rep: Reputation: Disabled
Live disc.
 
Old 01-29-2016, 11:45 PM   #27
keithgmccall
LQ Newbie
 
Registered: Jan 2016
Posts: 13

Original Poster
Rep: Reputation: Disabled
Okay just a quick update, I found something about reinstalling cinnamon, and it worked! I think it didn't work last time because I wasn't connected to my network for some reason, but it is now working! Thank you so much for your time
 
Old 01-29-2016, 11:46 PM   #28
MrTux
Member
 
Registered: Dec 2015
Posts: 131

Rep: Reputation: Disabled
Glad u got it working.

Np
 
Old 01-30-2016, 07:14 AM   #29
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
happy days are here again ...
 
  


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
[SOLVED] On Ctrl+Alt+F1 shows 1st console , but on Ctrl+Alt+F7 doesnt go back to GUI, startx deskt0plinux Ubuntu 5 05-22-2012 01:56 AM
CTRL+ALT+F1....F6 don't work abd_bela Debian 4 02-03-2012 04:21 PM
[SOLVED] Linux Mint 12: Blank black screen after pressing Ctrl-Alt-F1, possibly larger issue Xirapt Linux - Newbie 1 12-28-2011 01:16 AM
9.04 Fails to boot, Ctrl+Alt+F1 does not bring up login or terminal, Same on LiveCD paulofmandown Ubuntu 3 05-11-2009 07:50 AM
Gnome crashes to black screen after boot up (though ctrl-alt-F2 gives a terminal) Gossamer Linux - Newbie 0 10-06-2005 01:32 AM

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

All times are GMT -5. The time now is 03:30 PM.

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