General :: /etc/rc.d Directory Soft Links / Purpose Of Soft Links In /etc Directory?
Feb 20, 2011
I can see some soft links in /etc directory which are pointing to /etc/rc.d Directory contents.
Code:
lrwxrwxrwx. 1 root root 7 Jan 31 08:19 rc -> rc.d/rc
lrwxrwxrwx. 1 root root 10 Jan 31 08:19 rc0.d -> rc.d/rc0.d
lrwxrwxrwx. 1 root root 10 Jan 31 08:19 rc1.d -> rc.d/rc1.d
code....
Any body please tell me what is the purpose of these soft links in /etc directory ? I am using RHEL 5.4 ...
View 3 Replies
ADVERTISEMENT
May 4, 2010
Can you please tell me how can I tar ball/compress a directory hierarchy with soft links in Linux?
View 2 Replies
View Related
Jul 1, 2011
whats the difference between hard links and soft links?
View 10 Replies
View Related
Sep 17, 2010
I am having problems with symbolic links and the $PATH variable.I have a directory:# /usr/rulerX/squarewhere /usr/rulerX/square is a symbolic link such that:
# ls -la
square --> square.hg.current
My path variable is set as:
[code]....
View 2 Replies
View Related
Jul 7, 2011
wanted to knowIs there a command the root user can type in the command line to list & know all soft and hard links there are in a distro that is installed ?
View 1 Replies
View Related
Jan 22, 2010
I have uShare 1.1a setup to talk to my XBox 360. If I share a directory that has no subdirectories, the video files display on the XBox. However, most of my files are in sub-directories on a different partition - I don't really want to copy them to the share, but uShare doesn't seem to recognise any sub-directories or files contained therein.
I have tried setting up symbolic soft links directly to the video files (although this is a pain, it is better than moving the files)...
Code:
ln -s /home/jonftp/TV-Shows/Buffy/Season-1/Buffy-101.avi /home/share/Buffy-101.avi
...but these don't show up on the XBox either.
How can I get uShare to "drill down" the directory structure to list the files or how can I get uShare to follow symbolic links?
View 2 Replies
View Related
Mar 19, 2011
I'm trying to crawl a directory on a website and basically download everything in it. The structure is simple enough(but there are also multiple folders), but there is one thing that makes wget choke up.Both of the links work, but they are both the same thing. So wget will download the same file twice. How can I make wget ignore the first one? but this doesn't seem to actually do anything. It will still download the duplicate URLs
View 1 Replies
View Related
Aug 1, 2010
I am trying to create hard links within a file system to a directory, but unable to do that. is there any limitation to create hard links to directories within file system ?
View 4 Replies
View Related
Mar 23, 2011
what is the purpose of using hard links instead of being a shortcut to some file ?
View 5 Replies
View Related
Aug 3, 2011
I have folder stucture:
|- dir1/
| |- sub1/
|
|- dir2/
|- sub1link -> /dir1/sub1/
and my current working directory is sub1link, is there a quick way to either: change directory to link source parent (i.e something similar to cd .. but take the user to /dir1/ change directory to link source (i.e switch from /dir2/sub1link/ straight to /dir1/sub1
View 1 Replies
View Related
Oct 3, 2010
Code:
The lines highlighted in red are symbolic links to the boot files. Yet, they are not used and, if deleted, the system still works.
Anyone know why they are there? Is it a leftover from Linux days gone by, or does SOMETHING use them?
View 2 Replies
View Related
Jan 15, 2010
I have a Music folder and I need to create hard links for all files in Music directory.For example:
~/Music/01 - the song.ogg // hard link for this file
~/Music/Folder/02 - a song.ogg //and for this file TOO!
~/Other Music/01 - the song.ogg
~/Other Music/Other foldr/02 - a song.ogg
I want hard link files in folder and in subfolders, but not folders its self.
View 6 Replies
View Related
Mar 6, 2009
I'm using FC10 and I want to create a symlink to my movies directory in my home folder:
This is what I did:
I created in
/var/www/html
ln -s /home/username/movies movies
Then in /etc/httpd/conf/httpd.conf
DocumentRoot "/var/www/html"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/username/movies">
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>
Restart apache and then the test page is working.
The directory /home/username/movies has following permissions:
drwxrwxrwx 2 apache apache 4096 2009-03-05 23:43 movies
When trying to access my webpage at localhost/movies I get the 403 Forbidden Error.
Ok then, entering:
sudo -u apache ls /var/www/html
> movies
This works, sudo -u /var/www/html/movies returns the permission denied error.
As well sudo -u /home/username/movies
Is the user apache chrooted by default? SELinux is in permissive mode. What can I do?
View 4 Replies
View Related
Jul 17, 2011
I am trying to make my Apache server show symbolic links in a directory listing, but have so far been unsuccessful. In my latest attempt, I have placed the following code in .htaccess, in the directory with the symlinks that I want listing:
Code:
<Directory />
Options All
</Directory>
Im httpd-vhosts.conf, I have also placed the following code within the relative <VirtualHost></VirtualHost>:
View 5 Replies
View Related
Dec 6, 2010
At my Uni, we use a web-based login for our internet connections. Its based off of Cisco, and every Wednesday night every computer on campus must re-enter their credentials to use the network.
Normally on my several computers I simply pull up the Terminal, point links to google.com using
Code:
And enter my credentials when Cisco redirects to the login page.
Literally, the process is
Code:
Then ENTER to accept the redirect, down arrow to skip over the logo image, USERNAME, ENTER, PASSWORD, ENTER, ENTER.
Naturally, this is EXTREMELY time consuming, as I have about 5 computers located around campus and must physically walk to the machines and login every single week.
My question is, How would I formulate a program that does the following;
1) checks for connectivity (i.e. is able to reach/resolve to the greater part of the internet) and
2) automatically fills in the credentials on the links login page?
View 2 Replies
View Related
Feb 3, 2009
I have a personal wiki of notes, with now thousands of links in markdown format:
[link text](http://example.com)
but now that fckeditor is available for mediawiki (very beta), it has become much better to just stick with wikitext format. There are only a few conversions to do: tables, links, and bulleted lists. The lists are a fairly simple regex and fckeditor magically reformats the tables, so all I'm left with is the links. But I'm not a regex master. How do I reformat code...
View 12 Replies
View Related
Oct 26, 2010
My Desktop assembled d101GGC motherboard having 3.00 Ht tech processor, locks and after 5-10 minutes, unlocks and shows kernel softlock CPU#0 for 412 seconds. for the last many days. since two days it now lags time in clock applet in panel, but is not hanging for soft lock, I set the date and time to "system clock uses UTC" or "synchronize date and time over network", my PC again started to soft lock.
View 1 Replies
View Related
Apr 18, 2011
how configure a call center soft-dialer. I just configure freePbx on centos 5.3 and i also configure the internal extension. But i cant understand how to configure outbound & inbound settings on freepbx plz help me, and can anybody help me how to compile the lead management and auto dial of the lead features in freepbx, which software do that and what is the compile method
View 1 Replies
View Related
Sep 2, 2010
currently i am wanted to clean up my proj area but the problem with rm i am facing is some copy remain in disk with linked i am meaning soft link
A linked to B
B linked to C
C which is on other directory
A & B are on same folder
know when i run
rm -rf A
it removes only A & B but the C remain on the disk how i can remove C from the disk.. using the the same command..
View 2 Replies
View Related
Feb 9, 2010
I installed Fedora from CD, but soon I have a DVD with more soft on it. how I can make so, that Fedora install soft from DVD, but not from the Internet?
View 1 Replies
View Related
Mar 30, 2010
I've been using ubuntu for quite some time, but just lately I burned a disc with brasero and my car doesn't read it, idk which is a good soft to create mp3 discs?? is there any that auto converts songs to mp3 if they are aac?
View 1 Replies
View Related
Apr 30, 2010
I recently installed 10.4 on my laptop and I love it, so I wanted to install it on my desktop. It's a somewhat older computer, AMD3000+ nForce 2, 1.5 gigs of Ram and a Radeon x1650. Whenever I try to start the Live CD I get the error soft lockup - CPU#0 stuck for 61s and it doesn't continue.
View 9 Replies
View Related
Jun 16, 2010
Do you know any software that is usable by ubuntu to create HDR photographies?
View 8 Replies
View Related
Jul 30, 2011
I cannot boot into Ubuntu at all. I have two kernels installed, 2.6.35-28 and 2.6.35-30. The first thing that happened today was that I wasn't able to boot into the latter. I was shown the (in)famous "BUG: soft lockup - CPU#0 stuck for 61s". At this point I could still boot into the 2.6.35-28 kernel. But after shutting down and starting again an hour later, I got the same message when trying to boot into 2.6.35-28. I have tried leaving out the boot options "splash" and "quiet" on both kernels and also adding in "noapic". No combination helps. Needless to say, booting into recovery mode doesn't work either. Up until today, I have been able to boot into both kernels with no problems.
View 1 Replies
View Related
Jul 2, 2010
I have a SUSE Linux Enterprise Server 10 (i586) server that is dying (I think the disc is about to crash). I want to save all the installed software and all the configurations.
To know what software is there installed, I use "rpm -qa > outlist.txt".
But what files shall I (scp) copy ... to take away as much configuration files as possible ?
Let's start with "/etc/*.conf", of course ... but is this enough ?
The server basically runs a DHCP server and a DNS server
View 1 Replies
View Related
Aug 18, 2015
i'm trying to Debian 8.1.0 on my notebook Acer Travelmate 2200. Currently i have very outdated version of Linux Mint. It works fine but I prefer keeping system updated. Only way to get updated system now is install new one, and here i have a problem. After CD/ISO booting, installation looking for a mountd devices, etc. then i got statement that CPU stuck for x sec. The same statement appears every 20sec. I was trying it on other linux distr's they give the same error. I didn't overclocked my notebook, his temp is ok. I'm working on it few hours each day, it didn't overheat. Someone told me thats bug of 2.6.x kernel but I'm trying install new system with 3.16.x.
View 4 Replies
View Related
Feb 18, 2010
How to install micro soft fonts in F12, mainly arial in openoffice?
View 1 Replies
View Related
Mar 23, 2011
11.4 Boot Freeze That is there is a BUG: soft lockup - CPU#0 stuck message and the boot hangs.The modprobe/migration codes are not identical with the linked thread. I'm stuck with CPU#0 at [modprobe:138] and #1 stuck at [migration1:8]. Generally after 61 or 63s.
This is a zypper dup from latest 11.3.The machine boots with acpi=off, luckily. But I'd like to have it all working.The forum says I can't post attachments; hwinfo output seems a bit copious to quote inline. But I'd be happy to provide any additional info obviously.
View 5 Replies
View Related
Jul 3, 2011
wat is the advantage of introducing softlock feature in rhel? How user/admin will be benifitted if softlockup events are occoured? on the contrary, server dies if softlock happens.We hardly can take some preventive action against softlockups, but most of the times we are not able to do anything about softlockups?
View 1 Replies
View Related
Oct 28, 2010
I am using F13 on my netbook for a week so far. Its worth mention, I am completely new new to Linux. Want to say many thanks to Fedora developers for such a great OS, it makes me really happy.
Now, on the subject, I have a very small monitor 1024x576, this is causing difficulties with GIMP, and more, I found that GIMP is too much 'overfeatured' :-( . Searching on this forum , I found posts about 'Kolour' for KDE desktop. Maybe you can recommend a similar simple image editor for Gnome desktop? Crop/resize and pencil tool where i can pick up color and draw pixels will suffice most of the time.
Also I am using Firefox a lot and thought whether it possible to get a small feature , I will try to describe it: when the window is maximized I want to hide the window's header and menu, which would give me extra 40-50 pixels height to the contents of the window.
Yeah, I know I can hide navigation bar, but how then I will type the page location?
View 4 Replies
View Related