Fedora :: Is There Easy Method To 'su' In GUI?

Apr 26, 2010

I want to edit an .ini file for Qmc2.I find qmc2.ini with the browse folder option.I open it with Gedit and make my changes (rom path)but then I cannot save the file. Obviously I can use terminal, something like "su - Gedit /etc/qmc2/qmc2.ini"but what if I don't want to? Can I just use the GUI with su privilages?

View 2 Replies


ADVERTISEMENT

Red Hat / Fedora :: Easy Method To Download Pkgs From RHN?

Sep 11, 2009

Is there any easy method to download securitypatches/bufixes/enhancements from RHN?

yum-downloadonly package will help but we have to collect the list of pkgs from RHN site and then scripting....and then download....

But is there any simpler way we can do this?

I am using RHEL5.3.

View 3 Replies View Related

Fedora :: GUI Log Reader - Any Easy Way To Use

Mar 25, 2010

Is there an easy to use log reader, without needing to be root. My typing is goofy and doing su and vi to read a log is getting old.
Using 2.6.31.12-174.2.22.fc12.x86_64

View 2 Replies View Related

Fedora Networking :: Easy Way To See What AP Im Connected To?

Feb 20, 2009

Is there a easy way to see what AP im connected to? I know what SSID im on but i need to find out the AP name.IN windows you can, But i cant figure out how in fedora.. It just gives me the normalbasic IP and SSID name in Network manager.Is there also a good program that can visualise what is nearby and what strength.Im working with some problems on my AP's at the mo and need to find out what one im authing to and what im not.

View 4 Replies View Related

Fedora :: Easy Way To Burn Mp3s

Aug 1, 2009

