similar to: how-to configure openssh

Displaying 20 results from an estimated 200 matches similar to: "how-to configure openssh"

2002 Nov 18
1
(no subject)
Good morning, I am david pierrot ingeener for it company. We nned to install a ssh client and ssh server (linux and win 2000) we have have problem , could you tell me please if this thing is possible. we want that users on ssh can only use sftp or scp but we do not want thath they can be use roo command or something elese. with sshd command it is possible to use telnet by port 22, do you think
2003 Aug 19
1
chroot-patch for 3.6.1p1?
Hi all, I am looking for a chroot-patch like it was available for the 3.5p1 version. Does anybody has such a patch? Because chroot doesn't work with 3.6.1p1 under Reliant Unix 5.45 from Fujitsu-Siemens. regards Stephan Dr. Stephan Hendl Systemmanagement ----------------------------------- Landesbetrieb f?r Datenverarbeitung und Statistik Land Brandenburg Adresse: 14467 Potsdam, Dortustr.
2012 Sep 12
2
[LLVMdev] A Question about LLVM-backend
Hello, all. I want to manipulate LLVM-backend to emit other compiler's IR, in this case, VPO's IR. So, what i want to know is.. Is there a project to be referred? (For example, "Do LLVM-backend -> GIMPLE" project exist?) Or, how can I manipulate it easily? Thanks, Cho Yeong-pil -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Dec 02
1
[LLVMdev] Error when using getAnalysis
Sure. I've attached the code for the test pass I wrote, as well as the code and bitcode for the testcase I'm running. All the functionality has been stripped out of the pass, and the pass compiles without a problem, but the error appears when the pass is run. Jeff On Tue, 2 Dec 2008 11:06:44 -0800, Devang Patel <dpatel at apple.com> wrote: > On Dec 2, 2008, at 10:40 AM, Jeff
2010 Jun 06
3
running passenger + nginx
hi guys, Assuming I made some changes to the source code. My production environment runs on passenger and nginx. How do I restart passenger and nginx with minimal downtime? Surely I can''t do a "w" on the terminal because a server will not always be in zero load. Would love to hear some recommendations. PS- I have read on unicorn
2009 Jul 01
5
How best to allow users to change Samba passwords?
I was wondering if anyone could advise me on this. I've got two Samba servers, each using passdb.tdb for authentication. All works well, but I've now been asked to let users change their own passwords (a requirement of data secuity). What's the best way of arranging this, preferably updating both servers at the same time? thanks
2015 Nov 19
2
Re: recovering corrupt file system
well, the next place to go, if fsck isn't enough would be to to try debugfs(1) man debugfs. On Wed, Nov 18, 2015 at 8:39 PM, Boylan, Ross <Ross.Boylan@ucsf.edu> wrote: > I guess some of the trouble was that the virtual disk was mounted > read-only at the VM level. When I mounted read/write I was able to do > fsck, which gave messages about replaying the logs and a couple
2009 Jun 25
2
[Q] What might cause modification dates to shift later by an hour?
Recently, our backup software oddly decided to rebackup a good portion of our file server instead of just doing an incremental. When I examined various sets of presumably identical files, I discovered that the modification dates on these files were no longer the same. Many files were re-dated to exactly one hour later such that if a file had been modified on 3/24/04 at 2:24:53 PM, it's
2009 Feb 07
2
Rebuild folder listing?
I don't know what to call what I'm trying to do so I'll explain the situation. I had a total complete crash of the Linux-Vserver system that was hosting a Postfix+Dovecot guest with a three domains and 1-5 accounts per domain. Lots of mail though. Before it completely melted down I as able to get to the data (messages) and save them and the configuration files for both Dovecot
2008 Dec 02
2
[LLVMdev] Error when using getAnalysis
Hi, I had a question about this as well. The documentation about writing a pass shows an example like what John wrote, calling a function pass within a module pass on a per function basis. However, if I code it that way, I still get the same error: opt: /x/jeffhao/llvm/llvm/include/llvm/PassAnalysisSupport.h:232: AnalysisType& llvm::Pass::getAnalysisID(const llvm::PassInfo*,
2012 Sep 13
0
[LLVMdev] A Question about LLVM-backend
Hi ์กฐ์˜ํ•„, > I want to manipulate LLVM-backend to emit other compiler's IR, in this case, > VPO's IR. > So, what i want to know is.. Is there a project to be referred? (For example, > "Do LLVM-backend -> GIMPLE" project exist?) as far as I know there is no LLVM IR -> gimple pass. LLVM used to have a C backend that turned LLVM IR into C. I think it was removed
2008 Dec 02
0
[LLVMdev] Error when using getAnalysis
On Dec 2, 2008, at 10:40 AM, Jeff Yeong-Peng Hao wrote: > > Hi, > > I had a question about this as well. The documentation about > writing a > pass shows an example like what John wrote, calling a function pass > within > a module pass on a per function basis. However, if I code it that > way, I > still get the same error: > > opt:
2007 Jul 21
2
Please How do I calculate the offset of a file within a ext3 partition
Hi, I need to understand and to calculate the offset of the beginning of a file within my partition which uses an ext3 filesystem. Can I use dumpe2fs to figure that out, if yes how? Sincerely, William Tambe
2006 Sep 24
1
Retaining undelete data on ext3
Having just spent a day trying to recover a deleted ext3 file for a friend, I'm wondering about this way of maintining undelete information in ext3, like is done for ext2: The last step in the deletion process would be to put back the (previously zeroed) block pointers. Since it gets logged to the journal, I _think_ that this should be safe. The worst that would happen is that, if the plug
2010 Nov 10
1
[lattice] densityplot label the peak.
Hi, I've been trying to find a way to label the the peak or mean of a densityplot for a while but haven't been successful. Does anyone know how to accomplish this? Thank you for your help in advance. Joon [[alternative HTML version deleted]]
2010 Jul 14
1
Watermark with Ruby on Rails
To whom it may concern, a way to create watermarks with ruby on rails, imagemagick, attachment_fu and mini-magick in Portuguese, but the code is in English;) http://www.woompa.blog.br/2010/07/14/adicionando-marca-dagua-nas-suas-imagens-com-imagemagick-e-mini-magick/ Tnks! -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post
2008 Oct 16
1
[LLVMdev] llvm profiling
I'd like to get some runtime profile data on my code using LLVM. The various -insert-X-profiling passes seem to add the profiling instrumentation to the code, but how do I actually generate profiling output? It seems like utils/profile.pl can do this, but it uses profile_rt.so which doesn't exist. I can manually compile the runtime directory using make install-bytecode, but it
2018 Sep 07
3
NTLM auth, better on a DC or on a DM?
On Fri, 2018-09-07 at 20:14 +0200, Luca Olivetti via samba wrote: > El 7/9/18 a les 17:59, Marco Gaiarin via samba ha escrit: > > > It is better to install squid/freeradius in the same host of a DC, or > > don't bother at all so they can be installed also on a DM? > > I don't know if it's better but I'm running freeradius with ntlm_auth on > a
2005 Mar 20
2
FWD to Vonage not working?
I am having trouble with this. I can dial 1800 numbers fine as well as FWD service numbers but not Vonage. I can be called from ipkall and fwd and can call aixtel numbers. I use aix2 with Fwd. My extensions.conf for Vonage: ; vonage numbers ; ; +2431 exten => _2431XXXXXXXXXX,1,SetCallerID,${FWDCIDNAME} exten =>
2011 May 16
1
How to mount ext3 root partition with noatime and ro options at boot-time
Hi all, I was trying to mount root-partition which is ext3 partition with noatime and ro option. I included "ro" in the kernel command line But for mounting it with "noatime" option when I searched for some solution I came across a patch http://lkml.org/lkml/2007/8/5/38 But after applying this patch and including option "noatime" in