LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 10-13-2005, 07:36 PM   #1
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Rep: Reputation: 0
Question Basic help on a command


Hi,
I am running Colinux And Tlinux They are working good.
I can login fine everything is working as far as i know all drives are mounted (I dont know how to check if they are),
I can access mail, type a new message, ( I Dont know how to stop typing 1 )

Could somebody tell me plz how to install mythtv (or any software for example) from hardrive or cd-rom

How do i access my cd drive?
I have tried;-

cd /dev/hdd
cd /dev/hdc
cd /cd01
cd /cd02

This is my 1st time using linux, im really stuck

Please Help
 
Old 10-13-2005, 07:52 PM   #2
xgreen
Member
 
Registered: Aug 2003
Distribution: Slackware,Arch
Posts: 389

Rep: Reputation: 30
here are some good references

http://www.karakas-online.de/gnu-lin...roduction.html
http://linuxcommand.org/

for reading cd, you need to read your /etc/fstab

cat /etc/fstab

then

mount /mnt/cdrom or whatever mount point referring to your drive.


Welcome to LQ.
 
Old 10-13-2005, 07:56 PM   #3
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
Thank you i will give them a read now
 
Old 10-13-2005, 08:10 PM   #4
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
cat /etc/fstab worked showed me what i need to do thanks

Last edited by Colinux_Tlinux_noob; 10-13-2005 at 08:20 PM.
 
Old 10-13-2005, 08:15 PM   #5
jrdioko
Member
 
Registered: Oct 2002
Distribution: Debian 6.0.2 (squeeze)
Posts: 944

Rep: Reputation: 30
Type "mount"
 
Old 10-13-2005, 08:23 PM   #6
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
i have typed
cat /etc/fstab

mount /mnt/cdrom1 it says cant find ?? do i have to type the cd's filename like if its called New do i type /mnt/new?

i have tried man mount that gives me a million commands i am lost

Last edited by Colinux_Tlinux_noob; 10-13-2005 at 08:26 PM.
 
Old 10-13-2005, 08:41 PM   #7
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
I Mounted A drive for the 1st time NICE 1

i mounted by typing mount /dev/cobd2 /mnt/cdrom

but i dont know how to access it i tried cd /dev/cobd2
 
Old 10-13-2005, 08:46 PM   #8
cotton
LQ Newbie
 
Registered: Jun 2005
Posts: 12

Rep: Reputation: 0
my understanding is that when you mount a drive, you make it so that you can access a specific device ( /dev/cobd2) through a directory (/mnt/cdrom). so what you want to do is cd to /mnt/cdrom
 
Old 10-13-2005, 08:53 PM   #9
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
You are great ive just been typing
"/mnt cdrom"
and getting /mnt is a directory

tx 4 getting me started
 
Old 10-13-2005, 09:07 PM   #10
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
Im back again.....

I cant open myth-tv.tar.bz2

where do i start ?? i am also having trouble mounting a hard drive

i am still reading tutorials and http://www.karakas-online.de/gnu-lin...mary/help.html

making a bit of sense from it but not any is usefull to me right now

Last edited by Colinux_Tlinux_noob; 10-13-2005 at 09:12 PM.
 
Old 10-13-2005, 09:13 PM   #11
jrdioko
Member
 
Registered: Oct 2002
Distribution: Debian 6.0.2 (squeeze)
Posts: 944

Rep: Reputation: 30
To extract the contents of an archive, use the following:

For .tar.gz files:
Code:
tar zxvf filename.tar.gz
For .tar.bz2 files:
Code:
tar jxvf filename.tar.gz
That will uncompress and extract the archive to a directory with the same name as the file in the current directory.

What exactly are you having trouble with as far as mounting goes?

Last edited by jrdioko; 10-13-2005 at 09:15 PM.
 
Old 10-13-2005, 09:27 PM   #12
Colinux_Tlinux_noob
LQ Newbie
 
Registered: Oct 2005
Posts: 12

Original Poster
Rep: Reputation: 0
how do i mount a hard drive G:

i put this is in my defualt.xml
<block_device index="5" path="\Device\G:\" enabled="true" />


mount /mnt/hda /mnt/harddrive
gives error mount point does not exist
confused

how would i extract to a different directory ?
tx again help appreciated id probably still e tryin to mount a cd if i didnt get any

Last edited by Colinux_Tlinux_noob; 10-13-2005 at 10:02 PM.
 
Old 10-14-2005, 07:22 AM   #13
cotton
LQ Newbie
 
Registered: Jun 2005
Posts: 12

Rep: Reputation: 0
If it says mount point does not exist, it means the directory you're trying to mount the drive to, /mnt/harddrive, doesn't exist. You'll have to create the directory first. Go into the mnt directory (cd /mnt) and use the command "mkdir harddrive" to create it. You will have to do this as root. One other thing, you'll need to specify the partition on the hard drive you're trying to mount. If there is only one, just use 1. like this: mount /dev/hda1 /mnt/harddrive. Although you're probably talking about a second hard drive, so it would be hdb instead of hda. One more thing: forget the idea of assigning letters to hard drives. That's pretty much a Windows thing I think.
 
Old 10-14-2005, 08:43 AM   #14
asahlot
Member
 
Registered: Sep 2005
Location: india
Distribution: Fedora Core 2
Posts: 62

Rep: Reputation: 15
u read man pages of mount .
try # man mount
to know how to extract try
#man tar and #man zip..
hope it will help u.
 
  


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
Basic ls command cookie_ie Linux - Newbie 9 03-22-2005 05:38 PM
command line help - pretty basic Chuck23 Linux - Hardware 6 01-13-2005 10:30 AM
sources of linux basic command digitalbrutus Linux - Software 1 11-03-2004 01:50 PM
Need help one a basic command Gaz85 Linux - Software 4 02-22-2004 03:37 PM
Find Command - Basic Question tlb04 Linux - General 3 05-06-2003 08:45 PM

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

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