LinuxQuestions.org
Help answer threads with 0 replies.
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 11-06-2009, 11:34 AM   #1
CT_0000
Member
 
Registered: Sep 2009
Posts: 69

Rep: Reputation: 15
Kubuntu 9.10 boots only a command terminal


Well I'm new to linux and sure did mess something up.

In a couple days I plan on changing to opensuse from kubuntu. Anyway in the Kpackagemanager I removed the pulseaudio client (and its dependencies) and it messed up my system a bit. I don't really mind but all I need is to get my files from my home folder off my hdd to an external through usb 2.0. When Kubuntu 9.10 boots now all it is is a command terminal basically and I don't know the specific commands to get the files. Or if I need to reinstall something so that it boots up with a graphical looking UI again.

Any help would be awesome :-)
 
Old 11-06-2009, 12:26 PM   #2
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,215

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
When you un-installed pulseaudio, you removed a lot of applications, and KDE. You don't have it installed any more. I know from the same experience. If you want to see what got removed, have a look in /var/log/messages There will be an entry for each package removed.

You have two choices, install KDE and all the applications removed, or just re-install. If you want to install the packages removed, you will have to do it via the command line, unless you had more than one desktop installed.

I run Mandriva, so I can not tell you the commands to use. Possibly someone that runs buntu can chime in and give you some direction on command line install.
 
Old 11-06-2009, 12:57 PM   #3
CT_0000
Member
 
Registered: Sep 2009
Posts: 69

Original Poster
Rep: Reputation: 15
Ahh I'm glad I'm not the only one whose done this :-p

In any case I don't really want to do a re-install, unless its possible to do it and not lose my files (school docs,music, and movies mostly)

If its possible to transfer them from the command line that'd be great, or reinstall the programs to get it to work.
 
Old 11-06-2009, 01:00 PM   #4
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: Washington U.S.
Distribution: M$ Windows / Debian / Ubuntu / DSL / many others
Posts: 2,339

Rep: Reputation: 231Reputation: 231Reputation: 231
in other words kubuntu boots into useful mode!
its common knolage you cannot do anything productive with a GUI.
 
Old 11-06-2009, 01:03 PM   #5
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: Washington U.S.
Distribution: M$ Windows / Debian / Ubuntu / DSL / many others
Posts: 2,339

Rep: Reputation: 231Reputation: 231Reputation: 231
try
Code:
sudo apt-get upgrade
sudo apt-get install KDE
 
Old 11-06-2009, 02:39 PM   #6
jamwaffles
Member
 
Registered: Mar 2008
Distribution: Ubuntu Lucid
Posts: 131

Rep: Reputation: 19
Quote:
Originally Posted by smeezekitty View Post
try
Code:
sudo apt-get upgrade
sudo apt-get install KDE
KDE is lowercase (or it might not matter i dont know. It probably does on second thoughts)

James
 
Old 11-06-2009, 06:17 PM   #7
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,215

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
In any case I don't really want to do a re-install, unless its possible to do it and not lose my files (school docs,music, and movies mostly
There are lots of ways to move your files to a safe palce, in fact sine the system runs, command line, it is quite easy. USB memory sticks are cheap. I have a 8 gig stick I bought at Wal-mart. ( $20.00 ). You probably have to run a mount command. Then copy the files and folders to saftey.

Another way, if you need a GUI is to boot from a live CD. There are lots to choose from. I use Knoppix usually for this kind of rescue. From the gui you can mount an external USB, drag and drop the folders.

If you need help with the commands, let us know...
 
Old 11-06-2009, 07:41 PM   #8
CT_0000
Member
 
Registered: Sep 2009
Posts: 69

Original Poster
Rep: Reputation: 15
I have a usb drive and a portable hdd I can use. I don't know how to mount a usb device from the command line though as well as transfer the files to the device from it. If you could help with that I'd appreciate it so much.

Thanks
 
Old 11-06-2009, 08:22 PM   #9
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,215

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
First of all, try plugging it in, it may automount, depending on your system configuration. If it automounts, the files on it will probably show up in a directory called /media. You can try a 'ls' command in /media before and after plugging the stick. If it shows up, you are away to the races. If not, try the next things.

