search for: fls

Displaying 20 results from an estimated 84 matches for "fls".

Did you mean: cls
2016 Mar 07
2
Re: [PATCH 0/2] added icat and fls0 APIs for deleted files recovery
...few comments in general terms: > > The current splitting of the commits doesn't make much sense to me. > I think it would be better as: > > - commit to add TSK to the appliance > > - commit to add the icat API > > - tests for icat > > - commit to add the fls0 API > > - tests for fls0 > > although it would be fine to combine the tests with the new API, or > even have all the tests as a single separate commit (as now). > > This benefits you because it will allow patches to go upstream > earlier. For example, a commit to add TSK...
2000 Dec 15
0
sshd demons
...at fido johanfo]# w 4:46pm up 106 days, 3:14, 24 users, load average: 0.37, 0.60, 0.87 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT johanfo pts/3 krs-dhcp005.stud 6Dec 0 8days 0.18s ? - johanfo pts/7 212.71.80.253 7Dec 0 8days 0.15s 0.15s -bash fls pts/1 s120a.studby.ntn 5Dec 0 9days 0.19s 0.19s -bash johanfo pts/6 krs-dhcp005.stud 6Dec 0 8days 0.18s ? - fls pts/8 s120a.studby.ntn 8Dec 0 7days 0.16s 0.16s -bash fls pts/9 s120a.studby.ntn 9Dec 0 6days 0.11s 0.11s -bash johanfo pts/10 krs-d...
2011 Nov 15
1
gsub help
...t;study_chr1.one.phased.impute2.chunk1_summary"?????? [5] "study_chr1.one.phased.impute2.chunk1_warnings"?????? The folder has many other files. I am trying to use gsub to give me just this file: study_chr1.one.phased.impute2.chunk1 With Uwe's help I have tried the following: fls <- list.files(pattern="^study") # which gives me the list above. ufls <- unique(gsub("(_.*)_.*", "\\1", fls))? # which outputs [1] "study_chr1.one.phased.impute2.chunk1"??????? [2] "study_chr1.one.phased.impute2.chunk1_info_by" I just wa...
2017 Jul 03
2
[PATCH] disp/gf119-: avoid creating non-existent heads
...ects to represent the hw heads */ if (disp->disp->oclass >= GF110_DISP) - crtcs = nvif_rd32(&device->object, 0x022448); + crtcs = nvif_rd32(&device->object, 0x612004) & 0xf; else - crtcs = 2; + crtcs = 0x3; - for (i = 0; i < crtcs; i++) { + for (i = 0; i < fls(crtcs); i++) { + if (!(crtcs & (1 << i))) + continue; ret = nv50_head_create(dev, i); if (ret) goto out; diff --git a/drm/nouveau/nvkm/engine/disp/gf119.c b/drm/nouveau/nvkm/engine/disp/gf119.c index d8765b57..415987e9 100644 --- a/drm/nouveau/nvkm/engine/disp/gf119.c +++ b/d...
2013 Jan 11
2
weird merge()
Hi, I have some protein array data, each array in a separate text file. So I read them in and try to combine them into a single data frame by using merge(). see code below (If you download the attached data files into a specific folder, the code below should work): fls<-list.files("C:\\folder_of_download",full.names=T) ## get file names prot<-list() ## a list to contain individual files ind<-1 for (i in fls[c(1:11)]) { ??? cat(ind, " ") ??? ??? tmp<-read.delim(i,header=T,row.names=NULL,na.string='null') ??? colnames(tmp)[4...
2016 Mar 07
0
Re: [PATCH 0/2] added icat and fls0 APIs for deleted files recovery
...ts commands which > could have a large output is via first dumping it onto a local file > and then iterating over it. > This command would list the entire content of a disk including the > deleted files therefore we need to expect a large output. Your understanding is correct. But the fls0 API still isn't safe because (I assume) it cannot handle filenames containing '\n'. There's another API which handles arbitrary length RStructList returns, which is: guestfs_lxattrlist / guestfs_internal_lxattrlist (see src/file.c:guestfs_impl_lxattrlist and daemon/xattr.c). >...
2012 Sep 25
2
extract all data frames from a list & remove NAs
hi, steps taken : files<-lapply(list.files(),read.csv,header=T) numberOfFiles<-length(list.files()) good<-lapply(files,complete.cases) cleanDataSets<-list() for (i in 1:numberOfFiles){ cleanDataSets[i]=files[[i]][good[[i]],] } with this loop for some reason i get only the first column from each data frame from the list if want to retrieve the only one data frame from the
2016 Mar 02
2
Re: Libguestfs as filesystem forensic tool
...if you submit patches upstream where they > make sense for the upstream project, such as generally useful APIs > (like the ntfscat-i API). One of the patches I'm talking about would add TSK (The Sleuth Kit) as a dependency within the appliance. This would bring new APIs such as: 'fls' more powerful 'ls' command allowing to get list of deleted files or timelines at a given path. 'icat' similar to ntfscat-i but it supports multiple FS. Yet I'm not sure whether it's desirable as it is for a narrow use case and on my Debian box TSK is a 12Mb binary....
2005 Feb 23
6
Getting tick positions
While writing a function that includes placing grid lines at the same position as the axis ticks, I found that the axis* functions don't return anything. Thus I have had to copy the appropriate function, removing the call to axis() and adding a line to return the tick positions. Is there a more elegant way to determine the tick positions on an axis? Thanks. Jim (normally bitwrit at
2002 Apr 14
1
Problems with ext3
Thank you very much for the help with my problems after I changed ext2 in ext3. So far, everything is now running smootly. However, tune2fs -l /dev/hdb2 delivers among a long output one line Fls features : has_journal needs_recovery What does this mean and how can I perform such a recovery ? Thanks in advance Edgar -- ----------------------------------- Dr.-Ing. Edgar Alwers Mailto:edgaralwers@gmx.de
2017 Jul 03
0
[PATCH] disp/gf119-: avoid creating non-existent heads
...disp->disp->oclass >= GF110_DISP) > - crtcs = nvif_rd32(&device->object, 0x022448); > + crtcs = nvif_rd32(&device->object, 0x612004) & 0xf; > else > - crtcs = 2; > + crtcs = 0x3; > > - for (i = 0; i < crtcs; i++) { > + for (i = 0; i < fls(crtcs); i++) { > + if (!(crtcs & (1 << i))) > + continue; > ret = nv50_head_create(dev, i); > if (ret) > goto out; > diff --git a/drm/nouveau/nvkm/engine/disp/gf119.c b/drm/nouveau/nvkm/engine/disp/gf119.c > index d8765b57..415987e9 100644 > --- a/drm/...
2016 Mar 02
1
Re: Libguestfs as filesystem forensic tool
.../03/16 18:24, Richard W.M. Jones wrote: > On Wed, Mar 02, 2016 at 05:59:32PM +0200, noxdafox wrote: >> One of the patches I'm talking about would add TSK (The Sleuth Kit) >> as a dependency within the appliance. >> >> This would bring new APIs such as: >> 'fls' more powerful 'ls' command allowing to get list of deleted >> files or timelines at a given path. >> 'icat' similar to ntfscat-i but it supports multiple FS. >> >> Yet I'm not sure whether it's desirable as it is for a narrow use >> case...
2016 Mar 07
2
Re: [PATCH 2/3] added icat API to retrieve deleted or inaccessible files
Thanks, I have pushed this patch series. Could you consider changing: > + optional = Some "icat"; I think it would be nice to have a single feature, and to call the feature "sleuthkit" or "forensics" or something like that. We don't need to have one feature per API since installation of a single package (sleuthkit) is sufficient to make all the APIs
2014 Jul 01
1
combining data from multiple read.delim() invocations.
Is there a better way to do the following? I have data in a number of tab delimited files. I am using read.delim() to read them, in a loop. I am invoking my code on Linux Fedora 20, from the BASH command line, using Rscript. The code I'm using looks like: arguments <- commandArgs(trailingOnly=TRUE); # initialize the capped_data data.frame capped_data <- data.frame(lpar="NULL",
2020 Oct 09
0
Wine release 5.19
...literals. wsdapi/tests: Use wide character string literals. Paul Gofman (14): wined3d: Fix 3d texture layer count for bind tracking. wined3d: Use partial bind counts instead of partial bind flags. kernel32/tests: Fix fiber test errors on newer Win10. kernelbase: Move FlsAlloc() implementation to ntdll.RtlFlsAlloc(). kernelbase: Move FlsFree() implementation to ntdll.RtlFlsFree(). kernelbase: Move FlsSetValue() implementation to ntdll.RtlFlsSetValue(). kernelbase: Move FlsGetValue() implementation to ntdll.RtlFlsGetValue(). server: Check repl...
2016 Mar 06
5
[PATCH 0/2] added icat and fls0 APIs for deleted files recovery
...en used. On FAT, Ext2 and NTFS it can recover part or the whole file pretty easily as long as it's sectors have not been overwritten by others. For Ext3 and Ext4 it's a bit more difficult, usually data carving is more effective in these cases. I haven't tested on other filesystems. The fls0 API works similar to find but it returns more information such as the files/directories metadata addresses (inodes) and whether the files are allocated (in use) or not (deleted). Later on I will add more fine grained APIs such as fls0-d for showing only deleted files and fls0-m which reports the c...
2020 Oct 23
0
Wine release 5.20
The Wine development release 5.20 is now available. What's new in this release (see below for details): - More work on the DSS cryptographic provider. - A number of fixes for windowless RichEdit. - Support for FLS callbacks. - Window resizing in the new console host. - Various bug fixes. The source is available from the following locations: https://dl.winehq.org/wine/source/5.x/wine-5.20.tar.xz http://mirrors.ibiblio.org/wine/source/5.x/wine-5.20.tar.xz Binary packages for various distributions wi...
2012 Nov 03
7
some help
Hi People! I have following concern consisting of some steps to do in R: I have an ascii file (table) consisting of many columns and rows. 1. I would like to order all values of the columns one under each other. It will begin with column 1, then column 2 under column 1, column 3 under column 2 etc. until at the end there is only 1 column. How do I do it? 2. Second problem is to make a
2016 Mar 02
0
Re: Libguestfs as filesystem forensic tool
On Wed, Mar 02, 2016 at 05:59:32PM +0200, noxdafox wrote: > One of the patches I'm talking about would add TSK (The Sleuth Kit) > as a dependency within the appliance. > > This would bring new APIs such as: > 'fls' more powerful 'ls' command allowing to get list of deleted > files or timelines at a given path. > 'icat' similar to ntfscat-i but it supports multiple FS. > > Yet I'm not sure whether it's desirable as it is for a narrow use > case and on my Debian box...
2016 Mar 07
0
Re: [PATCH 2/3] added icat API to retrieve deleted or inaccessible files
...e feature per API since installation of a single > package (sleuthkit) is sufficient to make all the APIs available. This was something I was a bit confused about. For what I've got, libguestfs checks the availability of something by inspecting its path. TSK is a collection of tools (icat, fls, mmls, blkls...) therefore I was using `icat` to test its presence within the appliance. How could I do it better? Shall I call it `optional = Some "sleuthkit"` and then in the code check for "icat" instead of using the given parameter? Is this considered a "clean"...