Ubuntu Installation :: Installing 10.10 From Usb Stick Taking Forever

Oct 31, 2010

I am attempting to install 10.10 from a usb stick after a disc installation failed, but it is taking forever. I am stuck on the screen which says 'Ubuntu 10.10' and has four little orange dots flashing as if it is loading. It has been like this for over 20 minutes now. Is this unusual or is it normal? Anyway, I am restarting my PC and trying again.

View 1 Replies


ADVERTISEMENT

Ubuntu :: 10.4 Slowed Down To Crawl - Actions Taking Forever

Oct 5, 2010

I am a newbie to Linux, and so just installed Ubuntu.. for the first week all was fantastic, but now, everything has slowed down. It seems to run fine for a few minutes and then everything slows down. I try and drag a window or open a menu, type, anything, and it takes forever! Also the internet seems to stop working on a regular basis. I have checked processes to see if there was anything happening and one of the processors was sitting at 100%, but no actual processes in the list seemed to be using any processing power at all!

View 8 Replies View Related

Ubuntu Multimedia :: RecordMyDesktop Is Taking Forever - When Stop The Video ?

Oct 31, 2010

I like to make tutorials on several different things, and since I'm a ubuntu user now, I found Record my Desktop. The thing is, When I stop the video, the encoder takes FOREVER! I left it there for over 5 minutes and it's still at 0%.

View 1 Replies View Related

Slackware :: K3B Taking Forever - Burn An Iso Image To A DVDRW

May 4, 2010

I've been tring to burn an iso image to a DVDRW using K3B and the progress has been setting a 99% for almost an hour. the iso image is only 2GIGS. why is it taking so long?

View 8 Replies View Related

Ubuntu Servers :: Installing Server From USB Stick To Another USB Stick?

Sep 1, 2011

I'm about to ditch Freenas as my NAS software and make it an Ubuntu server box. The mainboard is an Asus AT3ION-T dual core Atom board. Freenas runs happily from USB stick. I have no optical device to install Ubuntu from and would like to install Ubuntu Server to a USB stick.

View 8 Replies View Related

Debian Installation :: Installing From USB Stick

May 21, 2015

I tried to build a bootable USB stick using Code: Select alldd if=~/Desktop/linux/debian-8.0.0-i386-xfce-CD-1.img of=/dev/disk1 bs=1m as mentioned here: URL... but this does not work on my MacBook 3.1, late 2007 model (yes, I am using rEFIt and my CD drive is dead). The error message upon trying to boot from the USB stick using rEFIt says something like 'unable to load bootia32.efi'.

The workaround: I took the "bootX64.efi" from here:URL... on the USB drive and renamed it as "boot.efi".I copied the "debian-8.0.0-i386-xfce-CD-1.iso" to "/efi/boot" on the USB drive and renamed it as "boot.iso".So now my USB stick has 2 files only: "/efi/boot/boot.efi" and "/efi/boot/boot.iso" and nothing else.Now I was able to boot from the USB stick get into a GRUB prompt.

Code: Select allloopback loop (hd0,1)/efi/boot/boot.iso
grubconfig (loop)/boot/grub/grub.cfg

The installer starts fine and I choose my locale, keyboard etc. until it starts to scan for the CD drive and I face...The error message says that a CD was not found (as expected).I fired up the shell offered by the installer and mounted the USB stick to "/mnt/usb" like this:

Code: Select allmount /dev/hdb1 /mnt/usb

It works and I can see my ISO file in "/mnt/usb/efi/boot/boot.iso".I tried to mount the ISO image to "/dev/cdrom":
Code: Select allmount -o loop -t iso9660 /mnt/usb/efi/boot/boot.iso /dev/cdrom

waited for a while and killed (control + c) the process and found that my "/dev" folder has been flooded with files named like the string "loop" followed by some digits (loop1245, loop8766 etc.).Can the Debian installer be somehow tricked into believing that the ISO file on the USB stick is the mounted CD?

View 1 Replies View Related

Ubuntu Installation :: Can't Boot After Installing 10.04 From Minimal Cd On USB Stick

Aug 11, 2010

I used unetbootin (on another machine) to put the ubuntu 10.04 minimal amd64 .iso onto a usb stick. I used it to install a minimal system on a new 64-bit laptop (dual booting with Windows 7). Now, when I turn on the machine I get my choice of OS. When I pick Ubuntu, I get a blinking cursor, the harddrive is accessed. Then the cursor disappears, the harddrive is quiet, and nothing else happens.

View 9 Replies View Related

Fedora Installation :: Installing On A SDHC Card - Installer Appears To Want To Install To Both SD Card And Also USB Stick

Jul 21, 2010

