similar to: What free memory range is safe to operate?

Displaying 20 results from an estimated 5000 matches similar to: "What free memory range is safe to operate?"

2020 Jun 24
0
SAMBA using existing users and passwords on Linux
Hello people. I have a new problem with my system. I am required to list the valid users both in the smb.conf file and in the computer management of the linux server. How do I have only one configuration point where I can include the users that I want to have access to SAMBA shares?
2020 Jun 22
2
SAMBA using existing users and passwords on Linux
Oops, wrong language ;D Okay Rowland. Thank you very much for this help. To the next. <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Livre de v?rus. www.avast.com <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>.
2020 Jun 19
0
SAMBA using existing users and passwords on Linux
Hello Rowland. Thanks for answering. The linux server is already in the AD domain and resolving Ad users as normal. To map the linux server share using AD users I use the following command: net use \\linuxserver\share /U:AD_user and it works perfectly. But I would like to use the same command for users who are in /etc/passwd, like this: net use \\linuxserver\share /U:linuxserver_user and so
2017 Oct 29
1
Count non-zero values in excluding NA Values
Dear R Staff This is my file (www.fiscalforecasting.com/data.csv) if you don't download this file, my dataset same as following Year Month A B C D E 2005 July 0 *4* NA NA *1* 2005 July 0 NA NA 0 *9* 2005 July NA *4* 0 *1* 0 2005 July *4* 0 *2* *9* NA I try to count non-zero values which are not NA values for every *column* *Sincerely* *Engin YILMAZ*
2020 Oct 29
2
Good Evening,
I contacted Martin Maechler (maechler at stat.math.ethz.ch) and was advised to contact you for input on the question below...thanks! I am very new with the R experience, all I know is that it's computer language & coding... I'm trying to plot a regression graph for runif (100, 1000, 10000). What am I not getting here, I can get the values in R no problem, but no idea how to turn it
2017 Nov 08
0
mariadb server memory usage
> This free memory can go away in less than a second It's depends of many things. But you need to pay attention on this variables https://mariadb.com/kb/en/library/mariadb-memory-allocation/ In my db servers i use nagios to monitor when "free" and "available" ram is less than 80% warning state and less than 5% critical. > so I figured why not use as much as
2017 Nov 06
2
How to detect botnet user on the server ?
Hello guys, Whats is the best way to identify a possible user using a botnet with php in the server? And if he is using GET commands for example in other server. Does apache logs outbound conections ? If it is using a file that is not malicious the clam av would not identify. Thanks
2017 Nov 06
0
mariadb server memory usage
Disk cache is not recommended for databases servers. it'll slow down the performance. More ram equals more performance. This link help me understand memory usage on linux. https://www.linuxatemyram.com/ Basically you need yo worry about free memory is close to 0 used memory is close to total available memory (or "free + buffers/cache") has enough room (let's say, 20%+ of
2020 Jun 22
0
SAMBA using existing users and passwords on Linux
Ok Rowland. Muito obrigado por mais essa ajuda. At? a pr?xima. <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Livre de v?rus. www.avast.com <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>. <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> Em
2019 Feb 14
1
Trying to compile icecast in Toradex apalis imx6
Hi! I'm using a Toradex apalis imx6 board to make a project for my bussiness and I need Icecast running on it, but I can't compile it in the board. It shows an error in "xslt" while compiling- I'm using Yocto. Do yow have any idea how can I compile Icecast source code in my Toradex apalis board without using this xslt? Thanks in advance!
2018 Feb 12
2
Samba 4.6.7 AD, Netapp CDOT 9.2 and missing "Domain Users" membership
Have you solved? I have the sambe issue with NEtapp CDOT 9.1 P11, latest versions, tried with AD and works It seems that domain users are not showed correctly when tey are set as priamry bug, it seems a samba bug Can you help? Thanks<div id="DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br /> <table style="border-top: 1px solid #D3D4DE;"> <tr> <td
2020 Jun 22
0
SAMBA using existing users and passwords on Linux
Good morning Rowland. As you may have noticed, I am no expert in deploying SAMBA in an AD domain. Could you give me a link with a tutorial that explains in a simple way the procedure for this? Just to not leave without a return I executed the following commands: # getent group TJSC\users # Nothing came back. # getent group TJSC users users: x: 100: This group "users" is local to the
2018 Jan 20
1
No Targets in TargetRegistry
This is from https://stackoverflow.com/questions/48360685/no-targets-in-targetregistry I have the following code, which should get the default llvm::Target. auto const targetTriple = llvm::sys::getDefaultTargetTriple(); llvm_module.setTargetTriple(targetTriple); std::string error; auto const * target = llvm::TargetRegistry::lookupTarget(targetTriple, error); if (target ==
2020 Jun 03
0
SAMBA using existing users and passwords on Linux
So that it doesn't end without a conclusion I will inform you what has been accomplished. As our time was short to complete the migration I decided to install the same version of SAMBA that was already running on the old machine (3.6.6). After the migration is complete, I will have more time to update the SAMBA and insert it into our AD domain, thus changing the entire login and mapping
2018 Feb 12
0
domain users issue
Hi Rowland, Not really sure if that is correct, tried with native AD and domain users are showed also if they have domain users as primary group, IT seems a samba bug liek It was described here https://lists.samba.org/archive/samba/2017-October/211699.html Any suggestion about how to solve, other groups are working OK, but seems that with netapp cdot domain users are not usable, and this is a
2018 Feb 20
0
Take the maximum of every 12 columns
Thank you for your kind replies. Maybe I was not clear with my question (I apologize) or I did not understand... I would like to take the max for X0...X11 and X12...X24 in my dataset. When I use pmax with the function byapply as in byapply(df, 12, pmax) I get back a list which I cannot convert to a dataframe. Am I missing something? Thanks again! Sincerely, Milu
2020 Oct 12
3
CentOS 8.2 / missing libc++ (libcxx-devel)
Hi community, In CentOS 7 there is such rpm (libcxx-devel - it seems from EPEL repository), but in CentOS 8 it isn't. How is it possible to have it there as RPM? because alternative to build it (libc++) from sources is a big headache (I need it in order to build v9 and plv8 projects) Thanks
2018 Feb 12
0
domain users issue
Is not a permission issue, because if you replace primary group then works, It seems a bug related with priamry group and domain users, then not listed and permission not applied because is not working, tried with native AD windows 2008 and then error not reproduced net group /domain "Domain users" lists correctly users also if they have doamin users as primary groups Thanks 2018-02-12
2020 Mar 29
2
Upgrade to CentOS8
Hi folks I have a couple of Zotac mini PCs running CentOS7 which I want/need to upgrade to CentOS8 In theory, they are CentOS8 capable, but assuming Murphy might be lurking around, I prefer validating the hardware before starting the effective installation As there is no LiveCD, what would be the recommended way to do this? Thanks!
2020 Aug 31
0
Changing IP Scope on a Samba DC
I just ran samba_dnsupdate --all-names and got this: itadmin at genesis:~$ sudo samba_dnsupdate --all-names add_interface: not adding duplicate interface 192.168.1.11 ldb_wrap open of secrets.ldb GENSEC backend 'gssapi_spnego' registered GENSEC backend 'gssapi_krb5' registered GENSEC backend 'gssapi_krb5_sasl' registered GENSEC backend 'spnego' registered GENSEC