Sponsored Content
Full Discussion: Superblock marked dirty
Top Forums UNIX for Advanced & Expert Users Superblock marked dirty Post 302762785 by Castelior on Tuesday 29th of January 2013 04:06:08 AM
Old 01-29-2013
Thanks for your answer.
I didn't find an other way to execute a full fsck... even with the man page.

And for the link, I have already done the instruction without success...

An other clue?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Quick-and-dirty g++ compilation

I am creating a small bash file that will take one argument and compile it: #!/bin/bash OUT=${$1%.cpp} # C++ source files always end in .cpp g++ -Wall $1 -o $OUT chmod 777 $OUT The error message says 'bad substitution', namely where OUT is defined. How to fix this? (1 Reply)
Discussion started by: figaro
1 Replies

2. AIX

Can't mount showing 0506-342 The superblock on /dev/fslv00 is dirty

Dear All Last day in Aix 5.2 server by executing # df –g I found following: Filesystem GB blocks Free %Used Iused %Iused Mounted on . . /dev/fslv00 58.00 136.70 -135% 212103 1% /sprod After shutting down by following command # shutdown –h And when... (1 Reply)
Discussion started by: xa52000
1 Replies

3. Solaris

How to corrupt a superblock?

I need to corrupt a superblock of a mounted device in a soalris m/c and check recovery from an alternate superblock. How can this be done? (2 Replies)
Discussion started by: sujathan
2 Replies

4. UNIX for Dummies Questions & Answers

file marked unretrievable

Hi When i try to ftp download a file from a Solaris 10 server, it returns the error "is marked unretrievable" how can i get around this to download the file? (2 Replies)
Discussion started by: arielgoldberg
2 Replies

5. Red Hat

superblock error

can anybody help me to recovermy superblock , the recent power crash has done some stuff on my linux redhat 9 box . when i startup the machine iam getting the following error: The superblock could not be read or does not describe a correct ext2 filesystem. If the device is valid and it... (2 Replies)
Discussion started by: ppass
2 Replies

6. SuSE

SLES11 - RAID6 all disks marked as Spare

Hello, After a replacement of the motherboard of my server, all disks belonging to a raid6 are now marked as spare. Is there any way to mark those disks as active and restore the raid6? $ cat /proc/mdstat Personalities : md1 : inactive sda1(S) sdk1(S) sdj1(S) sdi1(S) sdh1(S)... (0 Replies)
Discussion started by: xavix
0 Replies

7. Shell Programming and Scripting

GnuPlot-area marked by filledcurve

Hi ! I try to highlight data. therefor i want du emphasize a rectangle area in the background by filledcurves inbetween to limits. #Sektor Inden --> Anfang <--> Ende SIa(x)=212 SIe(x)=252 SHa(x)=64 SHe(x)=122 plot 'PATH/mete.txt' using 1:3 t 'WR' w l lt 3 lw 1 lc rgbcolor "#0000ff", \ ... (1 Reply)
Discussion started by: IMPe
1 Replies

8. Shell Programming and Scripting

Need a quick and dirty solution

I have a list of multiple versions of software. The list is formated as follows: NAME VERSION I simply need to pull out the highest version of each software, for example: Original File a v1.0 a v1.1 a v1.2 b v2.1 b v2.2 b v2.21 b v3.0 Output a v1.2 b v3.0 (13 Replies)
Discussion started by: Finja
13 Replies

9. Web Development

Mysql table is marked as crashed and should be repaired

140312 13:43:54 /usr/libexec/mysqld: Table './***/phpbb_posts' is marked as crashed and should be repaired Its mysqld.log in var/log alot of messages, but before around hour i tried to "repaid table" from within phpmyadmin, but appears it has no effect.. why? How to fix? (1 Reply)
Discussion started by: postcd
1 Replies

10. What is on Your Mind?

Anybody want to talk about Dirty Cow?

Hi All, How worried is everyone about the Dirty Cow Linux exploit? Has anybody experienced attacks yet? From the research I've done it seems that the exploit is "reliable" (that is it works nearly every time on vulverable systems) which is not good news. We all believe that Unix/Linux... (3 Replies)
Discussion started by: hicksd8
3 Replies
libcaca dirty rectangle manipulation(3caca)			      libcaca			       libcaca dirty rectangle manipulation(3caca)