I have an EeePC 4g netbook which only has a 4Gb hard drive and I thought I would like to install Fedora 13 on an 8 Gb SDHC card and use it to boot the netbook.

As neither the netbook nor I have an optical drive, I made a bootable USB memory stick using Unetbootin which boots the netbook and could be used like a live CD to install Fedora.

On booting with the live USB stick, with the blank SD card in place, and clicking on the install icon, the installation starts but then there are 2 problems; the first is that the installer appears to want to install to both the SD card and also the USB stick. There is a tick in the box beside the USB stick which I can't remove.

I decided to ignore that and put a tick in the box beside the SD card but when it got to the point where it creates partitions it said "Could not find enough free space for automatic partitioning. Please use another partitioning method"

Surely 8 GB is more than enough space for partitioning, so where am I going wrong and why does it want to install on the USB stick as well?

View 2 Replies View Related

Ubuntu Installation :: Grub2 Removing Old Kernel Versions Forever

Apr 14, 2010

Here's how to always have only the latest kernel version in your grub:
Code:
sudo gedit /etc/grub.d/10_linux

Find these lines:
Code:
list=`for i in /boot/vmlinu[xz]-* /vmlinu[xz]-* ; do
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
done`

And change it with this:
Code:
for ver in /boot/vmlinu[xz]-* ; do
list="$ver"
done

Notice two differences.
1. There's no ` before "for" and after "done" keywords.
2. There's no list= before "for"

If you want to change the name of entry, scroll down to the end of the file and find last two occurrences of:
Code:
linux_entry
${OS} stands for Ubuntu and ${version} stands for your kernel version. I changed this into:
Code:
linux_entry "${OS} 9.10 Karmic Koala"

You can use your own imagination. If you want to have specific name for your Windows entry, in /boot/grub/grub.cfg copy everything between:
Code:
### BEGIN /etc/grub.d/30_os-prober ###
and
Code:
### END /etc/grub.d/30_os-prober ###
paste it in
/etc/grub.d/40_custom

Change the text between double quotes right after menu entry. (For example, my 40_custom looks like this now:
Code:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the menu entries you want to add after this comment. Be careful not to change the 'exec tail' line above.
menuentry "Windows 7" {
insmod ntfs
set root=(hd0,1)
search --no-floppy --fs-uuid --set bcdc24dddc249424
chainloader +1
}
)
and make 30_os-prober not executable:
Code:
sudo chmod -x 30_os-prober

If you want to remove recovery mode entry, just uncomment this line in /etc/default/grub:
Code:
#GRUB_DISABLE_LINUX_RECOVERY="true"
PS Don't forget to run
Code:
sudo update-grub
After you finish editing everything! And check in /boot/grub/grub.cfg if everything is ok!

View 9 Replies View Related

Ubuntu Installation :: 10.10 Desktop Initial Update Runs Forever?

Apr 21, 2011

Yesterday I downloaded 10.10 desktop version and burned an image to a CD. After installed to a Dell Dimension E510 machine successfully (I wiped out windows completely), the first update found 315 items to update. After downloaded, ubuntu asked to reboot the machine. Since then, the machine is stucking on the ubuntu startup screen. I suppose it is applying the updates; however, it has been over 12 hours. Is it normal to take that long?

View 2 Replies View Related

Fedora Installation :: Shrinking Of Windows XP Takes Forever In F14?

Apr 9, 2011

I hope somebody can find a solution for the following problem: I tried to install fedora 14 from the life cd on a Dell 6400 with windows XP already installed on it. During the installation process I wanted to shrink the ntfs partition of windows. The actual used size of the windows partition was well below the one I shrinked it to. But the shrinking takes forever ( + 7 hours ) and is still running, which does not seems normal to me. Any recommendations on how to proceed ( solve ) the problem? Processors are running at 99%, so it seems to perform some work. Can this process be cancelled, without harming the windows?

View 4 Replies View Related

Fedora Installation :: 12 LiveUSB Fails To Boot (sleeping Forever..)?

Nov 20, 2009

I've created an LiveUSB disk with the USBcreator method in Windows 7.Now the the image is copied succesfully and the USB key is bootable.However when the boot window popsup and I select the verify & boot option, a graphical loading window comes up and right after that the system halts with the error message "Sleeping forever".What am I doing wrong? Or what is Fedora doing wrong with their LiveCD to USB media?I've did a forum search and the exact same issue is described in this thread[URL]

View 5 Replies View Related

Ubuntu :: Installing Windows 7 From USB Stick - Bootable?

Dec 24, 2010

Since playing games on Ubuntu is a pain, I've decided to sacrifice a few GB's to install Windows 7 on another partition. Is there any tool for Ubuntu to make USB sticks bootable? I've tried UNetbootin, but that's just for Linux distributions. I use Ubuntu 10.04 64Bit and want to install Windows Home Premium 64Bit, in case it's important...

