Fedora :: WARNING: Deprecated Config File - On Boot

Jan 5, 2010

I see these boot.log warning and understand that the directory where these config files are kept has (or is) changing. Okay, but is the correct procedure to just move them over from the /etc/modprobe.conf dir to the /etc/modprobe.d file? I am wondering if some changes to those config files or those that they are related to must be also made? A portion of the boot.log is below.

[Code]....

View 14 Replies


ADVERTISEMENT

Fedora :: WARNING: Deprecated Config File - While Booting

Mar 1, 2010

i got this warning message while booting

WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.
WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.

View 4 Replies View Related

Fedora :: Boot Warnings: "Deprecated Config File"

Oct 12, 2009

I keep getting this warning when booting Fedora 11: WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.

View 4 Replies View Related

Fedora :: WARNING: "deprecated Modprobe Warnings Followed By Boot Has Failed"

Feb 27, 2010

this started to happen recently after a reboot due to updates. The screen displays many, meaning more than 12 of: WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/ which is then followed by: Boot has failed, sleeping forever.

I deleted /etc/modprobe.conf, so that is not the problem. The normal boot process will display the modprobe warning twice and all is well. If the warning is displayed more than twice, the boot will fail and I have to try again.

View 1 Replies View Related

Programming :: Warning: Deprecated Conversion From String Constant To Char*

Jul 3, 2010

I've just updated my linux system (Debian) and went to compile some code I'm working on. However it causes some problems, presumable because of GCC up dates. I get many of my subject line errors for example

../../common/Version_Control.cpp: In function int VersionControl():
../../common/Version_Control.cpp:55: warning: deprecated conversion from string constant to char*

So I check up the error and it comes from my error handler code which is a function

extern void SetError(char *string,int error_number)

The net tells me all I need to do is convert char *string to const char *string, however when I do so and recompile I get the following error

Error_Control.cpp: In function �void SetError(const char*, int)�:
Error_Control.cpp:41: error: invalid conversion from �const char*� to �char*�
make: *** [Error_Control.o] Error 1

I think I've done exactly what's recommended ?

View 3 Replies View Related

Programming :: G++ Warning - Deprecated Conversion From String Constant To 'char*'

Jan 10, 2011

My problem is that the warning keeps apperaing when I run g++ compilation.

Say, I have a system runtime function with header (imaginary)sysruntime.h: void printfunction(char *line);

Then in my .cpp file, I will include the above header #include <sysruntime.h>

Then, I do the below:
Line12: char *linetoprint = "Print this line";
Line13: printfunction(linetoprint);

But, I will get the warning message "Line12: deprecated conversion from string constant to 'char*'". (Even though it compiles)

My question is how should I declare my char* so that I wont get this warning message, and can still run printfunction(char* line) correctly?

View 7 Replies View Related

Ubuntu :: 9.10 - Warning After Update (Error In Config File)

Mar 18, 2010

I am using ubuntu 9.10 and I updated by ubuntu machine. It updated but at the end it gave me a message that "You have new mail in /var/mail/root". When I checked it via the command "tail /var/mail/root" it showed me this.

tail /var/mail/root
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=root>
Message-Id: <20100318051502.0D1ABB1C01@Infosec-Lab04>
Date: Thu, 18 Mar 2010 10:15:02 +0500 (PKT)
WARNING: "MaxBytes[leased]" not specified
ERROR: Please fix the error(s) in your config file

View 1 Replies View Related

Software :: ISO Master Warning: Failed To Open Config File For Reading

Jan 10, 2011

OpenSuse 11.2 Downloaded ISO Master 1.3.8 from here: [URL] Opened the Slackware 13.1 ISO within it, tried to modify the Tagfile which resulted in the error:

Quote:

Edit failed, check Options/Editor and running ISO Master from the terminal showed the error in the title of the thread!

View 1 Replies View Related

General :: Conky's Config / Error Border_margin Is Deprecated, Please Use Window.border_inner_margin Instead?

Jan 6, 2010

I'm using Conky in my Ubuntu 9.10 Karmic. I have an error message like this:

