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


ADVERTISEMENT

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

Software :: Skip 'Installation Method' In Kickstart File

Mar 16, 2011

I have created a customized RHEL 5.4 DVD and placed a Kickstart file in it.It is running fine except I have to manually choose "Local CDROM" in the installation process. (see attached pic)Any idea how to skip this.

View 3 Replies View Related

Ubuntu Installation :: Cannot Install Kubuntu Using Any Method

Jul 1, 2010

I'm trying to get Kubuntu 10.04 (x64) installed and everything I do fails, hard. I don't have exact details at the moment since this is a process I've been slowly working on for the last couple weeks, but here's a quick rundown:

- Can boot into the Live CD environment fine. When attempting to install from there, the installer sees my drives incorrectly. If I remember correctly, it views my 2nd drive fine (of 3 identical drives), but it thinks my other two drives are part of a raid setup (they're not supposed to be). I could probably install on here, but I'm not about to risk my existing XP install to try.

- When I try to use wubi to install in Windows, it appears to setup the installation fine, but upon restarting it tells me that it cannot find the ubuntu.iso file and that my drive is probably dirty (run chkdsk). It still says this even after running chkdsk and restarting gracefully.

- I've run the "Check CD for defects" thing and it says the CD is okay. My memory seems to be fine as well.

- I've 3 identical Seagate 250gb SATA drives installed on a MSI k9a2 platinum board. These are not setup in any kind of RAID setup.

View 1 Replies View Related

Ubuntu :: VLC Will Not Install In Every Different Type Of Installation Method?

Aug 19, 2010

I'm running Lucid Lynx 64bit. I tried installing VLC through the U-Software Center but it failed. So I tried it through command line and that failed. Here is the message I get:

Code: apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlcReading package lists. Done Building dependency tree Reading state information. Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: mozilla-plugin-vlc: Depends: vlc-nox (= 1.0.6-1ubuntu1.1) but it is not going to be installed

[Code]...

View 6 Replies View Related

OpenSUSE Install :: Any Method To Know The Date Of Installation Of System?

Apr 5, 2010

is there any method to know the date of the installation of the system?

View 2 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 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

Ubuntu :: Check The File's Compress Method?

Feb 1, 2011

I have a compressed text file. The method of compress is unknown.I can see the file contents by using Midnight Commander without a problem but I would like to view the file just with cat. So I am trying to uncompress the file with unzip or gunzip but it does not work.How to check the method the file is compressed with? Is any way to find it with Midnight Commander?

View 4 Replies View Related

General :: Does Tar Provide Method To Tar Up Only Files Listed In Particular File?

Feb 4, 2011

I have a file that is a list of other files, lets say FilesIWantToTar.dat. I want to say something along the lines of tar -c input-file=FilesIWantToTar.dat archive.tar or similar. Does the tar utility provide this functionality, or do I need to write a simple script?

View 1 Replies View Related

Ubuntu :: Remove Directories That *don't* Contain A File - Safe Testing Method?

Apr 15, 2011

I'm trying to clean up an iTunes-sorted Music directory. For whatever reason, it contains a large number of folders that have album art, but no music. I'm actually more concerned about a safe way to test my removal batch, but I thought I'd paste everything I did in case it's useful to someone. Based on this thread, I came up with the following script:

Code:
#!/bin/bash
find ./*/* -type f -iregex ".*(mp3|m4a)" | sort | while read line ; do
echo "${line%/*}" >> file1
done
sort -u file1 > fileuniq

[Code]...

But I'm scared to just run this on my music folder. Is there any way to run rm in "test mode", so that I would just see verbose output, but it wouldn't actually delete anything? Failing that, does anyone see anything wrong with my plan?

View 4 Replies View Related

Software :: Finding A Portable Encryption Method For Passwords File?

Oct 4, 2009

i am wanting to put a list of common passwords on a usb stick, but i want the file to be password protected. I also need to be able to access it from more than one computer (all linux, maybe a mac too).

View 5 Replies View Related

Fedora Installation :: Install Software File Hplip.run?

Mar 24, 2009

How to install software file hplip.run ?

View 4 Replies View Related

Installation :: Install Fedora 15 From A Local Iso File With Network?

May 24, 2011

Today I download a fedora beta iso file, then I try to install it following the steps I installed fedora 14. However, the install guide ask me to connect to network, if not , I had to exit installation. I just want to install fedora 15 from my local iso file. What's wrong?

View 3 Replies View Related

Ubuntu :: Alphabet - File Browser Ignores The Brackets - Making Old Method Ineffective

Mar 21, 2010

The way I organize all my files into their folders, they add up quickly. I like having a quick way to keep more frequently accessed folders at the top of the list in explorer. In windows, folder "[zippidy do da]" would appear above folder "aardvark" because of the brackets, but Ubuntu's file browser ignores the brackets, making my old method ineffective. I could put a zero in front of such folders

View 5 Replies View Related

OpenSUSE Install :: Updating 10.2 To 11.1 Method?

Dec 31, 2009

updating 10.2 to 11.1 method?

This is the dual booting IBM lap top with windows XP and has been working well for over 4 years.

I would like to install 11.1 as 10.2 is not supported and I have two other machines using 11.1.

I have all the data on suse 10.2 backed up, so it is just the procedure of installation without loosing XP

View 9 Replies View Related

OpenSUSE Install :: Method To Migrate 11.3 System To 11.4

Jun 17, 2011

I am currently considering migrating an openSUSE X86-64 system from 11.3 to 11.4. There seem to be 2 possibilities, upgrade or reinstall. Opinion seems to be divided on the process of upgrading from the DVD.I have not been able to find any reasonable guide to using either method to migrate an 11.3 system to 11.4 and have the 11.4 system in the same working state as the 11.3 system was. What I have found for the reinstall method is trivial. for the upgrade method I have seen a reference to running rcrpmconfigcheck but I have been unable to find a man page for it on my 11.3 system or via google.

Does such a guide exist? It should be created by the openSUSE project for each release.If it works the upgrade process looks to be the best method. The last 2 migrations were via the install method. 10 to 11 but also 32 to 64 bit and then 11.1 to 11.3 onto a new machine before moving the data across. Both rebuilds took many days.I have seen many posts saying that it is very quick to rebuild the system. As little as 2 hours has been quoted. I have not yet seen an explanation of how they do it. I suspect that they rebuild systems regularly and have it all scripted or their systems are very simple. An explanation of how it is done would be interesting.Given that I do migrations once or twice a year, building and testing a script to do the migration is probably not worth the effort especially as the only test machine is very old and slow

View 5 Replies View Related

Ubuntu :: Find A Different Method To Install Directly Into 9.1?

Apr 5, 2010

first post and is a simple question for some on here. If I install a game using wine , will it/does it have any deteramental effect in it's running speed and stuff ie will it be using the wine enviroment to run the game whilst playing it?. Or should I find a different method to install it directly into ubuntu 9.1?

View 8 Replies View Related

Ubuntu :: Install Chinese Input Method?

Mar 14, 2011

My system is English edition but for work... I have to input Chinese and be able to read chinese documents

View 1 Replies View Related

Ubuntu Installation :: Best 'run From USB' Method?

Jan 24, 2010

I see there are a couple methods out there to install Ubuntu on a USB stick.Which is the best one? I want to be able to run it completely from there and install my own software from APT.I don't care about installing Ubuntu *from* that USB stick. Which is the method I want?

View 9 Replies View Related

Multimedia :: Best Method To Install Firefox And Thunderbird In Debian 5.0.4?

May 19, 2010

Searching on the Web I find more methods to install Firefox and Thunderbird, but I don't know if they are right and anyway what's the best method.

What's the best method to install Firefox and Thunderbird in Debian 5.0.4?

View 4 Replies View Related

OpenSUSE Install :: Privileges Depending On Boot Method?

Jan 30, 2011

1. I need to mount SAN blackarmor share at boot. I can do it manually. But I need it mounted everytime. So I introduced it into fstab. No result. See my fstab below.

Code:

//192.168.1.3/Public/home/pawel/black-publicautoauto,rw,user="myuser",password="mypassword"00

I wonder what type of filesystem shall I use. Manuall mounting works with no fs spec, if smbfs or nfs is pointed it makes error.2. When I boot and loging in run level 5 straight into gnome desktop I've got different privileges, expecially to USB devices and sound system (I can not play on my external sound card). How can I control this behaviour. Let's assume that I want to stratx from level 3 as regular user and want to have all this automatic privilleges for hot plugin USB devices and automatic access to sound system. Is controlled by gnome?

View 9 Replies View Related

Ubuntu :: Preferred Method For Slimming Down Alternate Install CD?

Nov 30, 2010

What is the preferred utility for removing a significant quantity of packages from the alternate installer and adding a few, without going through the more full-featured, start to finish customizers?

View 1 Replies View Related

OpenSUSE Install :: What Download Method Is Best For Downloading Suse 11.3 From Website?

Nov 20, 2010

I searched the faq, I did a search online for this etc. The reason I ask is that suse on the download page of 11.3 states don't download directly since it is very slow and has no check sum. Therefore the iso may be flawed and you have spent 10 hrs trying to download the iso. My "fast" internet through qwest is at 1.5 mbps download so I assume that is why it is so slow to download the iso of 4.7 Gb.Now for the question the download page suggets you use bit torrent since it does the checksum but will download the iso no faster than the direct method. Second is to use check metalink with the addon in Firefox downthemall. I did this and had quite a time getting the iso link for 11.3 to start downloading. I would start downthemall from the Firefox toolbar and I thought wow!!! it downloaded that iso fast, how cool. Well it was not the iso but the website for the download page! At one point I got it to start downloading the iso but came in this morining and it was still going after 17hrs and showed several hours to go. I gave up and deleated it.

This afternoon I just gave in and started the download again using the bit torrent and I am waiting for the download to finish. I did eveything the site indicated but after and hour I noticed under logger it said **** openSuse-11.3-DVD i586 iso: PIECE 2206 FAILED HASH CHECK. It shows this same message from the begining of the download 7hrs ago to the last few minutes on each section. It states it is 75% complete? Is this normal or am I wasting 10 more hours? Sorry if this is not the place for this question but I never had trouble with downloading 11.2 and burning it to the disk. I think I just used the Directlink method and crossed my fingers. It did download ok!

View 9 Replies View Related

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 View Related

General :: Proper Method To Install Slackware / OpenSuSe As Dual Boot?

Jan 5, 2011

I just received my Slackware 13.1 & the 'Official Guide to Slackware Linux' book. I know that there is a big learning curve to use Slackware and that is why I purchased it - according to Distrowatch, "...if you learn Slackware, you learn Linux!" But, while I am 'learning Linux', I would still like to have a linux distro installed that would be more of a 'no-brainer'.

So the question is, which distro should I install first, Slackware or say, OpenSuse? I know that if I were going to dual-boot with XP, that XP should be installed first - does order matter for 2 linux distros too? Also, are there any points to remember to do during the installation processes so that I end up with a working, dual-boot computer?

View 7 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

Ubuntu Installation :: Alternate Update Method That Will Not Corrupt OS?

Apr 1, 2010

This is the second time my ubuntu was killed with updating, it would freeze, or goof up, or something to mess itself up. I need a better way to update, one that will not corrupt my Ubuntu.

View 2 Replies View Related

Ubuntu Installation :: Installing 10.04 To A Laptop - Alternative Method?

May 16, 2010

Currently I've got Windows XP and Ubuntu 8.04 (I believe) on my laptop, with two separate partitions.I want to format the laptop and only have Ubuntu 10.04 installed on there, but since the CD drive is broken, I've just been trying to do it from USB. There must be something wrong with my laptop/booting from USB, because I've tried two different programs used to create Live USB installations (UNetbootin and Universal-USB-Installer). Both of them load the menu, let me select to install or run the Live CD, but neither of them get past the purple-ish Ubuntu loading screen. The screen just goes black (But stays lit), and nothing else happens.

So I'm wondering if there is different, easy-ish method for installing Ubuntu 10.04 to this laptop. It's got a working network adapter,

View 9 Replies View Related







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