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 07-17-2014, 09:04 PM   #31
gor0
Member
 
Registered: Jun 2014
Distribution: quad BOOT!
Posts: 549

Rep: Reputation: 65

Quote:
Originally Posted by m.a.l.'s pa View Post

Debian Wheezy (GNOME Shell)
Ubuntu 14.04 (Unity and GNOME Shell)
Arch (Xfce)
openSUSE (KDE and Openbox)
Sabayon (KDE and Fluxbox)
Bridge Linux (Xfce)
6 distros, 1 HD ? wtf !

 
Old 07-17-2014, 09:13 PM   #32
gor0
Member
 
Registered: Jun 2014
Distribution: quad BOOT!
Posts: 549

Rep: Reputation: 65
Quote:
Originally Posted by rc_mandar View Post
2) Audio doesn't work with alsa-utils

3) wicd can't find wifi networks to connect to. (i have already installed firmware-realtek from non-free repos)
Okey. I see your problem. I had it too. Try this. It's safe and worked for me.

Open the terminal and type

Code:
$ alsamixer
Press S and select the HD-Audio Generic option. Scroll to automute and disable it now turn up all the volume options Press Esc to exit

Done!

************************************************************************

use https://wiki.debian.org/NetworkManager !!!

Last edited by gor0; 07-17-2014 at 09:15 PM.
 
Old 07-18-2014, 03:12 AM   #33
Captain Pinkeye
Member
 
Registered: Oct 2012
Location: The Czech Republic
Posts: 280

Rep: Reputation: 98
Quote:
Originally Posted by rc_mandar View Post
hey there tuxbuddies,

i am back with this cool and uncool snaps.

see the second snap. Before this installation i did install Ubuntu thrice and i have no experience about debian. However, I don't know what happened but this is the error i am getting. I just want to mount this empty drive which will be like a Data drive for the debian.


Please give me a reply what may be the cause and what solution i can implement?


thanks. please reply your inputs are important to me.
Well you're not authorized. Who owns the filesystem?

I guess you formatted it with mkfs (or left it on the installer) and now it has root:root privileges. In that case read up on chown ('man chown'. You did want to learn, did you? :P ), then mount it as root (preferably using terminal) and change the privileges to the user.

Quote:
Originally Posted by rc_mandar View Post
1) Deb doesn't boot correctly. At a point the installer says remove installation media (cd/dvd/usb) and i did. so now it should boot from the ATA hdd. however, it didn't and i got no os found. When i did put usb back in the port and boot the machine. It went straight to grub. Same is happening again and again. It won't boot up without my usb.
You could try to reinstall grub (with no usb attached). Try
Code:
grub-install /dev/sdX
update-grub
as root.

The first command installs grub to MBR (actually wherever you tell it to, but you should install it to MBR). The sdX is the physical disk you want grub on (not a partition, so no numbers, like 'sda1').
The second command updates the grub.cfg file.
 
Old 07-18-2014, 08:05 AM   #34
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Quote:
Originally Posted by rc_mandar View Post
1) Deb doesn't boot correctly. At a point the installer says remove installation media (cd/dvd/usb) and i did. so now it should boot from the ATA hdd. however, it didn't and i got no os found. When i did put usb back in the port and boot the machine. It went straight to grub. Same is happening again and again. It won't boot up without my usb.
You put the bootloader on the usb. Note that the bootloader (grub) is NOT the same thing as the /boot partition.
 
Old 07-18-2014, 09:01 AM   #35
rc_mandar
LQ Newbie
 
Registered: Jul 2014
Distribution: Ubuntu 14.04 LTS, Debian Wheezy with fluxbox
Posts: 23

Original Poster
Rep: Reputation: 0
Question

hey friends,

i didn't understand a thing about the bootloader or grub. First i can tell you guys, while doing the installation i selected the partition of 500mb size as the /boot and rest of the stuff. Then at the end it couldn't boot without usb. After reading from several webpages forums i knew one thing that i have to repair the grub and that i did using a grub-repair-disk. I downloaded the iso file and put it in a usb using unetbootin and ran recommended repair option. Afterwards, debian could boot up own it's own. I have no idea how to manipulate grub to do provide options at the grub menu of several distros.

About file system, i think i might have left the two drives to : do not use option.
any idea how i can modify this without doing reinstallation?

Now, wifi, audio, video works. Still in thunar i can't see icons.


Please reply, i l be waiting.

Last edited by rc_mandar; 07-18-2014 at 09:04 AM.
 
Old 07-18-2014, 10:01 AM   #36
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Ok, but again, the bootloader is not the same thing as /boot. You put /boot on its own partition, and that's fine, but where to put the bootloader is a completely separate question. It usually asks after the partitioning is done, before it starts the installation. You don't pick a mount point or a partition, you pick a drive, and apparently you picked the usb drive.

As Captain Pinkeye said in his post, you can fix this with grub-install and update-grub.
 
Old 07-18-2014, 10:39 AM   #37
rc_mandar
LQ Newbie
 
Registered: Jul 2014
Distribution: Ubuntu 14.04 LTS, Debian Wheezy with fluxbox
Posts: 23

Original Poster
Rep: Reputation: 0
Is it still necessary? i used grub-repair. If yes please elaborate a bit.

Quote:
You could try to reinstall grub (with no usb attached). Try
Code:
grub-install /dev/sdX
update-grub
as root.

The first command installs grub to MBR (actually wherever you tell it to, but you should install it to MBR). The sdX is the physical disk you want grub on (not a partition, so no numbers, like 'sda1').
The second command updates the grub.cfg file.
I didn't understand it really. What do u mean by /dev/sdX what is sdX if not denoting a partition. should i write sd0 if i have only one hard disk?

Also how can i solve my mounting problems which i showed in my second snapshot before and no icons.

Last edited by rc_mandar; 07-18-2014 at 10:42 AM.
 
Old 07-18-2014, 10:50 AM   #38
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
I mis-read your post, I thought you said "Afterwards, debian couldn't boot up on it's own", implying that nothing had changed. It does appear that it fixed your problem.

For the record, Linux and Windows treat drives and partitions very differently. In Windows, you don't see anything until you have a drive, with a partition, with a filesystem, and it's mounted, at which point it shows up as C: or D: or whatever stupid name Windows decides to give it.

In Linux, you can see everything. You can see and manipulate bare drives, or bare partitions, or filesystems, or you can mount them, and you can mount them wherever you want in the common directory structure (instead of each drive having its own, separate directory structure). In Linux, drives are called sdX, where X can be a, b, c, d, and so on. So one drive would be sda, another would be sdb, etc. Within each drive, you have partitions. These are called sdX#, so the first partition on sda would be sda1, the second partition on sda would be sda2, and so on.

What he was saying is that when you go to install grub, you do it on the drive itself, not the partition. So if you wanted it on sda, you would choose /dev/sda, rather than, say, /dev/sda3 which might contain your /boot partition.
 
Old 07-18-2014, 01:17 PM   #39
Captain Pinkeye
Member
 
Registered: Oct 2012
Location: The Czech Republic
Posts: 280

Rep: Reputation: 98
Quote:
Originally Posted by rc_mandar View Post
I didn't understand it really. What do u mean by /dev/sdX what is sdX if not denoting a partition. should i write sd0 if i have only one hard disk?
You should write sda.
There and there is a quick overview you could find useful. Basically, sda denotes your first harddrive, sda1 first partition on that harddrive.

Quote:
Originally Posted by rc_mandar View Post
About file system, i think i might have left the two drives to : do not use option.
any idea how i can modify this without doing reinstallation?
What exactly do you want to modify? Do you want to format them (you can use Gparted) or add them as existing partitions to the system (you can do that by editing fstab)?
 
Old 07-18-2014, 02:39 PM   #40
gor0
Member
 
Registered: Jun 2014
Distribution: quad BOOT!
Posts: 549

Rep: Reputation: 65
Best to use a less mechanical distro!

try this:

http://www.linuxmint.com/

http://www.salixos.org/

http://www.opensuse.org/en/

http://aptosid.com/

http://fedoraproject.org/
 
Old 07-18-2014, 09:36 PM   #41
rc_mandar
LQ Newbie
 
Registered: Jul 2014
Distribution: Ubuntu 14.04 LTS, Debian Wheezy with fluxbox
Posts: 23

Original Poster
Rep: Reputation: 0
@Captain Pinkeye

Quote:
What exactly do you want to modify? Do you want to format them (you can use Gparted) or add them as existing partitions to the system (you can do that by editing fstab)?
I just want to access the two other empty drives as data partitions. RIght now i am getting error as No Authority in THunar when i click on them.
 
Old 07-18-2014, 10:44 PM   #42
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,540

Rep: Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496
If you want to access data on an additional drive you need to first create a mount point, then create a filesystem, then mount the filesystem. If you want the partitions to be mounted on boot, you need to put a proper entry in the /etc/fstab file. If you are not familiar with these actions, you need to post back with what you do and do not know.
 
Old 07-19-2014, 12:18 AM   #43
jyotipandey
LQ Newbie
 
Registered: Apr 2013
Posts: 2

Rep: Reputation: Disabled
hello everyone..
i am trying to install NS2 i followed the instructions and installed NS2 correctly. Checked its correctness via typing ns after its complete installation but when i tried to check whether nam is installed correctly but i am unable to see the animator window. i always get segmentation fault.please help me and tell whats the problem and how to resolve it..
thank you.
 
Old 07-19-2014, 08:19 AM   #44
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,540

Rep: Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496Reputation: 2496
jyotipandey:

Please start a new thread as your questions is unrelated to the topic of this thread.
 
Old 07-20-2014, 10:22 AM   #45
rc_mandar
LQ Newbie
 
Registered: Jul 2014
Distribution: Ubuntu 14.04 LTS, Debian Wheezy with fluxbox
Posts: 23

Original Poster
Rep: Reputation: 0
@yancek: dude thanks for your help appreciate it big time!

now back to mounting. I used Ub previously. So while using it a user can just click on the partition which is visible at left part of the file manager and then it gets mounted. This is what i want. When i click on partition i just get not authorized error.

this theory part
Quote:
If you want to access data on an additional drive you need to first create a mount point, then create a filesystem, then mount the filesystem.
that u talked about is perfect. How do i do this?

editing fstab will mount everything directly which is not problematic but i would like to go the UB way as i mentioned before.
 
  


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] Why doesn't my distro 9.0 setup work for the 13.1 distro OldBikerPete Linux - Networking 9 09-15-2010 12:06 AM
Multi-distro partition setup; does this sound like a good setup? Twilight in Zero Linux - General 5 02-22-2009 12:15 AM
How can I setup a multiple node id? Which file would be used to setup ENV par? robinsondean Linux - Newbie 1 07-28-2008 07:55 PM
booting multiple distro's with a mini-distro SVN Linux - General 1 04-08-2004 02:42 PM
Multiple terminal setup canon Linux - General 6 11-19-2003 02:46 PM

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

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