Quote:

Conky: border_margin is deprecated, please use window.border_inner_margin instead
Conky: one or more $endif's are missing
Conky: desktop window (1a00065) is subwindow of root window (10d)
Conky: window type - override
code....

View 3 Replies View Related

OpenSUSE Install :: Cannot Compile Vdrift-2009-06-15 - Warning: The Options Class Is Deprecated; Use The Variables Class Instead

Mar 12, 2010

I have a problem with compiling vdrift-2009-06-15 using scons. As the source that i obtained only supports scons i cannot use make. the error that i get when i try to compile it in GNOME Terminal is: scons: Reading SConscript files ... scons: warning: The Options class is deprecated; use the Variables class instead.
File "/home/mohit/Download/vdrift-2009-06-15/SConstruct", line 9, in <module>

scons: warning: The BoolOption() function is deprecated; use the BoolVariable() function instead.
File "/home/mohit/Download/vdrift-2009-06-15/SConstruct", line 13, in <module>
Checking for C++ header file asio.hpp... (cached) yes
Checking for C++ header file boost/bind.hpp... (cached) yes
Checking for C++ header file GL/gl.h... (cached) yes
Checking for C++ header file GL/glu.h... (cached) yes
Checking for C++ header file SDL/SDL.h... (cached) yes
[Code]........

View 4 Replies View Related

Software :: Warning: The Build_dir Keyword Has Been Deprecated; Use The Variant_dir Keyword Instead

Dec 5, 2010

im using

Code:

scons prefix=/usr qtdir=/opt/qt4

to configure and i get these compilation errors

Code:

scons prefix=/usr qtdir=/opt/qt4
scons: Reading SConscript files ...
Platform: Linux i686

scons: warning: The build_dir keyword has been deprecated; use the variant_dir keyword instead.

File "/mixxx-1.7.2/SConstruct", line 42, in <module>
WE ARE IN: /mixxx-1.7.2/linux_build
QT path: /opt/qt4
Loading qt4 tool...

[code]...

ive been scratching my head at this one for days, i turned on the ubuntu virtual machine and checked what apt wanted to pull, and im suspecting that i need to find the source versions of several packages in regard to qt4 and libqt4 and various libqt4 extensions.

View 4 Replies View Related

Fedora Installation :: 2 HDs And Dual Boot - How To Edit Grub Config File

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

Fedora :: Config File Still Sets The Default To "1" But If Left The Automatic Boot It Will Boot The Previous Kernel?

Aug 17, 2010

After a kernel update, the system always updates the GRUB menu, and the newer kernel is the default boot option.However, after an update on my F13 X64 system, the GRUB menu was updated, the config file still sets the default to "1" but if i left the automatic boot it will boot the previous kernel... am I crazy or missing something here?Here is my /boot/grub/grub.conf file:

Code:
#boot=/dev/sda
default=1

[code].....

View 4 Replies View Related

CentOS 5 :: Where Is The Boot Loader Config File

Jan 17, 2010

i have a VPS server running centOS 5 and i need to edit the boot loader config file but my VPS does not seem to have the usual suspects of grub.conf or lilo any where on the system.

where the boot loader config file might be or what it might be called ?

If it helps to know, the VPS was setup instantly the moment i bought it.

View 1 Replies View Related

Fedora :: Display The File On The Gnome Desktop Without Messing Up The KDE Config File?

Jan 4, 2010

New install of FC12 and after logging into the KDE desktop then going back to Gnome, the Desktop Config File for KDE shows on the Gnome desktop. I ran gconf-editor and I can see the file but no option to not display in Nautilus. Is there an easy way to not display the file on the Gnome desktop without messing up the KDE config file?

View 2 Replies View Related

Fedora :: Installing Yum Update And VLC - Warning In File

Jun 14, 2010

