Displaying 20 results from an estimated 11000 matches similar to: "Problems Erasing packets"
2020 Sep 14
6
erasing a disk
Folks
I've encountered situations where I want to reuse a hard-drive. I do
not want to preserve anything on the drive, and I'm not concerned
about 'securely erasing' old content. I just want to be able to
define it as an Physical Volume (in a logical volume set), or make it
a ZFS disk, or sometimes make it a simple EXT3, ExFAT or NTFS
disk. However, old
2010 Apr 08
2
erasing an area of a graph
I have a case where the easiest way to draw a particular symbol would be
to draw something a little bigger, and then use polygon(... , col=0) to
erase the extra stuff. Just how to do this best when par('bg') =
'transparent' is, however, eluding me. I've looked through the archives
and the book R Graphics without quite seeing the light.
Help or pointers to help would be
2003 May 12
3
grid - deleting and erasing grobs?
Hello!
Don't quite understand how can I delete grobs and simultaneously erase
graphic output they produce. I first change grob's "vp" field to null
(grid.edit(gr,vp=NULL)) to erase it and then call rm(gr) (as grobs are
external pointers I'm not shure what this method actually frees
allocated memory).
May be there is simpler method?
Does garbage collector have any effect
2003 May 12
3
grid - deleting and erasing grobs?
Hello!
Don't quite understand how can I delete grobs and simultaneously erase
graphic output they produce. I first change grob's "vp" field to null
(grid.edit(gr,vp=NULL)) to erase it and then call rm(gr) (as grobs are
external pointers I'm not shure what this method actually frees
allocated memory).
May be there is simpler method?
Does garbage collector have any effect
2012 Mar 12
2
erasing "[1]"
hi,
is there any way to erase the term "[1]"?
for example,
> a<-3+2
> a
*[1]* 5
the term [1] in front of number 5.
is there any way?
--
View this message in context: http://r.789695.n4.nabble.com/erasing-1-tp4467628p4467628.html
Sent from the R help mailing list archive at Nabble.com.
2007 Mar 03
2
Question about stubborn RPM
Hi,
I've made mysqlf a RPM and installed it.
After that i did what i shouldn' do: remove the files it installed.
Now, i wnat to install it agai and i can't.
Already rebuilt the rpm database ( rpm -vv --rebuilddb), used --force,
--replacepkgs, --replacefiles, --justdb, --erase, --initdb, but no good.
Been at rpm.org, but found nothing that i already know.
Any help would be
2012 Sep 27
1
erasing a polygon
I'm updating some (very) old code, and one particular option of its plot method depends on
a once-was-true trick
polygon(x, y, border=TRUE, col=0)
polygon(x, y, border=TRUE, density=0)
would draw the polygon AND erase whatever was underneath it back to background color.
Is there a reliable way to do this with the current R (standard graphics)?
Terry Therneau
PS For the
2010 Jun 18
1
[LLVMdev] Erasing Instruction
Hi,
Can anyone tell me how to erase an instruction, (specially a
load/store instruction) ?
If I use Instr->eraseFromParent(), I get following error. Note the
instruction does not have any use.
opt: /home/chayan/llvm/llvm-2.6/include/llvm/ADT/ilist.h:218:
llvm::ilist_iterator<NodeTy>&
llvm::ilist_iterator<NodeTy>::operator++() [with NodeTy =
llvm::Instruction]: Assertion
2014 Jul 15
2
[LLVMdev] [cfe-dev] Bug in MapVector::erase ?
> On 2014-Jul-15, at 08:29, David Blaikie <dblaikie at gmail.com> wrote:
>
> Sounds pretty clearly buggy, and against the original design of the
> ADT (as pointed out by the documentation quotation). When was erase
> functionality added to MapVector? Can/should it be removed (and the
> use case changed to use some other container)
>
> Making erase linear time
2020 Sep 14
0
erasing a disk
At Mon, 14 Sep 2020 13:14:44 -0700 CentOS mailing list <centos at centos.org> wrote:
>
> Folks
>
> I've encountered situations where I want to reuse a hard-drive. I do
> not want to preserve anything on the drive, and I'm not concerned
> about 'securely erasing' old content. I just want to be able to
> define it as an Physical Volume (in a logical
2020 Sep 14
0
erasing a disk
what if you just dd the first 1GB of the disk and the last GB of the disk
(the last because of RAID signatures of some controllers that write to the
end of the disk)
Look at this article and modify accordingly
https://zedt.eu/tech/linux/using-dd-to-repeatedly-erase-a-specific-range-of-sectors-on-the-hard-disk/
Also, use wipefs -a (Gordon Messmer answered faster than me)
On Mon, Sep 14, 2020 at
2002 Aug 06
1
polygon() draws non-transparent border, erase.screen draws non-transparent border (PR#1881)
# polygon ignores requests to have its border transparent, look at
par(bg="transparent")
plot(c(0, 3), 0:1)
polygon(c(0, 1, 1, 0), c(0, 0, 1, 1), border=NA, col = 0)
polygon(c(1, 2, 2, 1), c(0, 0, 1, 1), border="transparent", col = 0)
polygon(c(2, 3, 3, 2), c(0, 0, 1, 1), border=0, col = 0)
# a quick fix for erase.screen() is the following
erase.screen <-
function (n =
2014 Jul 15
2
[LLVMdev] Bug in MapVector::erase ?
Hi Oliver,
There would be no problem if both the Map and the Vector indeed contained
(Key,Value) pairs.
To save space, Map entries do not contain Value but instead an unsigned
index into the Vector:
/// The values are kept in a std::vector and the
/// mapping is done with DenseMap from Keys to indexes in that vector.
After an element is erased from the Vector all indices greater than the
2014 Jul 15
2
[LLVMdev] [cfe-dev] Bug in MapVector::erase ?
> On 2014-Jul-15, at 09:38, David Blaikie <dblaikie at gmail.com> wrote:
>
> On Tue, Jul 15, 2014 at 9:31 AM, Duncan P. N. Exon Smith
> <dexonsmith at apple.com> wrote:
>>
>>> On 2014-Jul-15, at 08:29, David Blaikie <dblaikie at gmail.com> wrote:
>>>
>>> Sounds pretty clearly buggy, and against the original design of the
2014 Jul 15
2
[LLVMdev] [cfe-dev] Bug in MapVector::erase ?
> On 2014-Jul-15, at 10:05, David Blaikie <dblaikie at gmail.com> wrote:
>
> On Tue, Jul 15, 2014 at 9:43 AM, Duncan P. N. Exon Smith
> <dexonsmith at apple.com> wrote:
>>
>>> On 2014-Jul-15, at 09:38, David Blaikie <dblaikie at gmail.com> wrote:
>>>
>>> On Tue, Jul 15, 2014 at 9:31 AM, Duncan P. N. Exon Smith
>>>
2015 Apr 03
0
unsetting/erasing an iptables mark
Hello all,
iptables provides a way to mark/tag packets for future
identification/accounting, etc. A brief discussion of it is offered here:
https://wiki.archlinux.org/index.php/Advanced_traffic_control
Here is a more detailed description of the issue I am working on:
http://lists.centos.org/pipermail/centos/2015-April/151245.html
Getting to the crux of the issue as it stands now.
I need to
2013 Sep 27
0
erasing an hdd - forensics of hard disk drives, dban, destroying hdd
greetings list,
i am creating a new thread because of comment made by;
From: Nicolas Thierry-Mieg <Nicolas.Thierry-Mieg at imag.fr>
in thread "Subject: [CentOS] erase disk".
in past readings about;
erasing an hdd, forensics of hard disk drives, dban, destroying hdd
i submit these links for those who may wish to further their
knowledge on primaries of hdd forensics;
2008 Sep 12
2
yum erase fails
I am trying to erase an rpm with yum erase. It fails:
service hipfw does not support chkconfig
Removed: hipl-firewall.i386 0:1.0.4.1
Complete!
And it is not removed....
If I try with rpm -e, I get the same error message.
So how do I remove this rpm?
2003 Jun 23
1
erase.screen bug?
Hi,
I'm using R 1.7.1 on a Windows 2K computer. For some reason erase.screen
does not seem to be working correctly. That is it does not erase the
requested screen. That is the old graphic is still visible and any
subsequent graphics are superimposed over it making them impossible to
read. What is worse is that they print out this way also. The same
behaviour happens with a Windows XP
2004 Sep 14
3
erase columns
Can somebody remember me which is the command to erase
columns from a data frame?
Thanks Michele
___________________________________
http://it.seriea.fantasysports.yahoo.com/