View 9 Replies View Related

OpenSUSE :: Installing 11.3 From USB Stick

Sep 17, 2010

I'm installing 11.3 from USB stick. I went through the partition screen, etc and it did not mention anything about any data or other stuff on the harddisk. but when I got to the "Live Installation Settings" page, it shows the booting sections as:

+ openSUSE 11.3 (default)
+ openSUSE 11.2 - 2.6.31.12-0.2 (/dev/sdb2)
+ Linux Other
+ Failsafe -- openSUSE 11.3

how do I blow those others away? I want them erased aand don't want them in grub or "installed around", rather, I want it "installed over" them. Also, the "Linux Other" is the USB stick. Is it a problem to have that?

View 7 Replies View Related

Fedora Installation :: Error Message - Boot Failure - Sleeping Forever ?

Aug 11, 2011

I have a fresh computer with specs as such:

Hard Drive: Western Digital Caviar Black 500Gb 6Gbs Sata
Asus Sata DVD/CD Burner
Core i3 3.3GHz Sandy Bridge chipset
MSI P67A-GD55 Motherboard
Zotac GTS 450

I have a problem where the live cd gives this error message:

Boot failure, sleeping forever.

View 12 Replies View Related

Fedora Installation :: No Root Device Found, Boot Has Failed, Sleeping Forever?

Feb 8, 2011

I downloaded fedora 14 64 image then created a bootable flash drive and put the image on the flash drive. I rebooted and tried booting from the flash drive and that's the message I received. What do I do?

View 6 Replies View Related

Ubuntu Installation :: Flash Player - Video Streaming Seased - Wouldn't Load It Stays Searching Forever

Jan 20, 2011

I have been using this thread for a couple of days and just getting exposed to the vast world of ubuntu after succesfully partitoning the hard drive through a live cd. (a copy of linux for dummies book)So naturally after getting adjusted to the new os I started seeking for downloadable media and applications.Started with flashplayer last night and installed after watching some videos.But when I tried the same thing with vlc through the terminal command; sudo apt-get vlc

The video streaming seased because they wouldn't load it stays searching forever! Now ..... doesn't work.I am afraid that by tampering with the command it also affected the flash player file.This is an ethernet connection , 100 mb/s, netgear router.

View 9 Replies View Related

Debian :: Installing Wireless Usb Stick Drivers?

Apr 10, 2009

I am following the instructions to install my AWU254 on debian4.0 and get the following...

cjtrim@debian:~/src/rtl8185_linux_26.1027.0823.2007$ ./makedrv
./ieee80211/
./ieee80211/ieee80211_module.c
./ieee80211/ieee80211_rx.c

[code]....

View 2 Replies View Related

Slackware :: Installing 13.1 On ASUS Eee PC With USB Stick From Win7

Nov 17, 2010

I have recently bought a Asus Eee PC Seashell 1005PX and it came with Windows 7 Starter Edition, it doesn't have any CD/DVD so I'm gonna/have been trying for some time now to install Slackware 13.1 from my 8GB USB stick. I downloaded the 13.1 ISO file and used Unetbootin to transfer it to my USB stick. I get stuck in the setup in the setup when I am to select the SOURCE DESTINATION. I've tried /dev/sdb1 which is my USB, also i've tried using mount into different directories but i'm new to Linux so that didn't go very well..

Some of you have recommended Alien BOB's guide but I have read the first parts of it. Is it really for people with Windows OS? It's a bunch of Linux CLI code and programs.. ?

View 13 Replies View Related

Ubuntu Multimedia :: Skype Command And Installing V4l2ucp Doesn't Stick

Sep 25, 2010

i have been able to get my webcam working in Skype by doing the LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype command and installing v4l2ucp but it doesn't stick. So next time i boot it is like i didn't do anything. I have read a few things on it on this forum and i am not sure what to do next. Is there a conflict with my nvidia video card? I only installed Ubuntu 10 a week ago i think.

View 1 Replies View Related

Debian :: Installing From A Mini SD Card (usb Stick Disk)?

Aug 23, 2011

I recently purchased a camera with a 2GB Mini SD flash card. It has a usb card reader and works well. Is it possible to use that as a usb stick (disk) for installation? I want to burn the netinstall iso and also use the rest (partition the card) as storage for the camera if it can be done.

View 14 Replies View Related

OpenSUSE Install :: Tools For Installing Windows XP Onto USB-stick

May 11, 2011

As the thread-title reads I'm looking for an app that helps me to create a bootable usb-stick with Windows XP on it for my girlfriend who wants to dualboot Windows for school work.Is there any app that fulfills my need? Or am I forced to use the command-line with fdisk or something? (an in case, what should I do?)

