Search Results

Search found 15 results on 1 pages for 'c00lryguy'.

Page 1/1 | 1 

  • Recovering with DDRescue Cannot Complete (write error: Read-only file system)

    - by c00lryguy
    I'm trying to recover a corrupt VDI using vdfuse to mount the VDI and using dd_rescue to rescue the borked partition. dd_rescue seems to be working fine but once it reached about half of the partition, it just STOPs and gives the following error: ddrescue: write error: Read-only file system Wait.. what? It suddenly turns the FS it is writing the recovered partition to into a read-only file system. Well... why? Will I never be able to finish this? What's going on?

    Read the article

  • Windows 7 CRC Error When Installing Fallout 3 [closed]

    - by c00lryguy
    Earlier today, I installed Fallout 3 on Windows XP perfectly fine. Then about 2 hours ago I installed Windows 7 and I would like to install Fallout 3. But, when I try to install Fallout 3 on Win 7, I get an error while in the middle of the install: CRC Error: The File C:\Program Files\Bethesda Softworks\Fallout 3\Data\Video\B03.bik doesn't match the file in the setup's.cab file I forget the filename but it is the same each time I install. The disk literally went from the DVD-Rom to the case after the first install and straight from the case to the DVD-Rom. It's in perfect condition. My DVD-Rom is only about 2 months old and I've never had any problems with it. I don't understand what's going on. My user that I'm installing the game with is set as Administrator, as well.

    Read the article

  • Cannot Boot - Ubuntu 9.10

    - by c00lryguy
    I installed Ubuntu 9.10 from my laptop onto a HDD in an external harddrive enclosure. I could not connect online so I plugged it into another computer and updated the system. Now when I plugged it back into my laptop, I cannot boot. It says "ALERT! /dev/sdd1 does not exist. Dropping to shell!" and has a shell that says (initramfs)

    Read the article

  • Win 7 Wireless Connected With Good Signal But No Internet Access

    - by c00lryguy
    In Windows 7 I was connected wirelessly for about a week when one day I came home and the wireless was connected with a strong signal but it said that I had "No Internet Access" It's been 3 days since then now and I have yet to find a way to fix it. My wireless drivers are right off the disk that came with the wireless card. Can anyone help me? My problem is similar to these: http://forums.cnet.com/5208-7589_102-0.html?threadID=120346 http://social.answers.microsoft.com/Forums/en-US/w7network/thread/90841fe7-c910-424b-82d7-48be7ef69f39

    Read the article

  • Sun Virtualbox: Cannot Install Windows 95 or 98

    - by c00lryguy
    I'm running XP and I've tried to install Windows 95 and 98 with the official CDs in Virtualbox. Both of them give the error: FATAL: no bootable medium found! System Halted I've mounted the CD drives within Virtualbox and also tried to change the boot order so that the CD drive is first but to no avail. I don't understand exactly what's going on here.

    Read the article

  • Grub problem with dual boot Ubuntu & XP (Ubuntu installed first)

    - by c00lryguy
    I had Ubuntu installed and I installed XP. I tried to be able to dual boot them by running an Ubuntu live cd and running ~ $ sudo grub grub> root (hd0,0) grub> setup (hd0) But now when I restart I get a black screen that says 'Boot device Selected Boot Device and press any key No matter what key I press it shows this error This is what my system looks like: /dev/sda1 - Ubuntu - ext3 - 73 GiB /dev/sda2 - Ubuntu - extended - 3.16 GiB /dev/sda5 - Ubuntu - linux-swap - 3.16 GiB /dev/sdb1 - Windows XP - ntfs - 76 GiB /dev/sdc1 - Stuff - ext3 - Code/Documents /dev/sdd2 - Stuff - ext3 - Movies/Music

    Read the article

  • Windows 7 Startup Problems with Ethernet Driver

    - by c00lryguy
    Everytime I restart Windows 7, my Ethernet Driver can't connect: And I have to go into Device Manager - Network Adapters and disable then enable the Realtek PCIe GBE Family Controller to connect to the internet. And now, lately everytime I start up, I've been getting this error: Why do these happen when I start up Windows?

    Read the article

  • Rails 2.3.2 trying to render ERB instead of HAML

    - by c00lryguy
    Rails is suddenly trying to render ERB instead of Haml and I can't figure out why. I've created new rails projects, reinstalled Haml, and reinstalled Rails. Here's exactly the steps I take when making my application (Rails 2.3.2): rails> rails test rails> cd test rails\test> haml --rails . rails\test> ruby script\generate model user email:string password:string rails\test> ruby script\generate controller users index rails\test> rake db:migrate Here's what the UsersController looks like: class UsersController < ApplicationController def index @users = User.all end end My routes: ActionController::Routing::Routes.draw do |map| map.resources :users end I now create views\users\index.html.haml: %table %th(style="text-align: left;") %h1 Users - for user in @users %tr %td= user.email %td= user.password Annnd run the server... I navigate to localhost:3000\users and I get this error message: Template is missing Missing template users/index.erb in view path app/views For some reason Rails is trying to find and render .erb files instead of .haml files. vendor\plugins\haml\init.rb exists, untouched. I've reinstalled Haml (Pretty Penny) multiple times and still get the same results. I've also tried adding config.gem 'haml' to my environment.rb but this also doesn't work. I can't figure out why suddenly rails will not render haml for me.

    Read the article

  • Setting an instance variable from a block

    - by c00lryguy
    How would I achieve something like below so that when I set the s variable within the block, it also sets the @subject instance variable in my Topic class? class Topic def subject(&blk) blk.call(@subject) if block_given? @subject unless block_given? end end my_topic = Topic.new p my_topic.subject #=> nil my_topic.subject do |s| s = ['one', 'two', 'three'] s.pop p s #=> ['one', 'two'] end p my_topic.subject #=> nil... want it to be ['one, 'two']

    Read the article

  • Longest item in array

    - by c00lryguy
    Is there an easier way than below to find the longest item in an array? arr = [ [0,1,2], [0,1,2,3], [0,1,2,3,4], [0,1,2,3] ] longest_row = [] @rows.each { |row| longest_row = row if row.length > longest_row.length } p longest_row # => [0,1,2,3,4]

    Read the article

  • Multiple instance_of?

    - by c00lryguy
    How would I make Object#instance_of? accept multiple arguments so that something like the below example would work? class Foo; end class Bar; end class Baz; end my_foo = Foo.new my_bar = Bar.new my_baz = Baz.new my_foo.instance_of?(Foo, Bar) # => true my_bar.instance_of?(Foo, Bar) # => true my_baz.instance_of?(Foo, Bar) # => false

    Read the article

1