Is there an easy way to burn mp3 on Fedora ? Brasero doesn`t want to and I haven`t found the relevant plugin, and I can`t install Kb3 the Add/Remove even with RPM fusion.

View 6 Replies View Related

Fedora Networking :: Static IP's The Easy Way

Dec 12, 2010

I've seen a lot of questions on the forum about static IP's and how often people have problems configuring them. Here is how it works:

If you have a router in your network, the router is the boss. You can configure anything you want in your computer's network manager, but in the end, the router will win. Say you have 3 computers and configure each one for a static IP. If the router is still set to assign IP's dynamically, it may want to ignore that unless you boot the computers in order of IP#. In other words if you set your IP's to .001. .002, and .003 you have to boot the one with .001 first to be sure it gets that IP.

If you boot .002 first the router wants to assign it the first IP in the list; .001. If the computer will only accept .002 the router may (or may not depending on the router) eventually assign it .002, or you end up with a power struggle between the computer and the router, and have no connection to that computer.

That said sometimes setting IP's on each computer works, at least most of the time, again depending on the router. Some routers will assign the same IP to the same computer when each has individual settings, but even then you still have to deal with settings on each computer; a lot of work. And at some point you will probably still have a glitch or problem, at least temporarily. In my experience setting static IP's on the computers is hit or miss in the long run.

If you set the static IP's in the router and make sure the router recognizes each computer by it's MAC address it's a done deal. You can boot the computers in any order, they will always be assigned the same IP, and you don't have to do anything on any of your your computers or in your network managers to make it happen. Bada bing, bada boom, done. Less work, more stable network, fewer headaches.

View 13 Replies View Related

Fedora Installation :: Easy Way To Move From F14 To F15?

Mar 19, 2011

What are the Easy Ways to go from Fedora 14 to 15?
a) Can I create a CD?
b) Online with Yum?
c) your Suggestions?

View 6 Replies View Related

Fedora X86/64bit :: Quick And Easy Way To Install 32-bit?

Sep 21, 2009

Is there a quick and easy way to install 32-bit software on my 64-bit Fedora 11 machine? I've got some software that is 32-bit but can't use them because I lack those library files etc. needed to run them. The programs I'm trying to get to work are : LightZone 3.7 and Bibblepro both photo software.I'd hate to go back to Ubuntu 9.04 64-bit (it worked and all that was need were ia32libs I believe.)

View 5 Replies View Related

Fedora :: Easy Reliable Backup Software?

Jan 26, 2010

I am looking for a Backup Tool running well on Fedora 12. GUI or command line are both fine but it should be easy to use yet transparent in case of an error. Also not only creating but using it to restore the system should be easy to do. I would like to save on a different partition AND burn it on DVD and it should be as small as possible.

View 10 Replies View Related

Fedora Security :: Easy Integrity File Checking ?

Feb 9, 2010

How to do an easy file integrity checking on fedora 11 ? just to make sure that the necessary core os files are not corrupted using rpm and yum.

View 2 Replies View Related

Red Hat / Fedora :: Easy And Reliable Way To Install *.tar.gz Package After Extraction?

Feb 6, 2010

Fedora 12 64bit

Is there an easy and reliable way to install *.tar.gz package after extraction? Instead of going through ./configure etc.

View 2 Replies View Related

Fedora :: Compile A Vanilla Kernel On The Easy/lazy Way?

Apr 29, 2010

I thought I would give some instructions on how I compile my kernels. My long-time windows user parts trader recently asked me how to compile a kernel on Fedora. He was confused with all the tutorials requiring you to build an RPM, so I showed him how I do it, the standard/easy/lazy way. Before I start, here are a couple things I assume. I assume you are a Fedora user and that you are NOT in text mode, but in GNOME. I also assume you realize that this can take up to SIX HOURS on an old Pentium 3 1.3Ghz. Remember that some proprietary drivers as well as some free ones are not included in the kernel, so make sure you don't delete your existing one.

First get the dependencies you need.
su -c "yum -y install gcc ncurses-devel"

Next get the kernel source. I use 2.6.33.3 as an example. To download it, click here.Extract it by right-clicking on the file and then choosing extract here. This will take about five minutes. Now open a terminal, become root, and cd to the directory linux-2.6.33.3. It is important to cd here and not to the kernel directory inside of there, even though make has an extra variable that specifies there.

Now we need to configure the kernel before we build it with make O=kernel menuconfig. It will take a couple minutes to set up, then you will be presented with a cheap psuedo-gui in your terminal. Just select exit and yes to save your config. You usually don't need to change anything here.

Ready to compile and install? Remember this can take up to six hours, and your machine may become VERY slow. It is not recommended that you attempt to use your machine with this in progress. OK then. As root, in the same directory, type:

make O=kernel && make O=kernel modules_install install. This will compile the kernel and install the kernel and it's modules. Done? Now change the kernel and initrd in your bootloader to match the new kernel. If you ever want to reuse the same source code folder, use make mrproper to clean things up and build it again.

View 6 Replies View Related

Red Hat / Fedora :: Installation Through URL Method

Jun 7, 2011

I have synced fedora 15 in mirror. I have downloaded and burned iso image into DVD and installed it successfully in my laptop. But when trying to install through URL method, After giving Path of the mirror then it shows "Waiting for Network manager to configure em1", then after some time , it shows "There was an error configuring your network interface //retry//" then "The URL provided doesn't contain installation media".. I dont knw wt is the error ??? can any1 installed fedora15 through URL method from any mirror.?

View 7 Replies View Related

Fedora :: Easy Way To Get Multimedia Codecs To Play All Types Of Audio An Video Files?

Dec 6, 2009

What is the best/easiest way to get ALL multimedia codecs both free nd non free so i can play all types of audio an video files? Like xvid quicktime, avi windows video files etc etc

View 2 Replies View Related

Fedora :: Firefox And Input Method ?

Aug 8, 2010

Yesterday i download a new firefox china edition from [url] i just want to change my web browse.but it appears two problems first one,after tar the bag , i use this command ~/firefox/firefox want to start the firefox ,bu it tells me "cannot restore segment prot after reloc: Permission denied" then i use "setenforce 0" shut down the selinux ,after that i can start firefox, problems is i need to "setenforce 0"evertime if i restart my computer ,i can't do this again and again how can i do that? second one is my input method can't input chinese ,I think with the above issues,input method can't find input windows.

View 2 Replies View Related

Fedora Installation :: Which Install File / Method Do I Need

Apr 15, 2009

I'm looking into using fedora as my first Linux OS, read rookie, I have an old HP PC with a brand new hard drive. I downloaded the 'F10-i686-Live.iso' file and tried to boot from it. It brought up a Fedora screen with various boot options and a memory test. I did the test which completed a successful pass. I then tried to boot from it, it showed the horizontal loading bar which turned white, after which the screen went black. From there the screen switched from blank to 'lit up black' , sometimes it showed a cursor which was mouse responsive, sometimes it showed a blinking underline cursor in the top left corner of the screen. Eventually it just stayed blank. Any threads I've checked are irrelevant or refer to a more options or command line option that isn't on the setup screen. Have I the right file/method?

View 1 Replies View Related

Fedora :: Unable To Keep Input Method Running?

Sep 13, 2009

i upgrade system from fedora10 to 11 when i start the system i got following error Unable to keep input method running giving up to bring the process up because main input method process for SCIM rapidly died many time.See .imsettings.log for more details

[Code]...

IM-Settings-Daemon[2595]: CRITICAL **: Giving up to bring the process up because Main Input Method process for SCIM rapidly died many times. See .imsettings.log for more details.

View 2 Replies View Related

Fedora :: IBus + Anthy Default Input Method?

Jul 25, 2009

How to make all program use Anthy input by default? because if i use ctrl space to activate,it just activate in one program only.

View 7 Replies View Related

Fedora :: Set Up A WPA2 Wireless Connection Using The Ifcfg Method?

Dec 8, 2009

NetworkManager is a powerful tool for setting up a wlan connection, especially if you connect the laptop to multiple access points. One drawback is that the user accounts must be given access to the pass
phrase. Another is that there is no wlan connection in run level 3, because nm-applet is an X application.If you connect to the same access point all the time, e.g., your own wireless router, a permanent connection via ifcfg might be more convenient. It is controlled by root. All user accounts have wireless access without knowing the underlying details. Further, there is a wireless connection in run level 3. After a lot of trial and error and Google searches, I was able to put together this guide by splicing together one step used in Slackware (from Alienbob's web page) with other steps outlined in this online article http://home.roadrunner.com/~computer...hwireless.html.

It is assumed that the appropriate kernel module for the wlan card is installed and that
$ iwconfigshows a viable wlan0 interface. We are using DHCP. (If using static IP, edit ifcfg-wlan0.)The following steps work on a Compaq Presario F756NR notebook with a Atheros AR242x 802.11abg WLAN card using the ath5k kernel module (without madwifi). I am using 64-bit F12. All commands are executed as root.1. $ yum install wpa_supplicant dhclientProbably already installed, especially dhclient. If so, skip.2. $ cd /etc/sysconfig && vi wpa_supplicantInsert the following lines:

INTERFACES="-iwlan0"
DRIVERS="-Dwext"
OTHER_ARGS="-f /var/log/wpa_supplicant.log"

[code]....

View 1 Replies View Related

Fedora Installation :: Resize Partition Method Preference F12

Jan 11, 2010

Installed a test system and I messed up. I let the installer use the entire 200gb for F12 install when I only wanted to use 100gb. Since it is test and new install I could just blow it away and start over but decided to use this as a learning opportunity. I chose all the defaults on the install so my partition is ext4. Since the partition I want to resize is in use while the system is up, I need to do this offline.

I have read a bit and it looks like there are couple of methods I could use. I have an install DVD and a Live CD so I could use either. If I could use a GUI that would be nice but I do not know how to access that if there is one. I have already booted to the Live CD and figured out how to access the command line tools (resize2fs and lvm) although I have not figured out how to use them yet.

View 2 Replies View Related

Fedora Installation :: Best Method Of Dual Booting (Different Filesystems)

Nov 23, 2010

After recently looking around the Linux world, I decided that I would also like to try fedora. Primarily because of the BTRFS file system that I would like to try out while still having Ubuntu as my main OS. Normally, I'd just partition as usual as I would with any of my other OSs, however this is the first time I have tried to dual boot two Linux installs on two different file systems. Does anybody have a better method of going about this? Or to just go about it as usual and install on two different partitions? Also, I do not want to wipe the data from the computer as it is now. I have it all backed up, but I don't really want to go through the hassle.

View 4 Replies View Related

Fedora Installation :: Best Install Method - LiveCD Or Netinstall?

Aug 25, 2011

I have finally decided to bite the bullet and upgrade my current Linux system from Fedora Core 2 to Fedora 15. When checking the download page and from reading another thread there is apparently no isos' available for an set of install CDs. An iso is only available for DVD. Since my machine does not have a DVD drive that is obviously not an option. In the past I have only installed from a set CDs and I'm not sure which install method is the best to use. I do have a DSL internet connection and will probably need to increase my partitions sizes. Which install method do you recommend and why?

View 11 Replies View Related

Red Hat / Fedora :: Any Method To Get Info About Number Of Hard Disks

Apr 25, 2009

Any command to get number of hard disks in linux. I have used fdisk -l and df -h. but is there any other sure shot method of knowing this.

View 3 Replies View Related

Fedora Security :: Authentication Method For Home And Office Networks?

Mar 9, 2010

The first is regarding my home network that I've setup. It mainly consists of two laptops, both running fedora. I find myself using rsync, ssh, scp, and the like quite often, but it is very annoying constantly needing to provide a password. This sounds like a job for RSA keys, but is it safe to do so on my laptop I take whenever I travel? If my laptop were to be stolen, my personal and private keys would be available to the thief. Is it instead better to use something like kerberos (which I'm not very familiar with, ie. I've used it at work but never took the time to learn how it works).

This isn't much of an issue with my home network since it is protected behind my router. However, I have the same issue with rsync, and ssh to my work PC. These are the RSA keys I'm worried about if my laptop were to be stolen.

View 3 Replies View Related

Fedora :: Method To Prevent Grub Installer From Overwriting MBR Pointer

Jun 17, 2010

Is there a method to prevent the grub installer from overwriting the MBR pointer when grub or the kernel is updated? I'm running a multiboot system and when Fedora's grub installs, then OpenSolaris' partition isn't included in the bootlist and Ubuntu's menu line has a chainloader line that doesn't resolve correctly, requiring a hand edit.I may try to do a chmod 444 grub-install , but I'm not so sure what the reprocussions may be.

View 9 Replies View Related

Fedora Networking :: Block App Using Iptables / Rope Scriptable Method?

Oct 27, 2010

I Need to know how to block this applications using iptables or ROPE scriptable Method..?..

1.Web navigation
2.Electronic mail
3.FTP transfers
4.Video traffic (multicast video stream and unicast video stream)
5.VoIP service
6.Instant Message (MSN and yahoo messenger�etc)
7.Management service (TR-069 and SNMP)

View 6 Replies View Related

Fedora :: Upgraded From 12 Through 13 To 14 Using The Preupgrade Method - Yum Check Throws Errors

May 11, 2011

I am running fedora 14 32 bit. I have upgraded from fedora 12 through 13 to 14 using the preupgrade method. I just ran a yum check which threw the following errors.

[Code]....

Odd that system-config-display is still a fc12 version and it seems it didn't get upgraded. I have no system issues.

View 3 Replies View Related

Fedora X86/64bit :: Ctrl+space Cannot Trigger Ibus Input Method?

Sep 9, 2009

after i update the input method, the input method could not be trigger

View 3 Replies View Related

Fedora :: Unable To Keep Input Method Running Giving Up To Bring The Process Up?

Sep 13, 2009

i upgrade system from fedora10 to 11 when i start the system i got following error

Unable to keep input method running giving up to bring the process up because main input method process for SCIM rapidly died many time.See .imsettings.log for more details

.imsettings.log file contains this

imsettings information
==========================
Is DBus enabled:yes
Is imsettings enabled:yes
Is GTK+ supported:yes
Is Qt supported:no

[Code]....

View 1 Replies View Related

General :: Easy Way Of Demonizing In 5.4

Mar 30, 2010

I know there is a program called upstart that can make it easy to make small daemons. I can't get this program to configure on CentOS. I get all sort of errors concerning pkg-congfig, libnih, and dbus. I am working on a node.ja application and this is a pain to start and stop all the time, so I want to create a deamon for this which makes it easy to start and stop.

[Code]....

View 3 Replies View Related







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