I have a problem with the 'yum update':
Code:
Warning in file "/usr/share/applications/gnome-nautilus-folder-handler.desktop": usage of MIME type "x-directory/gnome-default-handler" is discouraged ("x-directory" is an old media type that should be replaced with a modern equivalent)
Warning in file "/usr/share/applications/gnome-nautilus-folder-handler.desktop": usage of MIME type "x-directory/normal" is discouraged ("x-directory" is an old media type that should be replaced with a modern equivalent).
And I also got this warning when installing VLC.

View 1 Replies View Related

Fedora :: Failure On Boot - Error Warning

Jun 26, 2010

I had occasion to add a few lines to rc.sysinit. Turns out the lines syntax was wrong. Instead of the booting ignoring those lines and proceeding on, then giving me an error warning or perhaps dumping into the interactive mode it just hung up! After several tries at moving on I discovered ESC dropped me into some sort of unannounced shell I got the installation disk out and with the repair system option using VI I got the lines deleted and all went back to normal. Now my suggestion is that if something does not make sense in terms of syntax while booting then cover it by doing the above and ignoring it with a warning later.

View 14 Replies View Related

Fedora :: VLC Divx AVI File Playback Shut Down With No Warning

Oct 11, 2009

Whenever I try to play a divx avi file in VLC it starts up, then shuts down again with no warning or error. Is this a bug in the current version. Kaffeine seems to play files OK. Using Fedora 11.

View 10 Replies View Related

Fedora :: Udev Warning Message At Boot Time?

Aug 11, 2009

i'm heaving the following message at boot time: "Starting udev: udevd[114]: unknown key 'DEVTYPE' in /etc/udev/rules.d/70-cups-libusb.rules:6", i guess it's something about usb printing support but i am not sure, and i don't know how to fix it, does any of you guys know what this exactly means and how to fix it

View 6 Replies View Related

Ubuntu :: Restore Default Panel - Message Appeared On Boot Up Saying A Config File Was Missing Or Couldn't Load

Sep 1, 2011

I recently lost the default panel from the top task bar, a message appeared on boot up saying a config file was missing or couldn't load - or something to that effect. I didn't realise to what it was referring until the computer (an Acer One) completed its start up and I could see the desktop

How can I restore the panel? (graphic from my other Ubuntu laptop attached showing the default panel appearance)

View 5 Replies View Related

Red Hat :: Install A Config.mk File In Fedora?

Mar 3, 2011

I have a cd containing wifi drivers, but inside is a config.mk file and no configure file. so when I tried to install the tarball using ./configure it could nt find anything. so I tried using su - then I said sudo ./config.mk and it said bash error I don't have premission and it referenced the sudoers file. I not sure what this means, and am I even installing the right file for the driver I need. there is also already a Makefile in the folder as well....

View 2 Replies View Related

General :: Using A Config Directory Instead Of A Config File?

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

Fedora :: Edit Sudo Config File

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

Fedora :: 15 Screen Flickering - Set Up In The Config File?

Jul 7, 2011

I have a problem with the screen flickering on fedora 15 (and lots of other modern distros, eg: ubuntu 10.10 and 11.04 and opensuse 11.4) i think it is something to do with xorg.conf as older linux distros work fine
so i added one using

Code:
Xorg :1 -configure
cp /root/xorg.conf.new /etc/X11/xorg.conf

but i still have a slight flicker. my monitor takes an input at 50-60Hz how do i set that up in the config file or is that not what is causing that? and can somebody recommend me a nice icon set for fedora

I need to add this somewhere Code: ModeLine "1440x900" 106.5 1440 1520 1672 1904 900 903 909 934 +hsync -vsync in the xorg.conf no idea where!

View 3 Replies View Related

Fedora :: Why Config.h File Doesn't Exist

Jul 30, 2010

i was assigned with a project to analyse the performance of ASSP mail filter engine.I am using Fedora 7 with KDE3.5. I need to install a lot of perl modules to run the assp.pl code.I was trying with all sorts of packages like src.rpm, ixxx.rpm, tar.gz, tar.bz2. All these packages doesnt work exactly. When i tried with rpm packages. I am getting this error.

