Ubuntu :: /home Is Not Declared In /etc/fstab?
Jul 13, 2011
I see /home is not declared in /etc/fstab. I need it to be in /etc/fstab in order to be parsed by some software and notice there is actually a /home partition... Can I do such thing? Because i noticed the system just mounts it automatically during the boot process, doesn't it?
View 1 Replies
ADVERTISEMENT
Jun 15, 2011
when i starting the server..it is coming to maintenence mode and saying repair file system...because /home1 was not found in /etc/fstab.. when i tried to remove the entry from fstab for /home..it is read only!!
View 5 Replies
View Related
Aug 26, 2010
I have Ubuntu Karmic. I chose to install with an encrypted home directory. Recently I got a warning that I only had 2GB of drive space left. This is mostly because of my videos. So I went and bought a new hard drive and partitioned it and made 1 ext4 partition and copied my videos all to the new hard drive. I added a line in my fstab to mount the new hard drive to ~/videos, but when I reboot the computer, there is a screen saying something like "error mounting /home/me/videos, press S to skip or something else to reboot". If I press S to skip, then when my system comes up there is a video directory but it's empty because my other hard drive didn't get mounted. I can run sudo mount /dev/sdb video/ and it will mount fine and I can see all my videos, so why can't fstab mount it? Does this have something to do with my encrypted home directory?
View 14 Replies
View Related
Jan 5, 2010
What would be the best way list disk and partitions in the fstab file?
View 1 Replies
View Related
Jan 15, 2010
I've had two hd's in my box forever. for more space and backup reasons. Well I have started running the Debian Squeeze distro since December. I've had many issues, some are still unresolved. but now I'm running into major headaches with the fstab. Specifically dealing with/wondering why UUID's are used instead of the old /dev/hd? I was a little annoyed when I tried Kubuntu to find /dev/sd? used instead of /dev/hd? but that was workable. But the UUID's are a nightmare. Here's my problem.
My main box is finally giving up the ghost. The mobo is dying. So in order to do some tests I took my hd bundle (my two hard drives with their cables) physically out of the box and temp installed them in a test box. I wanted to do some benchmark and other tests. I got all kinds of errors. I found that the system wasn't recognizing the UUID's listed in fstab. My concern is when the new mobo gets here next week I won't simply be able to plug the hd's in like I always have been and just let Linux reconfigure itself (Debian used to be good about this). I really don't want to have to clean reinstall if it's not needed.
So for this I have two questions. WHY developers decided to drop using /dev/hd? or even /dev/sd? ?
And is it possible to revert fstab's listings back to the old /dev/hd? settings. In debian fstab had lines commented out showing how each partition was listed in it's /dev/hd? status during install.
I'm getting really sick of all these archane changes in ALL aspects of linux that don't seem to have any good explaination or need.
View 4 Replies
View Related
Aug 26, 2010
i have this error when i tried to compil a program :
[Code]...
View 9 Replies
View Related
Oct 1, 2010
I'm trying to compile a package of OpenKiosk call NodeView on Ubuntu 10.04, I finally manage to run the 1rs. step of 3 with no problem at all, that I have to do to install this program:
Quote:
1rt - ./configure --prefix=/usr
2nd - make
3rd - sudo make install
Now when I try to run make I get this error:
Code:
$ make
cd xmlrpc++0.7 && make -f Makefile
make[1]: Entering directory `/home/user/Desktop/nodeview-2.0.3/xmlrpc++0.7'
g++ -c -pipe -g -Wall -W -O2 -I/usr/share/qt3/mkspecs/default -I. -o .obj/XmlRpcSocket.o src/XmlRpcSocket.cpp
code....
View 3 Replies
View Related
Apr 20, 2010
I'm learning how to program kernel drivers, and I'm making a hello world module for that. But I can't find the cause of some errors... My module as three files:
test_regulator.c: Code: /*test_regulator.c
2 */
3 #include <linux/test_regulator.h>
4 #include <linux/module.h>
5 #include <linux/kernel.h>
6 #include <linux/regulator/driver.h>
code....
I don't understand, because I had declared the test_regulator_driver.
View 2 Replies
View Related
May 27, 2010
im getting the following compilation error when trying to compile a file under /proc using 5.5 RHEL
[code]
* procfs1.c - create a "file" in /proc
*
*/
#include <linux/module.h> /* Specifically, a module */
#include <linux/kernel.h> /* We're doing kernel work */
#include <linux/proc_fs.h> /* Necessary because we use the proc fs */
#define procfs_name "helloworld"
code....
View 3 Replies
View Related
May 5, 2010
different python module for playing audio similar problem. This time pyAudiere (sorry for sounding a little bored by this, but I had not much success of late) Ok, I am trying to install Audiere which doesnt work. I download the dependencies (libaudiere), then I extract the tarball download from their website. then I followed a procedure from this website because that was the only one I could find (documentation is a little sparse in that compartment unfortunately) from the terminal I write
[Code].....
View 3 Replies
View Related
Jan 19, 2010
I've apparently changed my fstab file and now my boot drive fails to mount. The original file is still there "fstab.BAK". How do I rename the current fstab to another name and rename the fstab.BAK to fstab? Since this is read only in the /etc directory I have not been able to make this happen from a command prompt.
View 9 Replies
View Related
Feb 26, 2010
Well, either it's bizarre or I'm going crazy. Here is a student's very simple linked-list implementation.
The problem is simply that when the list class is named "link", g++ complains:
Code:
testlink.cc: In function int main():
testlink.cc:5: error: expected `;' before l
code....
View 5 Replies
View Related
Nov 10, 2009
I have install the dependiencies, by running the command sudo yum install qt4-devel jack-audio-connection-kit-devel successfully done (using fedora 11) After trying to build as [ajitj@fedora11 src]$ ./build But getting the error as bellow: (I have put some part of the lines)
../externals/includes/rtaudio-4.0.6/RtAudio.cpp:6164: error: �state� was not declared in this scope
../externals/includes/rtaudio-4.0.6/RtAudio.cpp:6164: error: �SND_PCM_STATE_XRUN� was not declared in this scope
../externals/includes/rtaudio-4.0.6/RtAudio.cpp:6166: error: �snd_pcm_prepare� was not declared in this scope
[code]....
View 1 Replies
View Related
Jun 8, 2010
I create a simple code for add two number:
Code:
#include<iostream.h>
#include<stdio.h>
main()
{
int num1, num2, sum;
code....
I search the answer to my problem in various forums but I can't solve the problem.I think that is due to I need some package or that I don't install the necessary libraries.
View 2 Replies
View Related
Jan 22, 2010
The full error that I get is:
Code:
setproctitle.c: In function 'compat_init_setproctitle':
setproctitle.c:100: warning: implicit declaration of function 'strlen'
setproctitle.c:100: warning: incompatible implicit declaration of built-in function 'strlen'
setproctitle.c:104: warning: incompatible implicit declaration of built-in function 'strlen'
setproctitle.c:108: error: 'argv_start' undeclared (first use in this function)
code....
View 2 Replies
View Related
Sep 17, 2010
I recently was pointed to [URL] in another thread and ran into a problem: What header file do I need to download to write the code in the documentation? Apparently no 'bignum.h' file on the Internet declares the "BN_ULONG" macro or "BN_BITS2" bit chunks.
View 1 Replies
View Related
Sep 22, 2010
I have a dual-boot macbook with an OS X partition and an ubuntu partition. When I first installed ubuntu, I changed my home folder to my OS X home directory to synchronize all my files from both. My home directory is now /media/sda2/Users/username/. In a regular home folder, the icons for Documents, Music, Pictures, Movies, etc. are different (not just with emblems, but actually different icons). But when I changed my home folder, these subfolders' icons stayed the same as regular folder icons and I can't figure out a way to change that default setting. I know how to change the icons for each folder manually, but these changes don't appear everywhere (i.e. nautilus, places, etc). Furthermore, every time I change my icon theme, I would have to manually reassign icons for these folders. Is there a way to globally change the folder icons for these folders?
View 2 Replies
View Related
Sep 26, 2010
I was previously running 10.04 32bit. Recently upgraded my cpu/ram, so figured I'd try 64 bit. On my previous setup, I had / in one partition, /home in another, plus a few other partitions (/backup, etc).
I did the install of 64 bit, but was too scared to point /home in 64bit to the previous /home. After the install, now all those previous partitions/mounts are on /media. I'd like to just point /home at the previous partition. Should I mess with /etc/fstab to do this or will it cause problems? Is the easiest thing to do reinstall, then point the new install to use the pre-existing /home? Wasn't sure if that would cause problems or not. I've backed up most of the previous /home area, so worst case, if it gets blown away, I should be alright.
View 2 Replies
View Related
May 24, 2011
I need to specify a different path to home directories on a particular server than what LDAP contains for the users, besides using a symlink. E.g. "/Users/jdoe" vs "/home/jdoe" I don't want to change the actual LDAP attributes, just want a particular server to point them in the right direction (Ubuntu 10.04).
I'm assuming it's something I could probably set in pam configurations?
View 1 Replies
View Related
Mar 28, 2011
recently i made a backup of my home directory in 10.10 before reinstalling 10.10. again.This time I chose to manually define the partitions (50GB Root, 25GB Swap, 325GB Home)Now i wish to migrate the old home into the newly installed home, which is on a separate partition.I have found the following documentation URL...Still, as a beginner I am not quite sure about the necessary steps to perform.As the new home is located on a separate partition is it possible to simple delete all directories there and copy all directories from old home to new home with rsync?
Do I have to install all the software that corresponds to the old home first followed by migrating home or first migrating home followed by installing the software such as thunderbird, Texlive2010 etc.Guess that migration should take place at a later stage. Otherwise my old profile files from firefox and thunderbird will be overwriten by new ones?
View 1 Replies
View Related
Jul 1, 2011
Been digging around and not finding anything that quite works.
Background: I had an existing 10.10 install and 10.04 on another partition. When I installed the 10.04 I told it to use the existing /home partition which is also being used by the 10.10 install. All good, both users have directories with all their data in the same /home partition.
Issue: So, as the 10.04 was 32bit (experimenting but another story) I decided I would replace with 10.04 64bit. All went well except when I did the manual partitioning I screwed up and instead of setting the existing /home partition to 'use but don't format' - which I think is what I must have done last time - I left it as 'don't use and don't format'. So, obviously, now the new 10.04 install has its /home inside /, which I don't want. I want it on the existing /home partition as it was with the previous 10.04 install.
Question(s): Is there any simple(ish) way of doing this without a reinstall? Not a major problem as I have only just installed and can do it again without losing anything but time, but I would like to figure out a way to do it without if possible.I want to essentially move the /home/user directory (rather than the /home) and make it /media/home/user inside the existing partition. Seems easy enough on the surface but becomes involved as I investigate.Ubuntu 10.04 minimal install with Xfce DE.
View 8 Replies
View Related
Jul 1, 2011
I have installed Ubuntu Lucid Lynx to dual boot with Vista Business on a Toshiba Port�g� R500. Everything seems to be working great out of the box, but I have a problem with available space on the rather modest (but spectacular performance) 64GB SSD.
1) Current Partitions:
Toshiba includes three partitions on the new 64GB system, to which I have added one primary Linux container partition, enclosing two logical partitions.
- /dev/sda1 TOSHIBA SYSTEM VOLUME: 1.6GB, Partition type "Unknown (0x27)
- /dev/sda2 Windows Vista Business: 49GB, NTFS
- /dev/sda3 HDDRECOVERY: 6.5GB, Hidden HPFS/NTFS (0x17)
- /dev/sda4 Linux Container for sda5 & sda6: 7.6GB, Extended
- /dev/sda5 Ubuntu Filesystem: 6.6GB, ext4
- /dev/sda6 Swap Space: 1.0GB, Linux swap
I'm sure I'll remove Vista eventually, but in the meantime, (along with MS Office) it requires a whopping 32GB just to admire itself, after all the updates and security upgrades have been applied. I shrunk the partition to 49GB to leave space for future updates and upgrades.
Right now, Ubuntu only occupies 2.4GB of it's allocated partition, leaving 3.6GB free (I know, that doesn't add up to 6.6GB, but that must be something to do with GiB vs. GB, ... or magic, maybe). Swap is only 1.0GB, with 2.0GB of RAM, but I don't use Hibernate.
2) Installing /Home on SD Card
Well, I tried this first, since I have a nice 8GB, Class 10 SD Card, and a built in SD Card reader. With the SD Card inserted during installation, I was able to select it and designate it as /Home, but when I tried to restart after insallation was complete, I got an error message before the Ubuntu login screen could appear.
I think what is happening is that it doesn't mount normally when booting. It's not listed as a bootable device in BIOS, but there is a Toshiba Bootable SD Card utility included with Windows, which needs a bootable floppy or something to work. There must be something that allows the BIOS to recognize it as a floppy during boot, or whatever, but any Toshiba Utility isn't going to work with a Linux file system. Puppy doesn't like it either for the Puppy sfs saved user file (although it will usually work if I copy them there manually, rather than allow them to save automatically).
3) Extending /Home to the SD Card
I thought I'd just have to copy stuff to the SD Card manually, as extra storage, when /Home got too crowded and cosy. Then I noticed that as soon as I inserted the SD Card it immediately got added to the total space avaialable shown by the Disk Usage Analyser accessory (which just happened to be open at the time). So now I see 10.8GB total, which is plenty to start out with for me. I assume this is because the SD Card had been formatted to mount as /Home when I first tried that solution, and got recognized as soon as it was inserted in the slot.
Questions:
a) Will this work? Will /Home really use the extra space, or is it just "pretending"?
b) Is there anything special I might need to do?
c) What do I do with the three folders already on the SD Card, obviously put there during the failed attempt to install /Home on the card? (The third folder is hidden: ".ecryptfs".)?
d) Is it acceptable to leave swap with just 1.0GB, since I don't need to hibernate?
e) Anything else I need to consider?
View 9 Replies
View Related
Jul 21, 2009
I have a strange problem when I do SSH to a FEDORA9 based Linux Server.
[Code]....
When I login using "adah" username in TELNET I am automatically directed to my home directory at location "/media/disk-1/home/adah". But when I use SSH to login using the same username I get the following message Code: Could not chdir to home directory /home/adahaj: Permission denied
View 7 Replies
View Related
Jan 6, 2010
I have a secondary disk which holds a /home directory structure from a previous install of Linux. I installed a new version on a new primary drive and mounted this secondary drive as the new /home. Problem is, even though the users are the same names and I can access the home directories for the users, I cannot login directly to their home directories, as I get the following error: -
Code:
login as: [me]
[me]@[machine]'s password:
Last login: Wed Jan 6 18:34:33 2010 from [machine]
Could not chdir to home directory /home/[me]: Permission denied
[[me]@[machine] /]$
Now, since the usernames are correct and the users are in the passwd file with the correct home directory paths, could it be user ID's that are different or something else? It's not as though I cannot access the home directories for the users, simply that I cannot log directly into them from a login prompt.
View 14 Replies
View Related
Jun 19, 2010
Is there anything special about a home directory before users' home directories are stored there, or is just as typical as any other "empty" folder?Let me just cut to the chase, but please no ear ringing about the folly of messing around as root, particularly with directories at root level. I know it's considered stupidity, but I deleted my home directory.
Is there an easy way to restore a working home directory? I tried copying /etc/skel under root, but I'm not sure what a home directory should look like once it has been restored. Besides . & .., there were .screenrc & .xsession in my home directory when I copied /etc/skel. Are these files suppose to be in "/home" or "/home/~" or both?
View 10 Replies
View Related
Mar 7, 2011
I am running Folding with the multi-core High performance client and would like to set this to be a service rather than have to run it by hand, so to speak, when the machine is booted.
How do I go about setting a service up for this.
View 2 Replies
View Related
Apr 23, 2010
I have an external hdd that I have added to the fstab so it will mount when I boot. But every time I add the line to fstab and reboot, it hangs during the boot process and says something about ureadahead-other status 4. here is my line in fstab..
/dev/sdc1 /NAS ext3 defaults 0 0
Is there anything wrong with that? I couldn't remember what fs I chose when I formatted it so I did "sudo parted /dev/sdc print" and it said it was ext3.
View 2 Replies
View Related
May 26, 2010
I upgraded to 10.04 and everything went fine. I had a cd drive fail(wtf?) and took it out, now apparently everything is messed up as far as what is what (sda/b/c/d etc). I've got 2 hard drives, the OS drive was sdb2, with sdb3 /home and sdb1 an ntfs parition. sda1 is /media/disk. sdc0 was the cd drive.
On the next boot up, it was unhappy that something was wrong with the /home partition.(wtf is that, there is no /home "partition", it's /dev/sdb3!), so I was like.. ok just need to go into fstab and re-arrange things. I open up fstab and, most everything is commented out... so I guess 10.04 no longer uses fstab? What does it use now?
Here's my fstab:
Code:
I commented the last two so that the system would boot. Now it wants home on sda3 and media/disk on sdb1, which is fine, but when I change those in the commented section, obviously nothing happens. I would go through and make the file legible, if I knew that Ubuntu still even uses it.
View 3 Replies
View Related
Jun 23, 2010
I am trying to edit fstab to auto mount a couple of windows shares. I have this but it doesn't work. What am I doing wrong? code...
View 2 Replies
View Related
Jan 31, 2011
I've been having a lot of problems solving my HDD mounting problems and renaming. It finally worked, but I had to delete everything from fstab. As crazy as it sounds, it worked, when I turn my computer on, they automatically mount. They are all working fine. I will attach screen shots too. As you can see my fstab is blank, I was just wondering, is this a problem? Or is it totally normal?
View 4 Replies
View Related