similar to: Need Help on start samba

Displaying 20 results from an estimated 210 matches similar to: "Need Help on start samba"

2009 Jul 22
3
Need help on start samba
Hello all! I have met inform as following. I see that no smb on init.d folder. [root at maychu1 home]# /etc/rc.d/init.d/smb start bash: /etc/rc.d/init.d/smb: No such file or directory Pls help me how to have smb on init.d folder? Thank you. Thank you & Best Regards, ------------------ Tran Van Hung IT Department REX HOTEL 141 Nguyen Hue Blvd, Ho Chi Minh City, Vietnam
2009 Jul 23
1
[LLVMdev] Profiling in LLVM Patch Followup 1
Sorry, forgot attachment. On 23.07.09 07:40), Andreas Neustifter wrote: > Good Morning. > > On 22.07.09 14:47), Andreas Neustifter wrote: >> Daniel Dunbar wrote: >>> I merged in my changes to your patch, which results in the attached >>> patch. There may be some missed merge errors. The main problem I have >>> with the rest of this patch is that it
2009 Jul 23
0
[LLVMdev] Profiling in LLVM Patch Followup 1
Good Morning. On 22.07.09 14:47), Andreas Neustifter wrote: > Daniel Dunbar wrote: >> I merged in my changes to your patch, which results in the attached >> patch. There may be some missed merge errors. The main problem I have >> with the rest of this patch is that it causes a regression in >> llvm-prof's behavior. I tried running edge profiling on the >>
2009 Jul 22
4
[LLVMdev] Profiling in LLVM Patch Followup 1
Hi Daniel! Daniel Dunbar wrote: > I merged in my changes to your patch, which results in the attached > patch. There may be some missed merge errors. The main problem I have > with the rest of this patch is that it causes a regression in > llvm-prof's behavior. I tried running edge profiling on the > MultiSource/Applications/aha benchmark in the llvm test-suite, and >
2009 Jul 21
5
File Size Limit - Why/How?
Hello Samba Lists: I am trying to read a 22TB file from a system running OpenSuSE 10.3/x64 (Using whatever version of Samba came out with 10.3/x64). The file is on a 30TB XFS volume. I'm connecting over 10GBit Ethernet from a Windows Server 2003/X64 client. If I try to read the 22TB file, I get the message "Access Denied", but if I try to read 100GB files from the same volume, they
2009 Jul 22
11
Request for feedback
A number of years back it became necessary to limit the size of messages that could be posted to the samba mailing list. The current limit is 64 KBytes. While it continues be be desirable to block large spam messages, I believe it is time to ask current subscribers for their preferences. This list is here to serve the wishes and needs of our subscribers. We wonder if the time is right to review
2013 Nov 08
2
Export CSV
Hi friends, i am using csv export on my application. in my view file code is <%- headers = ["Transaction ID", "Activity ID", "Product Name","Customer Name", "Ticket code"] -%> <%= CSV.generate_line(headers).strip %> <%if !@trans.nil? && @trans.length > 0 %> <% @trans.each do |tran|%> <% if
2006 Nov 07
1
reading VERY large binary files
Hello, I am trying to read in elements out of a very large binary file ... the total file is 4 gigs. I want to select rows out of the file, and the current procedure I run works but is prohibitively slow (takes more than a day to run and still won't complete). Is there any faster way to accomplish this? My current procedure looks like this: readHH <- function(file_name,
2003 Feb 19
6
Help with Winbind
I've been trying for weeks to get winbind working with RedHat Linux 8.0. I've got everything setup per the winbind docs on http://www.samba.org/samba/docs/Samba-HOWTO-Collection.html#WINBIND. I've successfully joined my NT4 domain with smbpasswd -j DOMAIN -r PDC -U Administrator. Running wbinfo -u returns my domain user list, as well as wbinfo -g returning my domain groups. getent
2009 Mar 09
1
Zero distance error in corSpatial - correlation structure using lme
Hello, I am having a problem specifying the correlation structure in lme which leads to the error: Error in getCovariate.corSpatial(object, data = data) : Cannot have zero distances in "corSpatial". I have specified a grouping variable which is the only fix I could find by searching this error on R-help. ISee the below example. When my samples (tran) - which are transects
2008 May 12
5
Format integer
Hi, What's one way to convert an integer to a string with preceding 0's? such that '13' becomes '00000000013' to be put into a string I've tried formatC, but they removes all the zeros and replace it with blanks Thanks -- Regards, Anh Tran [[alternative HTML version deleted]]
2010 Dec 20
2
package "arules" - 'transpose' of the transactions
Suppose this is my list of transactions: set.seed(200) tran=random.transactions(100,3) inspect(tran) items transactionID 1 {item80} trans1 2 {item8, item20} trans2 3 {item28} trans3 I want to get the 'transpose' of the data, i.e. transactionID items 1 {trans2} item8 2 {trans2} item20 3 {trans3} item28 4 {trans1} item80 I
2008 Jun 24
4
Find max of a row in data frame (like Excel)
Hi, Here's the data we have: > rs[1:5,] probe_id f1 f2 f3 f4 M A f 1 A_68_P20002076 2 58 0 0 1.51778114 6.344453 59 2 A_68_P20002775 22 8 15 0 0.43419304 5.488819 59 3 A_68_P20005791 43 3 0 0 0.05698666 9.830594 59 4 A_68_P20005805 11 34 0 0 1.71076835 6.624038 59 5 A_68_P20006729 16 44 0 0 0.85498261 6.044229 59 I want rs$f be the max of f1, f2, f3,
2007 Jul 11
1
aov() question
Hi all, So I think I have seen some similar questions to mine when I searched the archives, but have not seen any concrete answers and was wondering if any one could help. I have been trying to use R's aov() function to analyze my data. I have a 3 x 4 x 2 repeated measures design. All of the IVs are within subjects. I do also have missing values (unequal N), as I have to remove
2008 May 06
2
Concatenate a vector into a string, only using distinct component
I'm trying to use combine c('a','b','c','a','c') into 'a, b, c', the order does not matter. paste(c('a','b','c','a','c'), collapse=', ') yields 'a, b, c, a, c'. Any idea? -- Regards, Anh Tran [[alternative HTML version deleted]]
2008 May 06
2
Print table data on to a plot
Hi, Is there away to print a short table out along side with a plot? I'm thinking about doing a par(mfrow = c(1,2)) Then, the plot is on one side, summary result on the other. Is there any quick way to print out a data.frame in table format? Thanks -- Regards, Anh Tran [[alternative HTML version deleted]]
2008 Jun 19
2
Draw curve for histogram
Hi all, What parameter should I feed to the hist function to draw a line, not bar graph for a histogram? Smoothed line would be great too. I've looked at curve() for normal distribution but it's not what I need. I need some curve on top of the histogram (fit to the actual data). Just as a way to illustrate, rather than bargraph. Thanks -- Regards, Anh Tran UCLA NeuroOncology Lab
2011 Oct 28
3
program never enters browser mode when I add browser()
Dear All I have a program that breaks at the following lines of code: bigfunction = { ... object1 = myfunction(x) object2 = strsplit(object1, ",")[[1]] ... } where myfunction is defined elsewhere outside of bigfunction. The error I get is "error in strsplit() -- object1 not found". However, when I insert browser() into my code so that the above reads, bigfunction = {
2004 Dec 09
2
printing problem:Error = No space left on device
Hi, I'm trying to fix the printing problem in Samba 3.0.2a on Solaris 9: When I printed a file via Samba, I got the message smb: \> print /etc/hosts NT_STATUS_DISK_FULL opening remote file hosts-20027 I have checked all the file systems and all are OK. Below is the log file: [2004/12/09 11:44:18, 4] printing/nt_printing.c:print_access_check(4946) access check was SUCCESS
2003 May 16
4
Winxp netlogon script
Hi all, I am having problems running a logon script from a Winxp pro client. It appears that the logon script is not being run at all. Win98 runs the script fine, but none of the Winxp pro clients are currently running it. I am running RedHat 7.1 with Samba version 2.2.7-security-rollup-fix. My smb.conf is as follows: [global] netbios name = LOKKI server string = Lokki PDC