/*
[root@localhost RPMs]# rpm -ivh cyrus-sasl-2.1.23-9.fc12.src.rpm
warning: cyrus-sasl-2.1.23-9.fc12.src.rpm: Header V3 RSA/SHA256 signature: NOKEY, key ID 57bbccba
1:cyrus-sasl warning: user mockbuild does not exist - using root

[code]....

So i checked for config.h file as given the directory but it was missing.I don't know why?

View 4 Replies View Related

Fedora :: Texlive Installation - Warning: Kpathsea: Configuration File Texmf.cnf Not Found

Jul 21, 2010

I installed TeXlive 2010 and when i compile this command pdflatex it shows the following error:

warning: kpathsea: configuration file texmf.cnf not found in these directories: /usr/bin:/usr:/usr/share/texlive:/usr/bin/share/texmf-local/web2c:/usr/share/texmf-local/web2c:/usr/share/texlive/share/texmf-local/web2c:/usr/bin/texmf-local/web2c:/usr/texmf-local/web2c:/usr/share/texlive/texmf-local/web2c:/usr/bin/share/texmf/web2c:/usr/share/texmf/web2c:/usr/share/texlive/share/texmf/web2c:/usr/bin/texmf/web2c:/usr/texmf/web2c:/usr/share/texlive/texmf/web2c.

View 14 Replies View Related

Fedora Installation :: System-config-boot Does Nothing

Jan 7, 2011

After an upgrade (preupgrade) from Fedora 12 to 14, system-config-boot opens from the menu and displays the right information but does not change grub.conf. I have searched the forums and found nothing like this. It worked before the upgrade. I have forced a new install of system-config-boot. I can change grub.conf manually. There are no SElinux messages that I can find. It would be nice to get the gui working.

View 4 Replies View Related

Fedora Servers :: Samba Can't Read The Config File?

Nov 24, 2009

I have a computer running Fedora 11. I wanted to use samba in my office. So I configured the /etc/samba/smb.conf ,but it did not work well : Windows can find samba,but when I tap in username and password,samba request them again , and the same thing continues in a loop. So I copied another computer's smb.conf (which is also a Fedora 11,samba runs well in this one).I copied this file to /etc/samba/ ,then samba can't satart up . I read from /var/log/samba/log.smbd.log : Unable to open configuration file "/etc/samba/smb.conf": Permission denied Even if I use: chmod 777 /etc/samba/smb.conf

why I can't login samba from Windows:

[global]
workgroup = MYGROUP
server string = Samba Server Version %v
; netbios name = MYSERVER
; interfaces = lo eth0 192.168.1.99/24

[Code]....

View 3 Replies View Related

Fedora :: PHP PECL Package - Gmagick Config File Not Found

Dec 29, 2009

I've been trying to install the gmagick extension for days now without success. I always end up with the same error message:

checking GraphicsMagick configuration program... configure: error: not found. Please provide a path to GraphicsMagick-config program.
ERROR: '/tmp/pear/temp/gmagick/configure --with-gmagick' failed

It's no wonder why I get this message as the location simply does not exists, its being unpacked to 'gmagick-1.0.3b2' and not 'gmagick'. I've tried to copy/paste the configuration file (config.m4?) to my manually created 'gmagick' directory within the temp folder but that didn't solve anything.

Command when installing:
Code:
pecl install gmagick-1.0.3b2
I'm running Fedora 12.

View 3 Replies View Related

Red Hat / Fedora :: Setting Up Permanent Resolution In Xorg Config File

Mar 29, 2010

I am trying to set up a permanent resolution in the xorg.conf file. At the moment whenever I reboot the machine the resolution defaults to auto. How I can change that to be constantly at 1600x1200?

Here is my xorg.conf file.
Code: # nvidia-xconfig: version 1.0 (buildmeister@builder62)
Wed May 27 01:58:49 PDT 2009
Section "ServerLayout"
Identifier "Layout"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
InputDevice "stylus" "SendCoreEvents" # Added
InputDevice "eraser" "SendCoreEvents" # Added
InputDevice "cursor" "SendCoreEvents" # Added
InputDevice "pad" "SendCoreEvents"
EndSection .....

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved