Results 1 to 10 of 13
Hi,
I am pretty lost at this point. I went to a help site because I wanted to install an IRC client named seamonkey. I followed the directions step by ...
- 04-15-2010 #1
Installing Software in Linux
Hi,
I am pretty lost at this point. I went to a help site because I wanted to install an IRC client named seamonkey. I followed the directions step by step, copy and pasting each and every command into my terminal command line as per the instructions. Every single command produced an error. Needless to say, I was unable to install it.
What's even more frustrating is I can't even post the url for the site here so someone can see what commands I was using.
Is anyone familiar with that site, and can tell me what is wrong? I'm totally lost here.
Having limited resources is a most horrible way for anyone to learn how to use something that is new to them.
Thanks,
Jim.
- 04-15-2010 #2
Try this howto, it covers almost all different types of installs.
http://www.linuxforums.org/forum/lin...are-linux.htmlI do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 04-15-2010 #3forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
The easiest way for new users to install software under Ubuntu is usually by using the Synaptic package manager:
https://help.ubuntu.com/community/SynapticHowto
Have you tried that method yet?
The seamonkey package does appear to be available for Karmic if that's the Ubuntu version that you are using:
Ubuntu -- Details of package seamonkey-browser in karmicoz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 04-15-2010 #4
i would also like to add, that seamonkey is a web browser, and not an IRC client (unless that functionality is built in)
- 04-15-2010 #5forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
Seamonkey does have a built-in IRC client but you might also want to take a look at Xchat, or some of the other popular IRC clients:
XChat: Multiplatform Chat Program
Better to install it with your default package tool if possible.oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 04-15-2010 #6
My favorite way to connect to IRC is actually just an add-on for Firefox: ChatZilla.
Just sayin'
Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 04-15-2010 #7
My goodness!! how easy was that???
So this is like a Linux version of a combination of Windows Add/Remove programs, and Windows Update. Amazing how easy it was.
Okay, let's go one step further. I have been doing searches for ways to Mount Volumes on boot. I seen an example, but it only shows how to mount ntsf volumes by editing /etc/fstab
This is my system layout:
this is my current fstab:Code:Disk /dev/sda: 100.0 GB, 100030242816 bytes 255 heads, 63 sectors/track, 12161 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x05530552 Device Boot Start End Blocks Id System /dev/sda1 * 1 6081 48845128+ 7 HPFS/NTFS Partition 1 does not end on cylinder boundary. /dev/sda2 6082 8963 23149665 7 HPFS/NTFS /dev/sda3 8964 12161 25687935 5 Extended /dev/sda5 8964 12023 24579418+ 83 Linux /dev/sda6 12024 12161 1108453+ 82 Linux swap / Solaris
Here is a temp file I named fstab1. I'm afraid to save it as fstab in case something is not right, because I don't want to tear up my system.Code:proc /proc proc defaults 0 0 UUID=7b84452c-064d-4477-a95f-72b3861dafff / ext4 errors=remount-ro 0 1 UUID=711ee5f8-c549-421a-b850-f029025bebbe none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
I also have a server that I want to mount on boot too. I don't even know where to start getting information on that.Code:proc /proc proc defaults 0 0 UUID=7b84452c-064d-4477-a95f-72b3861dafff / ext4 errors=remount-ro 0 1 UUID=711ee5f8-c549-421a-b850-f029025bebbe none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0 /dev/sda1 /media/sda1 ntfs-3g defaults,unmask=0 0 0 /dev/sda5 /media/sda5 Linux defaults,unmask=0 0 0
Am I on the right track here or am I headed full steam towards a ravine?
Thanks,
Jim.
- 04-15-2010 #8forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 04-15-2010 #9
- 04-15-2010 #10I would wager /dev/sda5 is this bit in your current fstabI also have a server that I want to mount on boot too. I don't even know where to start getting information on that.
Am I on the right track here or am I headed full steam towards a ravine?
It's labeled by the UUID (Universal Unique Identifier), rather than the device name.Code:UUID=7b84452c-064d-4477-a95f-72b3861dafff / ext4 errors=remount-ro 0 1
You can get the UUIDs as so
You're looking to mount the Windows partition automatically in Ubuntu, right?Code:sudo blkid
For a basic entry, you could add this line
I changed it to /mnt. I recommend against mounting things in /media from fstab, because with removable media like flash drives, mount points are dynamically created and destroyed in that directory, and having your own permanent mount points there invites trouble.Code:/dev/sda1 /mnt/sda1 ntfs-3g defaults 0 0
EDIT: More info on fstab:
Fstab - ArchWiki


Reply With Quote
