CDE File Manager - dtfile

Ive installed Solaris8 for x86 on a PIII 450MHZ PC.
Everything seems to run fine except for the file manager.
When the file manager in CDE is used CPU usage goes to 100% the file list doesnt appear and the system is very sluggish. To recover I have to do a ps -e | grep dtfile and kill those processes, usually 2 or 3. The file manager
is useless so far. Are there any patches ( Ive installed the latest patch cluster) that specifically alleviate this problem or is it a configuration issue.

Hi,
Try this patch for this issue.
Patch id : 109166-11
Download this patch from http://access1.sun.com or http://sunsolve.sun.com
Let me know the result.
Thanks,
Senthilkumar
Technical Support Engineer
Developer Technical Support
Sun Microsystems, Inc.
http://www.sun.com/developers/support

Similar Messages

  • Bash CDE file manager problem

    I have the following problem:
    I use the CDE and the bash shell. If I start a bash terminal from the file manager file menu, the environment variables are not set correctly. The entries made in the file /etc/profile are just ignored.
    However, the following works correctly:
    -if I start the bash terminal from the CDE toolbar
    or
    -if I use the bourne shell (both variants file manager and CDE toolbar work)
    It seems that the file manager is not receiving the correct environment information from the CDE.
    Thanks for any help.

    Hi,
    Try this patch for this issue.
    Patch id : 109166-11
    Download this patch from http://access1.sun.com or http://sunsolve.sun.com
    Let me know the result.
    Thanks,
    Senthilkumar
    Technical Support Engineer
    Developer Technical Support
    Sun Microsystems, Inc.
    http://www.sun.com/developers/support

  • CDE File Manager - associated file

    I am not familiar with Solaris.
    Now I have SunOS 5.8, and login into CDE (common desktop environment).
    I run File Manager, then I can see iconic pictures at the left.
    If I double-click a file, it will open the related application.
    The action taken when you open an icon depends on the type of icon.
    For example, opening a data file usually starts the Text Editor, opening a HTML file starts the Netscape.
    It is just like associated file at File Explorer of Windows 2000.
    How does it work? Can I change the associated file?
    Regards,
    Vicky

    Hi,
    Try this patch for this issue.
    Patch id : 109166-11
    Download this patch from http://access1.sun.com or http://sunsolve.sun.com
    Let me know the result.
    Thanks,
    Senthilkumar
    Technical Support Engineer
    Developer Technical Support
    Sun Microsystems, Inc.
    http://www.sun.com/developers/support

  • File Manager - Associatef file

    I am not familiar with Solaris.
    Now I have SunOS 5.8, and login into CDE (common desktop environment).
    I run File Manager, then I can see Iconic picture at the left.
    If I double-click a file, it will open
    The action taken when you open an icon depends on the type of icon. For
    example, Opening a data file usually starts the Text Editor, Opening a HTML file starts the Netscape. It is just like associated file at File Explorer of Windows 2000.
    How does it work? Can I change the associated file?
    Vicky

    File manager wont show you the apps installed. You will find them thru menu>settings>app manager >installed applications. Press and hold the app you want to remove.
    In Love With My C6-01:Now running on Nokia Belle!

  • CDE Window Manager  configuration problem (Sol 8)

    Hi
    I have a strange problem with CDE. After having a proper PC instalation done, as I log in the CDE I get black background and only 2 windows ( a kind of help window and the File Manager) The windows don't have title bars, cannot be moved ot whatever. Now, I seems to me that the window manager failed to start. Since I'm new to Solaris, can anybody give me a hint where I can find the configuration scripts and error logs.
    Thanks
    Val

    if it were me I'd check /var/dt/Xerrors (Xservers log file)
    $HOME/.dt/errorlog & startlogs for clues ... this is where CDE would log
    problems.
    However you mentioned PC so I'll assume you are using ReflectionsX,
    Exceed
    or similar, all come with a log file and trace utility via the Xconfig
    screen
    which maybe worth your while looking into ?
    As to the window manager failing to start .... the process is called
    dtlogin
    and on the Solaris server you should see one parent process + 1 child per
    remote display if things are working correctly.
    Gotcha's : most likely problems are caused by either Fonts - check PC
    Xemulation log files or hostname resolution problems.

  • Using bash as your file manager?

    Hello,
    My belief is that all file managers suck. There are no exceptions to this. So, for the past few months, I've been sourcing a file with a bunch of tricks I've invented / found through browsing the web to make using just bash as a file manager much more convenient.
    Here's what I currently use:
    # fm v1.9.1 by Kiah Morante
    # A very simple file manager.
    # Depends on pycp/pymv, http://github.com/yannicklm/pycp and feh
    # 'source' this file in a BASH shell
    showHidden=0 # Hidden files not shown
    showDetails=0 # ls is replaced with ls -lh if showDetails is 1
    shopt -s autocd # cd to a dir just by typing its name
    PROMPT_COMMAND='[[ ${__new_wd:=$PWD} != $PWD ]] && list; __new_wd=$PWD' # ls after cding
    # Shortcuts
    source ~/.config/fm/shortcuts # Call all custom shortcuts
    alias ..='cd ..'
    alias ...='cd ../..'
    alias ....='cd ../../..'
    alias h='cd ~'
    alias n='cd "$n"'
    # Keybindings
    bind '"\C-l":"list\C-m"'
    bind '"\C-h":"hide\C-m"'
    bind '"\C-o":"details\C-m"'
    bind '"\C-f":"makedir\C-m"'
    bind '"\C-n":"n\C-m"'
    bind '"\C-y":"cpwd\C-m"'
    bind '"\C-p":"cd "$OLDPWD"\C-m"' # Hint: You could also type '~-'
    # FM prompt appearance
    if [[ $(whoami) == 'root' ]]; then
    # So that the user knows if they have root privileges:
    PS1="\[\e[0;32\]mf\[m\e[m\] \[\e[0;31m\]root\[\e[m\] \[\e[0;34m\]\w \[\e[m\]\[\e[0;31m\]> \[\e[m\]"
    else
    PS1="\[\e[0;32\]mf\[m\e[m\] \[\e[0;34m\]\w \[\e[m\]\[\e[0;31m\]> \[\e[m\]"
    fi
    # Functions
    # Usage
    fmhelp () {
    echo "hide - toggle hidden (hidden by default)
    ls - lists contents of dir(s) passed in args.
    lsd - list directories
    cd - changed to directory \$1
    cp \$@ \$2 - copies file from \$1 to \$2
    mv \$@ \$2 - moves file from \$1 to \$2
    rm \$@ - deletes \$@
    sc \$1 \$2 - make a shortcut called \$1 pointing to \$2. If no \$2 is passed, it is evaluated as \$PWD
    cpwd - copy current working directory
    .., ..., .... - cd .. etc.
    o \$1 - opens \$1 with xdg-open
    hm - how many files are in the current directory
    details - show file details (ls -lh)
    fmhelp - this help menu
    n - Intelligent guess of the next dir you wish to cd to. Last $1 in open, list, or makedir; last argument in copy or move; pwd before a cd
    ~- - BASH shortcut for \$OLDPWD
    img - feh frontend with the following usage:
    img -t \$2 - views the dirs/images specified in \$2..\$n as clickable thumbnails
    img -s \$2 \$3 - views the images specified in \$3..\$n as a slideshow with a slide change speed of \$2 seconds
    img \$@ - views the dirs/images specified
    Shortkeys:
    Ctrl-f - mkdir
    Ctrl-h - hide
    Ctrl-l - ls
    Ctrl-n - cd \$n
    Ctrl-o - details
    Ctrl-p - cd \$OLDPWD
    Ctrl-y - cpwd
    Ctrl-u - clear line # urxvt default"
    # Toggle display hidden files
    # If $showHidden is 1, hidden files are shown
    hide () {
    showHidden=$(( 1 - $showHidden ))
    list
    # Toggle display file details
    # If $showDetails is 1, file details are shown
    details () {
    showDetails=$(( 1 - $showDetails ))
    list
    # ls
    listToggle () {
    if [[ $showHidden == 1 && $showDetails == 1 ]]; then
    ls -C --color -A -lh "$dir"
    elif [[ $showHidden == 1 && $showDetails == 0 ]]; then
    ls -C --color -A "$dir"
    elif [[ $showHidden == 0 && $showDetails == 1 ]]; then
    ls -C --color -lh "$dir"
    else
    ls -C --color "$dir"
    fi
    list () {
    clear # Unclutter the screen
    # List pwd if no $1
    if [[ $@ == "" ]]; then
    set '.'
    fi
    # List multiple folders:
    for dir in "$@"
    do
    listToggle
    done
    n="$1" # See 'n' in fmhelp
    # use feh to view thumbnails/images/slideshow
    img () {
    case "$1" in
    -t) nohup feh --thumbnails "${@:2}" --thumb-height 120 --thumb-width 120 -S filename -d --cache-thumbnails -B black > /dev/null 2>&1 & ;;
    -s) nohup feh "${@:3}" -S filename -d -B black --slideshow-delay "$2" > /dev/null 2>&1 & ;;
    *) nohup feh "$@" -S filename -d -B black > /dev/null 2>&1 & ;;
    esac
    list
    # cp
    copy () {
    if [[ $showHidden == 1 ]]; then
    pycp --interactive --all "$@"
    else
    pycp --interactive "$@"
    fi
    list
    n="${@:(-1)}" # n is the last argument (where stuff is moved to)
    # mv
    move () {
    if [[ $showHidden == 1 ]]; then
    pymv --interactive --all "$@"
    else
    pymv --interactive "$@"
    fi
    list
    n="${@:(-1)}"
    makedir () {
    if [[ $1 == "" ]]; then
    read -e n
    set "$n"
    fi
    if mkdir -- "$1"; then
    list # Update pwd to show new dir(s) that have been made.
    n="$1"
    fi
    # rm
    remove () {
    rm -rfI "$@"
    list
    # open files
    o () {
    # To use xdg-open
    #nohup xdg-open "$1" > /dev/null 2>&1 &
    if [ -f "$1" ] ; then
    case "$1" in
    *.tar.bz2) tar xjf "$1" ;;
    *.tar.gz) tar xzf "$1" ;;
    *.bz2) bunzip2 "$1" ;;
    *.rar) rar x "$1" ;;
    *.gz) gunzip "$1" ;;
    *.tar) tar xf "$1" ;;
    *.tbz2) tar xjf "$1" ;;
    *.tgz) tar xzf "$1" ;;
    *.zip) unzip "$1" ;;
    *.Z) uncompress "$1" ;;
    *.7z) 7z x "$1" ;;
    *.pdf) nohup zathura "$1" > /dev/null 2>&1 & ;;
    *.html) nohup luakit "$1" > /dev/null 2>&1 & ;;
    *.blend) nohup blender "$1" > /dev/null 2>&1 & ;;
    *.avi) nohup mplayer "$1" ;;
    *.wmv) nohup mplayer "$1" ;;
    *.rmvb) nohup mplayer "$1" ;;
    *.mp3) nohup urxvtc -si -sw -sh 30 -e mplayer "$1" > /dev/null 2>&1 & ;;
    *.flv) nohup mplayer "$1" ;;
    *.mp4) nohup mplayer "$1" ;;
    *.ogg) nohup urxvt -si -sw -sh 30 -e mplayer "$1" > /dev/null 2>&1 & ;;
    *.wav) nohup audacity "$1" > /dev/null 2>&1 & ;;
    *.jpg) img "$1" ;;
    *.jpeg) img "$1" ;;
    *.JPG) img "$1" ;;
    *.png) img "$1" ;;
    *.gif) nohup gpicview "$1" > /dev/null 2>&1 & ;;
    *) nohup urxvt -si -sw -sh 30 -e vim "$1" > /dev/null 2>&1 & ;;
    esac
    else
    echo "'$1' is not a valid file"
    fi
    n="$1"
    # Add shortcuts
    makeShortcut () {
    if [[ $2 == "" ]]; then
    set $1 .
    fi
    echo ""$1"=\""$2"\"
    alias "$1"='cd \""$2"\"'
    " >> ~/.config/fm/shortcuts
    source ~/.config/fm/shortcuts
    # Copy pwd to clipboard
    cpwd () {
    echo \"$(pwd)\" | xclip
    # List directories
    lsd () {
    ls -F "$@" | grep \/$
    # Command aliases
    alias mv="move"
    alias sc="makeShortcut"
    alias cp="copy"
    alias ls="list"
    alias rm="remove"
    alias mkdir="makedir"
    alias hm="ls -l . | egrep -c '^-'"
    list # ls when fm starts
    Could all of you fellow file manager-haters post your little tricks, whether just a few lines added to ~/.bashrc or fully fledged files that you source like mine?
    Last edited by greenmanwitch (2011-02-07 19:58:40)

    3]) wrote: once you have video files cluttered all throughout your hard drive and folders all over, thats where the 'bash' filemanager system lacks its use in terms of effectiveness.
    Actually, I found this to be one of the best advantages of using bash is that it forces a user to think about file organization and making useful naming schemes for files.
    For example, instead of having 1000+ media files in one directory I subcategorize theme by genre or whatever, and then probably subcategorize them again.
    Then I usually rename the files to something meaningful, like if I have 50 pictures of my kids birthday, just do a for each loop on the directory and rename all the files donovan_birthdayX.jpg where X is an integer incrementation.
    essentially. just don't "have files cluttered all throughout you hard drive and folders all over". and your life will be much happier regardless of how you manage your files.

  • I would like to find a file manager/ image browser like ACDSee 32

    Coming from the Windows environment (it is where I make my living) I have found the Mac environment to be significantly different and pose a considerable learning curve especially when it comes to file management. I like to be able to view and manage files from within the same application but have yet to find something that will allow me the freedom I am used to. Ideally I am looking for something like ACDSee 32 (the last good version) which acts like a typical file manager but has a full sized preview pane as well. This allows you to preview a picture then drag and drop it into a folder of your choosing. The software also allows you to do some minor edits and create folders as well.
    Preview on my MacBook is a still born idea, iPhoto want to take all of my photos and store them in a proprietary environment (not happening) and Xie is a very nice file viewer but does nothing else. Any useful suggestions of a software that will do what I would like it to do would be appreciated.
    Thank you.

    Photoshop.

  • How do I... (1) "play" a ppt; (2) "see" my sub-folder​s and their files in "Docs To Go" or "File Manager"?

    This is written for the Playbook blog writer in the hope that he will see it here and post a blog answer. However, a reply from anyone would be appreciated. Thanks.
    [2 questions about PPBB OS 2.0+]
    Hi. Thanks for your very informative blog. I would appreciate it if you would consider writing blog tips to answer the following:
    1) Why can't I organize my files in "Documents" or "File Manager" to "see" them in their sub-folders?
    BBPB allows me to create SUB folders in the Documents folder, through my pc's access to the "Documents" folder in the Playbook. However, then I cannot "see" these created sub-folders on my BBPB after I disconnect my BBPB from my PC.
    All the files I downloaded into these "sub" folders end up all together in the file list in "DOCS TO GO", either in "Documents" or "Music" or "Video" or "Pictures" ---- but these files are NOT separated into the sub-folders I created. The same thing happens in "FILE MANAGER" i.e. all files on the Playbook are in ONE place only.
    Is the Playbook OS ever going to allow one to view sub-folders and what is in them, other than using the pc to do it? For example, it would be desirable to put all my ppt files into one folder.
    2) How do I "play" a PPT file in the BBPB?
    The BBPB "User Guide" says that I can "view, edit, or play" Powerpoint Presentations. However, although it describes how to "view" or "edit" individual slides, it does not say how to "play" ("run") a slideshow. How do you "play" a self-running slideshow?
    For example, in Windows, you can click "play.bat" (in a saved "presentation cd" folder on a cd or USB stick) to run the ppt with sound and pictures saved in that folder (you don't need the Powerpoint program itself for this, since you are using the "pptview.exe" file in the same folder to "play" it). However, after downloading all the files in this "presentation cd" folder to the Playbook, I could only see one of them, the ppt file itself ---- and there is no icon in the Playbook to "play" the slideshow, it seems. Help?!
     Thank you.
    Solved!
    Go to Solution.

    First, I use an app called "File Browser" to view those subfolders.
    As for running a powerpoint, I can open a ppt file and it runs in Documents to go. Next to the "Close" button there are three icons. The third one runs the ppt file as a slideshow.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Some videos are semi-missing - they do not show up in File Manager apps or another app

    I have what I will call three FILER apps: File Browser, Air Browser and File Commander.  I also have MovieSRTPlayer.  Those apps appear to not register the presence of some video files that I have definitely copied to my PB.  The MovieSRTPlayer will overlay a .srt file's text over a video allowing the pb to show subtitles.  It works as long as it can find the video and srt files.
    I am definitely transferring a series of video files to the pb's video folder.  I am also transferring a companion file to that folder.  The companion file is a subtitle file in the form of an .SRT file.
    THREE file manager type apps do NOT show those files as present in the video folder.  The Video app itself does show and play those video files. 
    I have copied the files using both wifi-sharing and when they did not show up that way, I copied them using the usb cable to the pb's Z: drive and the video folder.
    As stated the dam! files play in the video app.  But they do not appear in the various filer apps.  And they also do not show in another app, one that will display the subtitle (.srt file) file overlaying the video.  In all instances it is as if the pb does not register the presence of those files on the pb.
    Now, what is interesting is that when this first cropped up, 7 files were missing - just a mix of video (no .srt files involved).  That is they showed in the video app and played but the filer programs did not show them.  I managed last night and this morning to get 7 of those to finally show by copying/moving/deleting and recopying.  But now I'm running into this brick wall again.  I have repeatedly copied two video (avi files) and their companion .srt files to the video folder.  They are in that folder (I've looked using usb and wifi-sharing) and they play in the PB's video app.  They are most certainly on my pb.
    Oh, and yes, I've rebooted a number of times. 
    Ideas?

    I have what I call 3 file manager apps.  File Browser, Air Browser and File Commander (the older free version). 
    They all show or don't show the same thing.  So files are missing.  And SIZE is not the sole determining factor.  When I was testing MovieSRT and "lost" some files I copied and renamed avi and .srt files.  So there are two extra .srt files in the Video folder.  But while they are 32kb (kilobytes) and 58kb respectively, they do NOT show up in the File managers.  The other two identical files with the names matching the .avi files do show up.  The one very large mp4 (2gb) does not show up.  A subfolder I created just as a test does not show up.  But the large mp4 and subfolder were showing up while I was actively copying the 2gb file - they would show up as the file was being copied - the filemanagers showed the file getting larger and larger and while doing so the "missing" subfolder also kept showing up.  Then once the large file was completely copied, both it and the subfolder "disappeared" - again, the large mp4 does show in the Video app and it plays.
    My persistence probably is based on the fact I was a computer programmer many eons ago!  Also, I was trying to get YOUR app to work and the avi files were not showing up in your listing but they were showing and playing in Video app (but no subtitles).  Finally, after copying/moving/re-copying over and over including moving and copying to the PB's Print folder (just since it was empty) and copying it back to the video folder (now 2 copies), the files would finally show up.  Peculiar - yup!
    Oh, one other thing - the 3 file managers all show what I will call the virtual Playbook-Demo video in their listings - your app does NOT show it.  Obviously, it is not located in the Video Folder but somewhere in the bowels of the PB.  So, the filemanagers  are relying on some "file structure" that is not fully correct.  But your app does not appear to show it.

  • File Management in C5-03

    Recently i was buying Nokia C5-03 because it has both 3g & Wifi as well as the price is
    affordable. i am happy with this phone except some issues regards to file management. unlike the basic Nokia OS, here i couldn't find a way to manage my files easily. as an example, if i want to move some files from Image Gallery to a New Folder by Marking what i want to move, there is no option maybe still i could not. as well as does anybody know, if there's 3rd party file management software to download i beleive it will assist me on this concern.
    Solved!
    Go to Solution.

    Sorry but i don't have idea wher to post my problem. I have C503 and problem with the camera( always when i record video and sometimes with pictures) . During recording a video everithing is ok but when i want to watch( on telephone and on pc) recording is very bad ( slow, no sound, i see pixels and video is not clear) .When i use camera to shot pictures sometimes telephone just don't want to store my images ( no to card and no to tel memory ) .
    Camera setings is on very high, 5 mega pixel for images and TV quality for video recording.
    Sorry if my english is not so good, best regards!
    PS: My C503 is purchased in april 2011 from authorised distributor and in may was already bean in service beacuse changing the display and softver problem.

  • How delete unwanted system sync in file manager?

    Hello!  As a result of testing Z10 10.1.0.2014, Blackberry Link wifi sync of files with my Windows PC, I have extra repositories listed in File Manager on the Z10.  The list shows "Device", "Media Card", "Box", and also "LT2", "LT2-1 (offline)" and "LT2-2".  The string LT2 represents the PC's hostname. 
    I would like to delete the "LT2" and "LT2-1" entries from File Manager's list, as the Link feature does not work for them (early tests).  Also I would then like to rename "LT2-2" (which does work) to just "LT2".
    How can I do that?  If not presently possible, please consider this a feature request.
    I think this is a File Manager feature request, not a Blackberry Link request.
    Thanks,
    krobe8
    Ken Roberts
    [email protected]

    Hello? Re-poster ?
    /sapdb/SID/saplog and /sapdb/SID/m_saplog are 98% used
    You're filesystem usage isn't growing!
    Anhow - Abuse button pressed...

  • Web File manager not working

    The web file manager in NSS322 does not work correctly.  The admin button doesnt work.  I get some limited use when I click compatibility view but not ideal

    Kriss,
    Please call into SBSC @ 1-8866-606-1866 and speak with next available engineer on this issue.
    Thanks
    Jasbryan

  • Changing the default file manager in XFCE

    How would I go about using Nautilus as the default file manager in XFCE instead of Thunar? I know it can be started up with 'nautilus --no-desktop', but how do I make this the default when opening folders from the desktop, menus, etc..?
    The main reason I want to do this is because Thunar doesn't seem to remember a folders last setting. For example, there are folders which I would like to permanently view as a list, sorted by date; but there are plenty of other folders where this is not suitable. Nautilus remembers settings for each folder, Thunar doesn't, and it gets annoying changing the view mode each time. Also network browsing is easier in Nautilus, and I also like the way it tells you how fast file transfers are going.
    Thanks very much,

    Well, it might be considered a dirty hack but it has worked for me in gnome before so it should also work in xfce.  Just edit the thunar.desktop file in /usr/share/applications and replace the Exec=thunar to Exec=nautilus --no-desktop and save the file.  Then any time thunar is launched, nautilus will be launched instead.
    Otherwise, you can edit the menu with the menu editor and change the File manager command and do the same in the panel icon properties.  Both methods will work.

  • I forgot my hidden file manager password,How can i get back my files

    I forgot Hidden file manager password,how can i get back my my data

    If you are able to Get Info on the folder of interest go the the very bottom section Sharing and Permissions.
    You can gain access to this area by clicking on the lock in the lower right corner of the Get Info window.
    Once you have input the admin password for the computer you should be able to edit the permissions on that file/directory. 

  • Can't see email messages in file manager

    I've been testing email on my new phone (6682) and now I'd like to delete all the messages in my inbox. nothing shows up in the messages folder in file manager on my PC even though I have about 30 emails on the phone. I can view all other data (images, contacts, etc.)
    Additionally, I can't seem to delete the emails directly from my phone. It keeps saying it will keep the headers in memory....and I don't want to keep them. There must be a way. Nokia phone support (believe it or not)could not help me after 45 minutes on the phone. Their solution was to completely reset the phone *#7370#. Please advise if you can.
    -Phone Nokia 6682
    -PC Suite 6.8
    -Windows XP
    Thanks

    In all serie-60 phones when you choose to delete the e-mail (and select "Phone") it will delete the content of the e-mail and keep the header of the e-mail until you connect to the e-mail server again. After that it will be erased from the phone.
    It is not a phone "feature", it is how e-mails usually works when the are downloaded from a server. The mail is not deleted until you connect to the server next time, because the server need to know if it is going to keep a copy of the mail or not. It is working the same way with an exchange server except that it is going so fast so you can´t "see it"....
    The views I present are my OWN and not of any organisation I may belong too.

Maybe you are looking for

  • AppleScript To Save Messages As PDFs With Specific Naming Convention

    I am looking for an Applescript that: 1: Prompts and allows the user to select one or more Apple Mail email messages from within Mail (10.4, 10.5, 10.6). 2: Prompts and allows the user to select a save-to folder. 3: For each message, saves it as a PD

  • Updating the Payment reference - KIDNO field using INVOICE_UPDATE

    Hello All, I need to update the field KIDNO (present in the invoice header structure ) from transaction MRRL and MRDC transactions. How do you use the Badi INVOICE_UPDATE to update the field KIDNO? Regards, Sri.

  • HELP..Using BufferedInputStream

    Hi I am trying to send a video file (.mpg) from a tcp server written in C to a tcp client written in Java. The server seems to be sending the bytes accurately. But on the JAva client end, the bytes are recived but each time the numbers of bytes reciv

  • Live video sharing

    I have just read that the N70 can stream live one way video images. does anyone know if there is a limit to the call length ? if not is it billed as a video call or as data ? Is there anyway of also simultaneously recording the video. straight to a l

  • I bought a new iMac and wonder if I can transfer all contents from the new iMac w/ Lion...to an old Intell MacBook 10.5.8

    my Mac Book has 80 G hard drive and right now I only use 30 G on the new iMac.    Would love to put the clean installs and Lion on the Mac Book. Is that possible?  Can I use the WiFi or ethernet or firewire to do this if it is possible? Ruth