search for: 2024

Displaying 20 results from an estimated 1725 matches for "2024".

Did you mean: 2004
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
...extMethod(), oldClass(x)) } <environment: namespace:base> we see that it defers to the next method here, which is the built-in one. The built-in one, only accepts 'digits', which does nothing for digits >= 0. For digits < 0, it rounds to power of ten, e.g. > date [1] "2024-02-08" > round(date, digits = 0) [1] "2024-02-08" > round(date, digits = 1) [1] "2024-02-08" > round(date, digits = 2) [1] "2024-02-08" > round(date, digits = -1) [1] "2024-02-07" > round(date, digits = -2) [1] "2024-03-18" >...
2024 Jan 26
1
permission denied with windows acls
On 1/26/24 09:34, Peter Carlson via samba wrote: > > On 1/26/24 02:35, Rowland Penny via samba wrote: >> On Thu, 25 Jan 2024 18:45:52 -0800 Peter Carlson via samba >> <samba at lists.samba.org> wrote: >>> The share mounts and I am a member of the correct groups >>> CARLSON\peter at u2gui:~$ cat /etc/fstab //fs.carlson.lab/test >>> /mnt/test cifs >>> credentials=/root/sm...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
?s 14:36 de 08/02/2024, Olivier Benz via R-devel escreveu: >> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >> >>>>>>> Ji?? Moravec >>>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: >> >>> This is my first tim...
2024 Mar 01
1
Bad SMB2 (sign_algo_id=1) signature for message
Hi! I'm seeing quite some messages in log.smbd like this: [2024/03/01 15:59:00.612141, 0, pid=1778617] libcli/smb/smb2_signing.c:639(smb2_signing_check_pdu) Bad SMB2 (sign_algo_id=1) signature for message [2024/03/01 15:59:00.612146, 0, pid=1778616] lib/util/util.c:578(dump_data) [0000] 7E 8D E3 FE A9 44 E8 E3 A6 76 22 6A B2 A4 27 CF ~....D.. .v&quo...
2024 Mar 29
2
Output of tapply function as data frame: Problem Fixed
Dear Rui, Thanks again for resolving this. I have already started using the version that works for me. But to clarify the second part, please let me paste the what I did and the error message: > set.seed(2024) > data <- data.frame( + Date = sample(seq(Sys.Date() - 5, Sys.Date(), by = "1 days"), 100L, + TRUE), + count = sample(10L, 100L, TRUE) + ) > > # coerce tapply's result to class "data.frame" > res <- with(data, tapply(count, Date, mean)) |> as.data...
2003 Aug 22
0
rootkit
I ran chkrootkit and this is what I got. should I worry or is this normal? I'm running 4.8 thanks. Checking `wted'... 3 deletion(s) between Sat Jun 26 18:10:21 2027 and Sun Mar 24 04:27:12 2024 4 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12 2024 5 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12 2024 1 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12 2024 1 deletion(s) between Sun Mar 24 04:27:12 2024 and Sun Mar 24 04:27:12...
2024 Mar 29
1
Output of tapply function as data frame: Problem Fixed
?s 01:43 de 29/03/2024, Ogbos Okike escreveu: > Dear Rui, > Thanks again for resolving this. I have already started using the version > that works for me. > > But to clarify the second part, please let me paste the what I did and the > error message: > >> set.seed(2024) >> data <- da...
2024 Feb 08
1
round.Date and trunc.Date not working / implemented
This is a workaround, and could be the basis for a round.Date improvement: date <- Sys.Date() as.Date(round(as.POSIXct(date), "years")) as.Date(round(as.POSIXct(Sys.Date() + 180), "years")) Duncan Murdoch On 08/02/2024 12:23 p.m., Henrik Bengtsson wrote: > Technically, there is a round() for 'Date' objects, but it doesn't > seem very useful, because it basically just fall back to the default > round() method, which only takes the 'digits' argument. > > Here's an example: &g...
2024 Jan 26
1
permission denied with windows acls
On 1/26/24 02:35, Rowland Penny via samba wrote: > On Thu, 25 Jan 2024 18:45:52 -0800 Peter Carlson via samba > <samba at lists.samba.org> wrote: >> The share mounts and I am a member of the correct groups >> CARLSON\peter at u2gui:~$ cat /etc/fstab //fs.carlson.lab/test /mnt/test >> cifs credentials=/root/smbcreds,multiuser,sec=ntlmssp,_...
2017 Jul 08
4
force port redirection for list of users
Hi , I have the following requirement . other than following users, any other user sshd connection should be redirected to 2024 instead of port 22. root, ftp, guest So ssh root at ip // should be sent to sshd running at port 22 ssh otheruser at ip // should be sent to sshd running at port 2024 I know that we can do something like this: ssh -o ProxyCommand='ssh -W localhost:2024 cliuser at ip' otheruser@ <s...
2017 Jul 18
2
force port redirection for list of users
...aff.uni-marburg.de> wrote: > > > Am 08.07.2017 um 18:41 schrieb Sudarshan Soma <sudarshan12s at gmail.com>: > > > > Hi , > > I have the following requirement . > > other than following users, any other user sshd connection should be > > redirected to 2024 instead of port 22. > > root, ftp, guest > > > > So > > ssh root at ip // should be sent to sshd running at port 22 > > ssh otheruser at ip // should be sent to sshd running at port 2024 > > > > > > I know that we can do something like this: > &...
2024 Feb 08
2
round.Date and trunc.Date not working / implemented
> On 8 Feb 2024, at 15:15, Martin Maechler <maechler at stat.math.ethz.ch> wrote: > >>>>>> Ji?? Moravec >>>>>> on Wed, 7 Feb 2024 10:23:15 +1300 writes: > >> This is my first time working with dates, so if the answer is "Duh, work >> with POSI...
2024 Mar 22
1
Samba errors everyday at 00:00:00
Hello, I have errors like below every day at midnight. Anyone have an idea? samba4 AD version : 4.18.11 OS : Rocky Linux 8.9 Mar 18 00:00:00 <dc> samba[1253835]: [2024/03/18 00:00:00.114303, 1] ../../source4/dns_server/dns_query.c:1141(dns_server_process_query_got_auth) Mar 18 00:00:00 <dc> samba[1253835]: dns_server_process_query_got_auth: Failed to add SOA record: WERR_DNS_ERROR_RCODE_FORMAT_ERROR Mar 18 00:00:00 <dc> samba[1253835]: [2024/03/18 0...
2024 Mar 22
1
Samba errors everyday at 00:00:00
On Fri, 22 Mar 2024 14:45:31 +0000 Kamal Chikh echioukh via samba <samba at lists.samba.org> wrote: > Hello, > > I have errors like below every day at midnight. Anyone have an idea? > > samba4 AD version : 4.18.11 > OS : Rocky Linux 8.9 > > Mar 18 00:00:00 <dc> samba[1253835]: [...
2024 Feb 15
2
2024 X.Org Board of Directors Elections Nomination period is NOW
We are seeking nominations for candidates for election to the X.Org Foundation Board of Directors. All X.Org Foundation members are eligible for election to the board. Nominations for the 2024 election are now open and will remain open until 23:59 UTC on 26 February 2024. The Board consists of directors elected from the membership. Each year, an election is held to bring the total number of directors to eight. The four members receiving the highest vote totals will serve as directors...
2024 Jan 10
1
Access to sockets denied in Termux
No, I don't have root in my Android. I understand that prevents access to ports below 1024 but I find that Linux clients can mount Termux qemu-started Samba shares nevertheless. I need to prevent smbd crashing for want of low sockets and wonder if win9x can mount without them. On Wed, 10 Jan 2024, 17:07 Rowland Penny via samba, <samba at lists.samba.org> wrote: > On Wed, 10 Jan 2024 16:25:57 +0000 > Mike Yates via samba <samba at lists.samba.org> wrote: > > > Is anyone familiar with using a samba server in Android Termux? > > It works OK for an smbmount in...
2024 Jan 10
1
Access to sockets denied in Termux
On Wed, 10 Jan 2024 16:25:57 +0000 Mike Yates via samba <samba at lists.samba.org> wrote: > Is anyone familiar with using a samba server in Android Termux? > It works OK for an smbmount in a Linux qemu VM, in the instance > started by the > -nic smb=$PATH option of qemu (both qemu-system-x86_64 and...
2024 Feb 07
3
[Bug 3665] New: publickey RSA signature unverified: error in libcrypto to RHEL9 sshd (with LEGACY crypto policy enabled)
...eys file, etc. More details of the connection: Because we run the AIX clients, I'm concentrating on that; However, so far, the Workday client exhibits similar log messages/fails: For successes, we see this in the logs (aix7.2 ssh/sftp/scp to RHEL9): note that it makes rsa-sha2-512 references 2024 Feb 2 13:33:27 RHEL9 [authpriv.debug] sshd: debug2: userauth_pubkey: valid user USERREDACTED querying public key rsa-sha2-512 PUBLICKEYREDACTED [preauth] 2024 Feb 2 13:33:27 RHEL9 [authpriv.debug] sshd: debug1: userauth_pubkey: test pkalg rsa-sha2-512 pkblob RSA SHA256:RSASIGNATUREREDACTED [preau...
2024 Jan 10
1
Access to sockets denied in Termux
Is anyone familiar with using a samba server in Android Termux? It works OK for an smbmount in a Linux qemu VM, in the instance started by the -nic smb=$PATH option of qemu (both qemu-system-x86_64 and samba installed to Termux) but smbd -D fails with this log: [2024/01/06 11:46:54.038658, 0] ../../source3/smbd/server.c:1741(main) smbd version 4.16.11 started. Copyright Andrew Tridgell and the Samba Team 1992-2022 [2024/01/06 11:46:54.064949, 0] ../../source3/smbd/server.c:1097(smbd_open_one_socket) smbd_open_one_socket: open_socket_in failed: Permission denied...
2024 Mar 27
1
Output of tapply function as data frame
Warm greetings to you all. Using the tapply function below: data<-read.table("FD1month",col.names = c("Dates","count")) x=data$count f<-factor(data$Dates) AB<- tapply(x,f,mean) I made a simple calculation. The result, stored in AB, is of the form below. But an effort to write AB to a file as a data frame fails. When I use the write table, it only produces