View 2 Replies View Related

General :: Make USB Bootable Stick For Installing Fedora Or Centos Using VNC?

Sep 3, 2011

I have a PC with no option for a keyboard. I have to install the operating systems without a keyboard or mouse.

I have to make a bootable USB stick which can allow me to connect to the PC from my Laptop with a VNC connection, then the complete installation using IP to IP. I did this with the following:

Download [URL] Extract the files of .iso to my laptop Add the manual file in CentOS-6.0-i386-minimal/isolinux/ks.cfg

install
lang en_US.UTF-8
keyboard us
timezone --utc Europe/Brussels
rootpw --iscrypted $6$i5qEWD.
selinux --disabled

[Code]....

This allows you to modify your original iso files with the new contents and pack it as one .iso file

Finally load unetbootin and burn to your USB or disk or CD

View 1 Replies View Related

Ubuntu :: Taking Screenshots During Installation Itself?

Jul 23, 2011

I know in Fedora one can take screenshots during actual installation of the OS with Shift+Printscreen keys on the keyboard and then can access them as root in the folder /root/anaconda-screenshots. So how do I do the same while installing Ubuntu?

View 2 Replies View Related

Ubuntu Installation :: Install On Hp Pavillion - Hangs On Initial Install Screen Forever

Aug 11, 2011

Trying to install Ubuntu (tried several releases) on HP Pavillion Pentium 4 Proccessor 515 2.93 Gig 1M L2 cache 533mhz 90nm . Have 1 gig ram and 1Tb hd. Hangs on initial install screen for ever. Tried versions from 8.10 (origional disk) to 11.01. Machine works perfectly on Windows XP but who wants that? The model is pavillion 1000 system number pl397aa.

View 7 Replies View Related

Ubuntu Installation :: Boot Process Taking About 5 Minutes

Mar 18, 2010

I have just installed Ubuntu for the first time using a USB drive and everything went fine during installation. However now during the boot phase I see 10 or so lines of
[14.24024] ata5: COMRESET failed (error=-16)
The numbers prior to COMRESET change with each line but the rest remains the same. I am extremely new to Ubuntu or Linux for that matter as this boot process is also taking about 3-4 or even 5minutes as it slowly cycles through each error. Once 10 or so lines have popped up the computer finishes starting and I can log in fine and everything.

View 1 Replies View Related

Ubuntu Installation :: GDM Taking Long Time To Come Up After Updates?

Mar 26, 2010

I have just made a clean install of Ubuntu 9.10 and after installing all updates, GDM is taking a long time (about one minute) to come up after a clean boot, resulting in a regular console prompt.

If I issue "sudo service gdm start" it does come up promptly.

What can I do? Where can I see startup logs to try and identify any problems?

View 5 Replies View Related

Ubuntu Installation :: 10.04 Partitioning Bug - Install Without Physically Taking Out 2nd Hdd?

Jul 27, 2010

[Code]...

i want to install ubuntu on hdd 1 - 26G partition now when i start the installer in partitions it shows me serial ata RAID pdc_cbac (stripe) ... 498G. i cant chose from dropdown any of the 2 hdd. when i enter manual partitioning it shows me the partition as i listed them, in a raid volume dev mapper pdc_cbac...

now i disabled 1 hdd in bios (2 one); i checked that is disabled trough a dos boot loader... it is... now when i enter install partition, the disabled hdd its still there and the raid volume same, unchanged.

why is this happening? why cant i see my 2 hdd in partitioner drop down menu? how can i install without physically taking out 2-nd hdd? see the picture; the freespace at the mouse pinter is in fact a ntfs partition on hdd2, hdd that is disabled in bios [URL]

View 7 Replies View Related

Fedora Installation :: Upgrade To F15 Taking Too Long To Run

May 28, 2011

I switched to Fedora from Ubuntu about a month ago, and I've been very happy so far. But today I started the upgrade to Fedora 15, and something isn't right. I used the preupgrade method, and the package download took a respectable 30-40 minutes, then I was prompted to reboot my machine. I did so, about 4 hours ago. It took about 2 hours to get to the point where it says it's installing the packages, and 2 hours to get to where it is as I write this, at 116 completed packages out of 1634.

I'm pretty sure this isn't normal for ANY distribution. The machine itself is about 6 months old, so I'm pretty sure it's not a hardware issue. I'm considering interrupting the upgrade and doing a clean install, but I was wondering, is there anything I can do before resorting to the clean install option?

View 7 Replies View Related

Debian Installation :: Apt Taking A Long Time To Configure

Jul 15, 2010

while installation of debian 5 from small cd ... does configuring apt take a lot of time!!! installing debian for the first time.

View 1 Replies View Related







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