NAME
libcaca dirty rectangle manipulation - Functions __extern int caca_disable_dirty_rect (caca_canvas_t *) Disable dirty rectangles. __extern int caca_enable_dirty_rect (caca_canvas_t *) Enable dirty rectangles. __extern int caca_get_dirty_rect_count (caca_canvas_t *) Get the number of dirty rectangles in the canvas. __extern int caca_get_dirty_rect (caca_canvas_t *, int, int *, int *, int *, int *) Get a canvas's dirty rectangle. __extern int caca_add_dirty_rect (caca_canvas_t *, int, int, int, int) Add an area to the canvas's dirty rectangle list. __extern int caca_remove_dirty_rect (caca_canvas_t *, int, int, int, int) Remove an area from the dirty rectangle list. __extern int caca_clear_dirty_rect_list (caca_canvas_t *) Clear a canvas's dirty rectangle list. Detailed Description These functions manipulate dirty rectangles for optimised blitting. Function Documentation __extern int caca_disable_dirty_rect (caca_canvas_t *cv) Disable dirty rectangle handling for all libcaca graphic calls. This is handy when the calling application needs to do slow operations within a known area. Just call caca_add_dirty_rect() afterwards. This function is recursive. Dirty rectangles are only reenabled when caca_enable_dirty_rect() is called as many times. This function never fails. Parameters: cv A libcaca canvas. Returns: This function always returns 0. __extern int caca_enable_dirty_rect (caca_canvas_t *cv) This function can only be called after caca_disable_dirty_rect() was called. If an error occurs, -1 is returned and errno is set accordingly: o EINVAL Dirty rectangles were not disabled. Parameters: cv A libcaca canvas. Returns: 0 in case of success, -1 if an error occurred. __extern int caca_get_dirty_rect_count (caca_canvas_t *cv) Get the number of dirty rectangles in a canvas. Dirty rectangles are areas that contain cells that have changed since the last reset. The dirty rectangles are used internally by display drivers to optimise rendering by avoiding to redraw the whole screen. Once the display driver has rendered the canvas, it resets the dirty rectangle list. Dirty rectangles are guaranteed not to overlap. This function never fails. Parameters: cv A libcaca canvas. Returns: The number of dirty rectangles in the given canvas. __extern int caca_get_dirty_rect (caca_canvas_t *cv, intr, int *x, int *y, int *width, int *height) Get the canvas's given dirty rectangle coordinates. The index must be within the dirty rectangle count. See caca_get_dirty_rect_count() for how to compute this count. If an error occurs, no coordinates are written in the pointer arguments, -1 is returned and errno is set accordingly: o EINVAL Specified rectangle index is out of bounds. Parameters: cv A libcaca canvas. r The requested rectangle index. x A pointer to an integer where the leftmost edge of the dirty rectangle will be stored. y A pointer to an integer where the topmost edge of the dirty rectangle will be stored. width A pointer to an integer where the width of the dirty rectangle will be stored. height A pointer to an integer where the height of the dirty rectangle will be stored. Returns: 0 in case of success, -1 if an error occurred. __extern int caca_add_dirty_rect (caca_canvas_t *cv, intx, inty, intwidth, intheight) Add an invalidating zone to the canvas's dirty rectangle list. For more information about the dirty rectangles, see caca_get_dirty_rect(). This function may be useful to force refresh of a given zone of the canvas even if the dirty rectangle tracking indicates that it is unchanged. This may happen if the canvas contents were somewhat directly modified. If an error occurs, -1 is returned and errno is set accordingly: o EINVAL Specified rectangle coordinates are out of bounds. Parameters: cv A libcaca canvas. x The leftmost edge of the additional dirty rectangle. y The topmost edge of the additional dirty rectangle. width The width of the additional dirty rectangle. height The height of the additional dirty rectangle. Returns: 0 in case of success, -1 if an error occurred. Referenced by caca_blit(), caca_clear_canvas(), caca_fill_box(), caca_flip(), caca_flop(), caca_free_frame(), caca_invert(), caca_put_attr(), caca_put_char(), caca_rotate_180(), caca_rotate_left(), caca_rotate_right(), caca_set_canvas_boundaries(), caca_set_frame(), caca_stretch_left(), and caca_stretch_right(). __extern int caca_remove_dirty_rect (caca_canvas_t *cv, intx, inty, intwidth, intheight) Mark a cell area in the canvas as not dirty. For more information about the dirty rectangles, see caca_get_dirty_rect(). Values such that xmin > xmax or ymin > ymax indicate that the dirty rectangle is empty. They will be silently ignored. If an error occurs, -1 is returned and errno is set accordingly: o EINVAL Specified rectangle coordinates are out of bounds. Parameters: cv A libcaca canvas. x The leftmost edge of the clean rectangle. y The topmost edge of the clean rectangle. width The width of the clean rectangle. height The height of the clean rectangle. Returns: 0 in case of success, -1 if an error occurred. __extern int caca_clear_dirty_rect_list (caca_canvas_t *cv) Empty the canvas's dirty rectangle list. This function never fails. Parameters: cv A libcaca canvas. Returns: This function always returns 0. Referenced by caca_refresh_display(). Author Generated automatically by Doxygen for libcaca from the source code. Version 0.99.beta18 Fri Apr 6 2012 libcaca dirty rectangle manipulation(3caca)
All times are GMT -4. The time now is 01:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy