General :: Edit The Config File To Show All IP's And Host?
Jul 19, 2010
Having a problem in my awstats, I'm a little lost to were to edit the config file to show all IP's and host so far its only showing up my IP and the PC's on my network and nothing else.
View 5 Replies
ADVERTISEMENT
Aug 20, 2010
I want to edit the config file of an application I have installed and the documentation says that the config file is per-user and therefore stored in "~/". Which folder is that? The app itself is installed in "/usr/local/bin/".
View 5 Replies
View Related
Mar 3, 2011
edit the sudo config file to allow my account to use some commands as a root.so can someone advise me how should i do it.
View 3 Replies
View Related
Aug 15, 2011
How do I edit this file to include 1680x1050 resolution?
View 9 Replies
View Related
May 18, 2011
I have 2 harddisks 1 tb and 160 gb. In 1 tb fedora is installed. In 160 gb windows is installed. 1 tb is the master. 160 gb is not being detected. How to edit grub.conf file to edit the menu?
The content of grub.conf is
# grub.conf generated by anaconda
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that all kernel and initrd paths are relative to /, e.g.
# root (hd0,1)
# kernel /boot/vmlinuz-version ro root=/dev/sda2
# initrd /boot/initrd-[generic-]version.img
#boot=/dev/sda
default=1
timeout=5
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.35.6-45.fc14.i686)
root (hd0,1)
kernel /boot/vmlinuz-2.6.35.6-45.fc14.i686 ro root=UUID=bfc7d406-5ae3-4335-a2d8-37472dcfa7dc rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet
initrd /boot/initramfs-2.6.35.6-45.fc14.i686.img
title Other
rootnoverify (hd1,0)
chainloader +1
View 2 Replies
View Related
Feb 9, 2010
I recently upgraded from fc8. I am running two nvidia NVS 285 cards with four monitors and using nvidia driver 190.53-pkg1. I have one card up and running and can edit the config file and make to other two work I just can't get all four to work together.
View 3 Replies
View Related
Feb 22, 2010
I have edited /etc/lilo.conf file and changed timeout setting to 30 (in tenth of seconds so 3 seconds) but when I reboot old value - 2 minutes is displayed.Is anything else I need to change?
View 1 Replies
View Related
May 7, 2011
I currently can run an old swf on my Chumby 8 device by storing and using these three files on a USB plugged into the device
config
<?xml version="1.0" encoding="utf-8" ?>
- <config>
[code]...
View 1 Replies
View Related
Mar 3, 2011
I have a linux.img image for ubuntu.I want to edit file inside it, how can open it, edit a file, then remake the bin file?
View 7 Replies
View Related
Nov 15, 2010
command to show the luns mapped to redhat enterprise server 6.1 host. And how do i known the WWNN for the FC HBA attach to the host.
View 6 Replies
View Related
Nov 11, 2010
I am configuring a third party repo (Project fog).Actually i need to know ,How to edit config.sh
The error i am getting is > Checking package: php-gettext...Failed!
The manual say that .
It is a part of the base PHP package. You will need to edit /lib/redhat/config.sh & remove php-gettext from the packages list on line 22 .
View 1 Replies
View Related
Jun 14, 2011
Using xubuntu 11.04, how do I maually give myself a static IP address and other IPv4 settings? I see the edit connections panel and saved a setting there but can't see how to use that setting. The only useable setting when I'm connected by ethernet is Auto eth0.
View 3 Replies
View Related
Jun 3, 2010
My brother is thinking of installing Slackware64 13.1 on his laptop. He was wondering though how to configure his wireless card. How would he do this? He is using an Intel wireless card, but I am unsure of the exact model. Another question is would Wicd do this automatically or do you still have to use either iwconfig or wpa_supplicant and edit the corresponding config files?
View 4 Replies
View Related
Sep 14, 2010
Always had this problem on F13... if I run kword from console as root I get.kwordkword(14580): Session bus not found
KCrash: Application 'kword' crashing...
sock_file=/root/.kde/socket-icebox/kdeinit4__0
Warning: connect() failed: : No such file or directory
[code]...
View 4 Replies
View Related
Apr 28, 2011
I just installed 11.04 32 bit (downloaded today) in Virtualbox (4.0.6), with host 64 bit Win7. I'm trying to get Unity working. I've searched and found references to the fact that the Host graphics card must support 3D, which I believe mine does (nVidia GeForce 7900 GTX). Also found some references to try the following:
After the OS install, I did this:
sudo apt-get update
sudo apt-get install virtualbox-ose-guest-utils
Then rebooted and did this:
killall -9 gnome-settings-daemon && gnome-settings-daemon
I also installed the latest Guest Additions. In the VM settings I have the "3D" tick checked, and have 32M RAM allocated to video. But no Unity shows up, just normal desktop.
Any ideas?
View 7 Replies
View Related
Jun 25, 2011
any1 know how to config apache so i can use ServerName at my web browser ?
here is what i am trying to do: i need to host a number of web sites at my mac, for example: hostone.com, hosttwo.com, hostthree.com and etc since i need to host more than one website at the same pc, i use name based virtual hosts so i have hostone at 192.168.0.1:1234 and a servername of "hostone" hosttwo at 192.168.0.1:1235 with a server name of "hosttwo" and etc
my question is , how do i config my local settings, so all of my local network computers can access "hostone" site by type "hostone" at their browser and "hosttwo" site by type "hosttwo" at their browser
View 3 Replies
View Related
Sep 4, 2010
I need to change one word in over a thousand pages of HTML. I think sed is the only way to do this, but I've never used sed before.
After reading the documentation, I see that it is pretty easy to alter files to standard output, in other words, the screen.
But I don't want to do just alter text to the screen, I want to alter the original file, else I am not doing any Stream EDiting as near as I can tell.
None of the documentation explains how to take a file, apply sed to alter that file. How do you do this?
Code:
[myuser@myhost dir]#sed s/changethis/tothis/ /mydir/myfile
How do I apply sed to actually make the changes to myfile?
View 3 Replies
View Related
Feb 4, 2011
I intend to configure my extensions.conf and sip.conf but asterisk in configured on a remote host in another city, i have to travel there to configure it. Is there any way to access it using internet instead of vnc and teamviewer. how can i use telnet to access it or how can i ssh the remote host.
View 3 Replies
View Related
Feb 11, 2009
There I had legacy driver from nVidia but resolution was degraded to 640x320 and in their version 8.10 I cannot edit xorg.config (there was not anythig about resolution) I hoped in fedora i`ll fix this.
View 6 Replies
View Related
Jun 1, 2010
While in YAST2, everything seems to save fine except for the information in the "Host Name and Domain Server Configuration" screen. I have two servers side by side, the one works perfectly fine, the one does not. I can save the IP address and changes to DHCP and Static, but when I enter in the information for the Domain Name and Host Name, I click next, it saves, but when I go back in to it, the items I set are blank again. The boxes are not greyed out, you can type information in without error. When entering YAST, it requests the root pw which also works fine. I am not using any strange characters other than letters/numbers. I am going in to the screen by clicking network devices-->Netword Card-->Host Name and Name Server.
View 1 Replies
View Related
Apr 27, 2011
I need to have regular user run this command sync; echo 3 > /proc/sys/vm/drop_caches
but it requires root privileges that I cannot give.
So I figured they could run the command as "sudo". I looked in /etc/sudoers and wasn't sure what I needed to edit for the users to run the following command
sync; echo 3 > /proc/sys/vm/drop_caches
View 14 Replies
View Related
Mar 25, 2010
The default setting of linux is run level 5 (Red Hat 9) I want to use my system in Runlevel 1. For that purpose i 1st check the permission which were
-rw-r--r--
I want to edit the File " vim /etc/inittab " in the terminal . which line should i edit so I may use it in a single mode.
2-The second thing i want to ask that before editing any important file which are /etc like "inittab" can i 1st make it's copy and keep it in my home directoty so,in case of any mistake I can get my original file?
View 2 Replies
View Related
May 2, 2011
I installed 3 OS in my computer, first Windows xp, second Ubuntu 10.10 up to here I could go in to each one of them, but I installed Fedora 14 x64 after Ubuntu. Now I can only go to Fedora and XP, but I am not able to even see Ubuntu only in the shell, it is not in my boot options.
View 2 Replies
View Related
Oct 13, 2010
I have been using Tilda for a while to execute a quick command and I love it. However I wanted to customize it a little so it looks nicer. I figured out you needed to enter tilda -C and then start configuring.
I did this and changed a couple settings such as size and colors and whatnot. However when I closed out and tried it nothing happened. Confused, I opened it up again and after poking around I saw that the top said Tilda 2 settings. Poking around more I found the keyboard shortcut was for f2 when I usually use f1 for tilda. So I exit out and hit f2. Another tilda came up(one already running) with all the settings I had configured.
Now this wouldn't be too much of a problem but I noticed that the second tilda will not show up unless I open the config screen first. After I do this then I can open both of them up with f1 and f2. It would be extremely inconvenient to have to do this everytime I bootup.
View 2 Replies
View Related
May 2, 2011
I need to add a user to the sudoers in my vps host and edit a couple of files and I just cannot make sense of visudo, vi or nano. The tutorials I find on the net just take too long to study and they are never complete, can someone explain what I need to do? I am running Debian 506.
View 8 Replies
View Related
Jun 3, 2011
i want to create new config file for remote using irrecordbut what are the steps please tell me about thathow to save config file?
View 4 Replies
View Related
Jun 21, 2010
This is gaurav. I have lost/override the old configuration (config file) while compiling the new kernel resulting in my internet connection failure. I have tried re-booting the pc, the only escape (somewhat weired) i would thought of, still it does not restore the original.
View 4 Replies
View Related
Jul 17, 2011
how do i edit the "contents" of a pdf file. I tried pdfedit but I cant find where the content table list is stored.
View 1 Replies
View Related
May 28, 2010
I have a file which a number at the end of each line. I need to change this number in the file to be correct, i.e. each time the number is 9 it needs to be 1, each time it is 233 it needs to be 2, etc... There is no pattern to the numbers currently in the list other than the same number appears only in a single line/group of lines, not throughout the file, but the replacements need to be sequential (but can be repeated an arbitrary number of times).
[Code]....
View 10 Replies
View Related
Mar 19, 2011
I am trying to have the files from /user/directory copy every hour to /backup/user/directory. It would seem that cron or crontab is what I need to use. Looking at previous posts and other documentation only shows how much I don't know. When I type crontab -e I get a blank file I can type into, seemingly using vi as the editor. I have no problem with that but when I type cron -l, I get my text after a message about "Do Not Edit this File". What I am reading just makes no sense, I am not understanding even the most fundamental aspects of cron or crontab. Where I can get the most basic of basic instructions to try to understand this function?
View 4 Replies
View Related