Before you plug it in, on the command line go to /dev directory. Try a few ls commands to see what it there before you plug it in. ie 'ls /dev/sda' and 'ls /dev/sdb' If your hard drives are sata, there will be a sda device before you plug the memory stick. The stick should show up as the next device.

Plug the stick, and do the ls commands again. You should find a new device created. You need to know for the mount command what the stick is. Most of them are formatted for fat, ( vfat as linux calls it ).

If the stick shows up as /dev/sdb, you now need a mount point. You can use /media for this. CD to /media. make a directory for the stick. 'mkdir stick' ( you can call it anything you want ). Now try a mount.

'mount -t auto /dev/sdb /media/stick' hit enter, pray, if there are no errors it was a success. Do an 'ls' in /media/stick directory and you should see what is on the stick.

If it fails, post how far you got...
 
Old 11-06-2009, 08:29 PM   #10
CT_0000
Member
 
Registered: Sep 2009
Posts: 69

Original Poster
Rep: Reputation: 15
Thanks so much for the easy to follow directions! I'll let you know how far I get when I get to my laptop.

-chris
 
Old 11-07-2009, 06:11 PM   #11
CT_0000
Member
 
Registered: Sep 2009
Posts: 69

Original Poster
Rep: Reputation: 15
So I plugged in the flash drive and it showed up as /dev/sdb . I tried making a directory in /media by entering
Code:
cd /media
and then
Code:
mkdir stick
(naming it stick to keep it easy) but it replies with permission denied.

When I attached the usb stick it came up with two lines of text so I do know if that means it recognized it and automounted it or not. I tried figuring out how to few the files on there but I could not as I do not even think it is mounted.
 
Old 11-07-2009, 06:19 PM   #12
AuroraZero
Member
 
Registered: Oct 2009
Location: memphis, TN
Distribution: SlackWare 14.2, Android, Slax, Centos 5.9 Final, Centos 6
Posts: 188

Rep: Reputation: 32
Most likely it is because you are not root. I believe if you type su it will them ask for root password. I use Slackware myself so I am not for sure on this one. I think you could also type sudo mkdir stick and this would work also.I am almost positive the second one will work. Seems like I remember this from my Ubuntu days.
 
Old 11-07-2009, 06:28 PM   #13
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: Washington U.S.
Distribution: M$ Windows / Debian / Ubuntu / DSL / many others
Posts: 2,339

Rep: Reputation: 231Reputation: 231Reputation: 231
on ubuntu you type sudo bash to get into root.
 
Old 11-07-2009, 06:34 PM   #14
AuroraZero
Member
 
Registered: Oct 2009
Location: memphis, TN
Distribution: SlackWare 14.2, Android, Slax, Centos 5.9 Final, Centos 6
Posts: 188

Rep: Reputation: 32
Quote:
Originally Posted by smeezekitty View Post
on ubuntu you type sudo bash to get into root.
Thanks for the heads up man it has been years since I used Ubuntu. 5.04 was the last version I used.
 
Old 11-07-2009, 07:44 PM   #15
CT_0000
Member
 
Registered: Sep 2009
Posts: 69

Original Poster
Rep: Reputation: 15
Alright I got it, that makes sense. When I do have it mounted what is the command to copy files to it?
 
  


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
How do I resize the terminal window from the command line in the gnome terminal QuIcKSpArK Linux - Newbie 5 04-21-2012 02:04 PM
(sabayon)add a option in the grub menu where it only boots into the terminal deathalele Linux - Distributions 3 11-25-2008 07:20 AM
Kubuntu Terminal Window SuperUser Command Question rrrssssss Ubuntu 2 04-12-2007 08:13 PM
After changing some x11 preferences, SuSE boots in terminal only RedShirt Linux - Hardware 6 10-17-2005 07:29 PM
FC3 boots to a clock and terminal? wasabi Fedora 10 05-29-2005 02:13 AM

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

All times are GMT -5. The time now is 10:09 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