Sponsored Content
Full Discussion: /dev/fdo
Top Forums UNIX for Dummies Questions & Answers /dev/fdo Post 302821829 by lode on Saturday 15th of June 2013 04:01:13 PM
Old 06-15-2013
Linux /dev/fdo

Hey, first post, and I could use some advice on this one.

I'm making a raspberry pi server, and I was needed to reformat an SD card for it. I tried using gparted a few times, and everytime it would freeze at the end of writing on 'scanning all devices'. I've tried it with two seperate sd cards, so I don't think it's a problem with it...

I can reformat other devices (USB) with no problem, and trying it from a boot usb didn't help either.

Looking around online, it's apparently a known bug.

(use https:// at the begging, I can't post links yet)
bugs.launchpad.net/ubuntu/+source/gparted/+bug/155047

It appears that the problem might be fixed by some people by turning off their floppy drive in bios, but my bios does not list the drive.

now my /etc/fstab lists two sd cards when I only have one plugged in.

I'm at a loss guys. If this doesn't work I'm going to have to install a seperate windows partition. Smilie

Anything could help. Thanks in advance! Using linux mint 15. Gatway NE56R41U.
 

9 More Discussions You Might Find Interesting

1. Solaris

What is /dev/tty /dev/null and /dev/console

Hi, Anyone can help My solaris 8 system has the following /dev/null , /dev/tty and /dev/console All permission are lrwxrwxrwx Can this be change to a non-world write ?? any impact ?? (12 Replies)
Discussion started by: civic2005
12 Replies

2. UNIX for Dummies Questions & Answers

Sending alt-n to /dev/pts/1 from process bound to /dev/pts/2

Hello, i am using finch (unix commandline instant messaging client using libgnt) which is running connected to /dev/pts/1 Now I would like to "remote control" the program by sending the key combinations normally typed on the keyboard from a programm in another shell. So I tried:... (0 Replies)
Discussion started by: mentos
0 Replies

3. UNIX for Dummies Questions & Answers

/dev/null 2>&1 Versus /dev/null 2>1

How are these two different? They both prevent output and error from being displayed. I don't see the use of the "&" echo "hello" > /dev/null 2>&1 echo "hello" > /dev/null 2>1 (3 Replies)
Discussion started by: glev2005
3 Replies

4. Solaris

Lun remove, stuck in /dev/dsk and /dev/rdsk

So, we removed a LUN from the SAN and the system is refusing to remove the references to it in the /dev folder. I've done the following: devfsadm -Cv powermt -q luxadm -e offline <drive path> luxadm probe All those commands failed to remove the path. The drive stills shows up as <drive... (13 Replies)
Discussion started by: DustinT
13 Replies

5. AIX

Difference between /dev/hdisk and /dev/rhdisk

Hi, How can i check that i am using RAW devices for storage in my AIX machine... Also after adding a LUN from storage to a aix host, when i check /dev in the host, i can see both rhdisk and hdisk with same number eg: dcback1(root):/dev>ls -lrt | grep disk12 crw------- 1 root ... (4 Replies)
Discussion started by: jibujacob
4 Replies

6. AIX

Problem in /dev/hd1 and /dev/hd9var

Hello AIXians, I can't boot my AIX, it hangs and stops at the code error: 0518 After searching google, I knew the problem is due to problems in File Systems. So the solution is booting from any bootable media, then run these commands in maintenance mode: #fsck -y /dev/hd4 #fsck -y... (3 Replies)
Discussion started by: Mohannad
3 Replies

7. Shell Programming and Scripting

Automating partitioning setup of /dev/sda on /dev/sdc

Objective: To recreate the partitioning setup of /dev/sda on /dev/sdc How would I parse the below information and initialize variables (an array?) that can be used to build sgdisk commands in a script, regardless of the number of partitions? Something along the lines of: sgdisk -n... (12 Replies)
Discussion started by: RogerBaran
12 Replies

8. Red Hat

Changing grub from /dev/sda to /dev/sdb

Hi, Please suggest steps to change grub from /dev/sda to /dev/sdb, (1 Reply)
Discussion started by: manoj.solaris
1 Replies

9. HP-UX

Dev/urandom and dev/random missing in HP-UX

Hi, In our HP-UX B.11.11. I could not find dev/urandom and dev/random Are all pseudo-devices implemented as device drivers, or in need to run /configure some package to install the package to have dev/urandom. Please help (4 Replies)
Discussion started by: rashi
4 Replies
updfstab(8)							   Red Hat Linux						       updfstab(8)

NAME
updfstab - update /etc/fstab to reflect removable devices SYNOPSIS
updfstab [-nt] [--usage] DESCRIPTION
updfstab is designed to keep /etc/fstab consistent with the devices plugged into your system. It looks for devices such as cdroms, zip and jaz drives, ls120 drives, and digital cameras on the SCSI and IDE buses. USB devices look like SCSI devices to user space, so those are supported as well, but are only added if they are currently attached to the system (having a scsi device assigned to them is not suffi- cient). Devices which updfstab adds to /etc/fstab are marked with the kudzu mount option to distinguish them from other devices. updfstab will not remove devices from /etc/fstab unless they are marked with the kudzu mount option. It also ignores devices that are already listed in /etc/fstab, or which have multiple partitions on the media currently inserted. OPTIONS
-c,--config=path Use the configuration specified by path, rather then /etc/updfstab.conf. -n,--normalize Normally, updfstab tries to touch /etc/fstab as little as possible. When this option is given, it will instead move all of the devices with the kudzu mount option to the end of the file, and will list the devices in the same order the internal probe returns. -t,--test When this option is specified, updstab does not update the /etc/fstab file. Instead, it displays the fstab entries it would use to standard out. If no changes need to be made, it outputs the string (nothing to do) rather then a full filesystem table. CONFIGURATION
The devices updfstab looks for are specified by its configuration file, /etc/updfstab.conf by default. It defines a number of devices which updfstab looks for on the system, along with various attributes of that device. If a single device name is given multiple times, later val- ues override those given earlier. However, match directives accumulate; all specified matches remain in effect for that device. The default value of flags may be changed by specifying a new value for that flag outside of any device section, which changes the default for all future devices. A simple configuration file looks like this: # sample updfstab configuration file symlink false device cdrom { symlink true match cdrom } device zip { match hd zip match floppy "zip" } Here two devices are specified, cdrom and zip. If a cdrom device is found on the system, a /dev/cdrom is created pointing to the /dev entry for the device, and /mnt/cdrom is added to /etc/fstab. The next entry looks for hard drive devices with zip in their description as well as floppy devices with zip in their description. If either is found /mnt/zip is added to /etc/fstab, but no symlink is created. Here is the complete list of directives which may be used: device name Set attributes for device name name. The name is used in the /etc/fstab entry and for any symbolic links which are created. include path Parsing of the current configuration file is stopped, and the file specified by path is read for current configuration information. Multiple include directives may be given, but they may not appear inside of device sections. match class string This directive adds a new rule for this device type; devices found on the system which match this rule are considered a device of the type whose section the match directive appears in. The class must be cdrom, floppy, or hd. If string appears, it must be a sub- string of the physical device's description for the rule to match. nofstab val If val is true, updfstab does not add a mount entry to /etc/fstab. This is mainly useful in conjunction with symlink. partition num Specifies a default partition number which should be mounted from this device. If 0 is used, no partition number appears. updfstab always scans /proc/partitions for the proper partition number before relying on this value. skip val The device entry is skipped. This lets a configuration file undefine a device that was defined earlier (such as in an included file). val should be true or false. symlink val If val is true, updfstab creates a symbolic link in the /dev directory pointing to the actual device. This symbolic link is then used in /etc/fstab. FILES
/etc/fstab /etc/updfstab.conf /proc/partitions SEE ALSO
kudzu(1) AUTHORS
Erik Troan <ewt@redhat.com> Red Hat, Inc. 29 Jan 2003 updfstab(8)
All times are GMT -4. The time now is 11:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy